/* global Variable*/
:root {
    --font-Titel: 'Open Sans', sans-serif;
    --font-text: 'PT Serif', serif;
    --border-radius-button: 40px;
    --blau-color: #4874E7;
    --regular-Text: 300;
    --extrabold-Text: 700;
}

/* Start Global Rules*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
html{
    /*scroll-behavior: smooth;*/
    transition: 0.5s;
}
body {
    font-family: var(--font-text);
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    
}


p {
    font-size: 16px;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--extrabold-Text);
}

/* End Global Rules*/



@media  (min-width:1200px) {
    .container {
        width: 1170px;
    }
}


@media (min-width:992px) {
    .container {
        width: 970px;
    }

}

@media (min-width:768px) {
    .container {
        width: 750px;
        
    }

}
@media (min-width:280px){
    .container{
        width:260px ;
    }
}


.container {
    /* container with centered content */
    margin-left: auto;
    margin-right: auto;
    /*padding to left and right for content spacing*/
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    
    

    
}

/* --------------End global Rules-----------------*/

/* --------------Start header---------------------*/

.Header {
    background-color: #423F3F;
    height: 30px;
    display: flex;
    





}

.Header .container {
    display: flex;
    justify-content: space-between;
    /* Align items to center */
    align-items: center;


}

.AdreAndoffnun {
    display: flex;
    align-content: center;
    align-items: center;

}

.AdreAndoffnun p {
    color: white;
    padding-right: 1.75em;
    font-family: var(--font-text);
    font-size: small;
    /* margin-left: -25px ;*/
}

.AdreAndoffnun p img {

    max-height: 20px;

}



.SozialeMedien  {
    display: flex;
    align-items: center;

}

.SozialeMedien a  {
    display: flex;
    align-items: center;

}

.SozialeMedien  img {
    max-height: 20px;
    padding-left: 20px;
    cursor: pointer;
    text-align: center;

}


/*------------ Start Header responsive---------------------*/
@media (max-width:768px) {
    .AdreAndoffnun p {
        font-size: 8px;

    }

    .AdreAndoffnun p img {
        margin-right: -10px;


    }

    .SozialeMedien img {
        height: 15px;
    
    }

    .AdreAndoffnun p img {

        max-height: 15px;

    }

}




/*---------------End Header responsive---------------*/

/*---------------End Header--------------------------*/


/*----------------Start Navbar------------------------*/
.navbar {
    height: 5rem;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}
.container .logo {
    width: 20%;
    height: 70%;
    cursor: pointer;
    margin-right: auto;
}


.container .nav-menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}



.nav-item{
    list-style-type: none;
    padding-right: 30px;

}

.nav-menu {
    color: black;
    
}


.nav-link {
    text-decoration: none;
    color: black;
   /* transition: 0.6s ease ;*/
}


/*.navLinks a:hover{
    color:#4874E7;
}
*/


.Kontakt button {
    margin-left: 30px;
    padding: 10px 30px;
    border: none;
    border-radius: var(--border-radius-button);
    color: white;
    background: hsla(223, 77%, 59%, 1);

    /*  gradient generator from https://coolors.co  Datum:05.01.24 */

    background: linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#4874E7", endColorstr="#5D84EA", GradientType=1);
    cursor: pointer;
}

.nav-menu .Line{
  
   opacity: 0.05;

}
.nav-menu .Line-bottom{
    opacity: 0.05;

}

.hamburger{
    display: none;
    cursor: pointer;
    z-index: 2;

}
.hamburger .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out ;
    transition: all 0.3s ease-in-out;
    background-color: var(--blau-color);
    


}

/*---------------------Start Responsive--------------------*/

@media (max-width:768px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    
    }


    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
        

    }


    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    
        
    }
    .nav-menu{
        margin-top: 0;
        position: fixed;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color:  #423F3F;
        text-align: center;
        transition:  0.3s;
        z-index: 2;
       
        left:-100%;
        top: 0;
        gap: 0;
    }


    .nav-item{
        margin: 16px 0;
    }

    .Kontakt button  {
        margin-top: 40px;
        margin-left: -20px;

    
    }


    .nav-link{
        color: #ffffff;
        font-size: 20px;
    
    }
    

    .nav-menu.active{
        left: 0;
    }


    .nav-menu .Line{
        background-color: rgba(255, 255, 255, 0.528);
        width: 130%;
        height: 0.5px;
        margin-top: 20px;
        margin-bottom: 20px;
      
      

    
    }




    .nav-menu .Line-bottom{
        background-color: rgba(255, 255, 255, 0.528);
        width: 130%;
        height: 0.5px;
        margin-top: 50px;
        display: block;
       
        
    
    }

    .container .logo {
        width: 35%;
        height: 40%;
        cursor: pointer;
        margin-right: auto;
    }

}



/*---------------------End Responsive------------------*/
/*---------------------End Navbar----------------------*/



/*----------------Start Section Home------------------------*/

.SectionHome {

    max-width: 100%;
    height: calc(100vh - 110px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    margin-bottom: 40px;
    background-image: url(../Fotos/Coachin.jpg);
    
}




.JederSchritt {
    padding-top: 95px;
}

.JederSchritt p {
    font-size: 49px;
    font-weight: 700;
    margin: 0;
    color: white;
    font-family: var(--font-Titel);
    letter-spacing: 4px;
}


.Anfang {
    color: var(--blau-color);
}

.Gemeinsam p {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 0.5;
    opacity: 0.8;
    
    
    
}

.Gemeinsam {
    padding-top: 40px;
 
}


.KontaktZuUns button {

    margin-top: 40px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-button);
    color: white;
    background: hsla(223, 77%, 59%, 1);

    /*  gradient generator from https://coolors.co  Datum:05.01.24 */

    background: linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#4874E7", endColorstr="#5D84EA", GradientType=1);
    cursor: pointer;
}

.RufNummer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.RufNummer a {
    color: white;
    text-decoration: none;
}

.RufNummer img {
    max-height: 40px;
    padding-right: 10px;
}

/* -----------------Responsive Section Home--------------*/


@media (max-width:992px) {

    .JederSchritt p {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
        color: white;
        font-family: var(--font-Titel);
        letter-spacing: 4px;
        line-height: 1.5;
    }

    .JederSchritt {
        padding-top: 100px;
    }

    .Gemeinsam {
        padding-top: 30px;
    }



    .SectionHome {
      width: 100%;
        height: calc(100vh - 110px);
        background-image: url(../Fotos/Coachin-for-responsive.jpg);
    }
}
@media screen and (min-width:1024px) and (max-width:1920px){
    .SectionHome {
        max-width: 100%;
        height: calc(100vh - 110px);
        
    }



    .JederSchritt {
        padding-top: 100px;
       
        max-width: 100%;
    }
    
    .JederSchritt p {
        font-size: 59px;
        font-weight: 700;
        margin: 0;
        color: white;
        font-family: var(--font-Titel);
        letter-spacing: 4px;
    }

    .Gemeinsam p {
        color: white;
        font-weight: 400;
        font-size: 16px;
        line-height: 0.5;
        opacity: 0.8;
       
    }
    .KontaktZuUns {
        
    }
    .RufNummer{
        
    }





}


/* -----------------End Responsive Section Home-------------*/

/*---------------------End Section Home----------------------*/




/*-----------------Start Section Ihr Coach------------------*/


.IhrCoach {
    background-color: rgba(79, 80, 82, 0.025);
    max-height: 90%;
    padding-top: 10px;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 30px;


}
.IhrCoach .container{
    margin-left: auto;
    margin-right: auto;
    
}


.Titel  p {
    position: relative;
    padding-bottom: 60px;
    
    
}

.Titel .ligne {
    position: absolute;
    background-color: var(--blau-color);
    height: 3px;
    width: 4%;
    display: block;
    margin-top: 6px;
}


.CoachImage img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    margin-left: 20px;
}







.IhrCoach .container .Columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 100px;
    justify-content: center;
    align-items: center;
}


.Checkliste p {
    display: flex;
    align-items: center;
    font-weight: var(--extrabold-Text);
    margin-bottom: -5px;

}

.Checkliste img {
    margin-right: 20px;
}


.Checkliste img {
    max-width: 20px;
}

.Checkliste {
    margin-top: 30px;
    margin-bottom: 30px;
}


.Vorstellung {
    margin-top: 30px;

}
.Vorstellung .Songul {
    font-weight: var(--extrabold-Text);
    font-size: 25px;
    margin-bottom: 30px;
    font-family: var(--font-Titel);
}

.Vorstellung .Text1 {
    line-height: 2;

}

.Vorstellung .Text2 {
    line-height: 2;
    width: 96%;
}

.Vorstellung .Text3 {
    line-height: 2;
}

/*---------------responsive Ihr Coach section---------------*/


@media (max-width:992px) {


    .IhrCoach {
        background-color: rgba(79, 80, 82, 0.025);
    }

    .IhrCoach .container .Columns {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    
    .CoachImage img {

        border-radius: 20px;
        max-width: 55%;
        max-height: 65%;
        margin-left: auto;
        margin-right: auto;

       
    
    }

    .IhrCoach .CoachImage{
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center;
    
    }

    .Titel .ligne {
    
        height: 3px;
        width: 10%;
    
    }


    .Titel p {
        padding-left: 20px;
        padding-bottom: 40px;
    }



    .Vorstellung p:first-child {
        margin-top: 1px;

    }

    .Vorstellung .Songul {
        text-align: center;
        font-size: medium;
        margin-top: 60px;
    }

    .CoachImage img {
        width: auto;
        max-height: 80%;
        border-radius: 20px;
    
    }
}


@media screen and (min-width:992px) and (max-width:3000px){
    .IhrCoach {
        background-color: rgba(79, 80, 82, 0.025);

    }

   

    .IhrCoach .container .Columns {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-gap: 10px;
    }

    .CoachImage img {

            border-radius: 20px;
            max-width: 55%;
            max-height: 60%;
            border-radius: 20px;
            margin-left: 100px;
        }

        .Vorstellung{
            margin-right: 100px;
        }
        
    }






/*
@media (width:1280px){

    
    .CoachImage img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 20px;
    
    
    }

    .IhrCoach .container .Columns {
        display: grid;
        grid-template-columns: 30% 1fr;
        grid-gap: 40px;
    }


}*/


/*-----------------End Section Ihr Coach--------------------*/



/*------------------Start Section Diensleistungen------------*/

.Diensleistungen {
    /*background-color: #1040a0e5;*/
    max-height: 100%;
    padding-top: 10px;
    margin-top: 30px;

}

.Individuell-Image {
    position: relative;
}

.Individuell-Image h1 {
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -90%);
    width: 100%;
    text-align: center;
    margin: 0;


}

.Individuell-Image img {
    width: 100%;
    max-height: 250px;
    border-radius: var(--border-radius-button);


    
}

.Diensleistungen .Dienstleistung-Column1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;

}

.Diensleistungen .Dienstleistung-Column1 .column {
    width: 100%;
    /*background-color: rgba(142, 48, 88, 0.025);*/
    border-radius: var(--border-radius-button);




}

.column .Beschreibung {
    padding: 0 10px 0 10px;
    line-height: 1.7;


}

.column .Beschreibung p {
    font-weight: var(--regular-Text);
}


/*-----------------Start Responsive Section Diensleistungen-----*/

@media (max-width:768px) {
    .Diensleistungen .Dienstleistung-Column1 {
        grid-template-columns: 1fr;
    }

    .Individuell-Image h1 {
        
        font-size:x-large;
    
    


    }
}
@media screen and (min-width:1280px) and (max-width:3000px){

    .Individuell-Image img {
    
        width: 100%;
        max-height: 350px;
        border-radius: var(--border-radius-button);
    

    
    }
    .column{
        margin-bottom: 80px;
    }


}


/*-----------------End Responsive Section Diensleistungen-----*/



/*------------------End Section Diensleistungen------------*/



/*------------------Start Section warum coachen lassen-----*/



.coachenLassen {

    max-height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: rgba(79, 80, 82, 0.025);
    margin-bottom: 40px;
}

.coachenLassen .containerMitte {

    background-color: #ffffff;
    max-width: 800px;
    max-height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding-bottom: 40px;
    border-radius: 20px;


}

.Text-Mitte {
    text-align: center;
    padding: 5px 40px 5px 40px;
    line-height: 1.7;

}

.Text-Mitte h1 {
    color: var(--blau-color);
    padding-bottom: 20px;
    font-family: var(--font-Titel);
    
}

.IconColumn p {
    display: flex;
    align-items: center;
    margin-bottom: -5px;

}

.IconColumn img {
    margin-right: 20px;
    max-width: 30px;
    margin-left: 40px;
}

.IconColumn {
    margin-top: 5px;
    margin-bottom: 30px;
}


.AllColumns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 140px;
}
.containerMitte a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin-top: 20px;
}

.containerMitte .Kontakt{
    display: flex;
    justify-content: center;
    align-items: center;
}



/*---------  Start Responsive -----------*/





@media (max-width:768px) {
    .AllColumns {
        grid-template-columns: 1fr;
        grid-row-gap: 10px;

    }

    .IconColumn{
        margin-bottom: -5px;
    }

    .IconColumn p {
        margin-left: 40px;
        padding-right: 40px;
    }



    .containerMitte .Kontakt{
        display: flex;
        justify-content: center;
        align-items: center;
    }

}


/*-----------End Responsive----------*/




/*------------------End Section warum coachen lassen-----*/

/*------------------Start Section Anrufen----------------*/

.Anrufen {

    width: 100%;
    /*height: calc(100vh - 110px);*/
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    background-image: url(../Fotos/Anrufen.jpg);
    margin-bottom: 100px;
    position: relative;
}



.Rechteck {
    height: 100%;
    width: 35%;
    background-color: #4875e795;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;



}

.Quadrat {
    background-color: #4875e795;
    width: 120%;
    height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    padding-left: 30px;


}

.Quadrat .Text4 {
    color: white;
    padding-left: 80px;



}

.Quadrat .Checkliste {
    color: white;
    padding: 0 0 10px 80px;


}

.Quadrat .Checkliste p {
    font-weight: var(--regular-Text);
}

.Quadrat .RufenSieAn {
    color: white;
    padding-left: 80px;

}

.Anruf button {
    cursor: pointer;
    margin-left: 30px;
    padding: 10px 30px;
    border: none;
    border-radius: var(--border-radius-button);
    color: var(--blau-color);
    background: rgb(255, 255, 255);

}

.Quadrat .Anruf {
    padding-left: 50px;

}

.inlineButtunPfeil {
    display: flex;
}

.inlineButtunPfeil .Pfeil {
    color: white;
    padding-left: 20px;
    font-size: 30px;
}

.inlineButtunPfeil {
    padding-top: 40px;
}



/*---------Start responsive--------------*/

@media (max-width:540px) {


    .Anrufen {

        max-width: 100%;
        /*height: calc(100vh - 110px);*/
        height: 500px;

        margin-top: 0;

        position: relative;
        margin: 0;
    }
    .Rechteck {
        height: 100%;
        width: 80%;
        background-color: #4875e795;
        left: 50%;
        top: 50%;
    }

    .Quadrat {
        background-color: #4875e795;
        width: 120%;
        height: 80%;
        left: 50%;
        top: 50%;
        
    }

    .Quadrat .Text4 {

        padding-left: 20px;


    }

    .Quadrat .Checkliste {

        padding-left: 20px;


    }

    .Quadrat .RufenSieAn {

        padding-left: 20px;
        padding-bottom: 15px;

    }

    .inlineButtunPfeil {
        padding-top: 20px;

    }

    .inlineButtunPfeil .Anruf {
        padding-left: 30px;
    }



}


/*@media (min-width:768px) {

 


}
*/

@media  (min-width:768px){
    .Quadrat .inlineButtunPfeil .Anruf{
        padding-left:10px ;
    }
    .RufenSieAn {
        margin-bottom: -35px;
        
    }
    .Quadrat .Text4 {
        padding-left: 10px;
    }
    .Quadrat .Checkliste {
        padding-left: 10px;
    }
    .Quadrat .RufenSieAn {
        padding-left: 10px;
        

    }

    .Anrufen {

        width: 100%;
        /*height: calc(100vh - 110px);*/
        height: 700px;
    
    }
    .Quadrat{
        padding-top: 100px;
        padding-left: 70px;
    }


}

/*----------------End responsive-----------------*/

/*------------------End Section Anrufen----------------*/


/*-------------------Start Section Uber uns--------------*/



/*-------------------1 Column---------------------*/
.UberUns{
    background-color: rgba(79, 80, 82, 0.025);
    padding-bottom: 30px;
    margin-bottom: 100px;

}

.UberUns .Titel{
    padding-top: 30px;
    
}

.UberUnsColumn{
    display: inline;
   

}

.ChildColumn  .UberUnsTitel{
    margin-left: 0.3rem;
    margin-top: 10px;


}
/*
.ChildColumn .UberUnsTitel p:nth-child(1){
    margin-left: 2.5px;
    margin-left: 20rem;

   
    margin-top: 35px;
}
*/

.UberUns .UberUnsTitel{
    color: var(--blau-color);
    margin-bottom: 100px;
}
.UberUns .UberUnsTitel p{
    font-family: var(--font-Titel);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: -60px;
    margin-top: 18px;


}

.UberUnsBeschreibung p{
    line-height: 2;
    max-width: 100%;
    padding-bottom: 20px;
}

.UberUnsBeschreibung .UberUnsBold{
    font-weight: bold;
}

/*-------------------2 Column------------------------*/

.VerfahrenTitel p{
    font-weight:bold ;
    font-size: large;
    margin-bottom: 20px;
    font-family: var(--font-Titel);
}
.UberUns .Verfahren {
    line-height: 2;
    width: 100%;

}

.UberUns .Verfahren img{

    width:20px ;
}
.Verfahren .Verfahren-Wight{
font-weight: bold;
margin-right: 10px;
margin-left: 10px;
color: #4874E7;
}


/*-------------------Start Responsive------------------*/

@media  (max-width:768px) {

    .UberUnsColumn{
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    
    }
    .ChildColumn  .UberUnsTitel{
        margin-left: auto;
        margin-right: auto;
        margin: 0;
       
        
    
    }
    .ChildColumn .UberUnsTitel p{
        font-size: 20px;
        text-align: center;
        line-height: 0.5;
        margin-bottom: 10px;
        letter-spacing: 0.1;
        line-height: 2;
    }
    .UberUnsBeschreibung p{
        text-align: center;
        max-width: 100%;
    }
    .UberUns .Verfahren p {
        max-width: 100%;
    
    }

    .UberUns .VerfahrenTitel p{
        font-weight:600;
        margin-top: -20px;
        line-height: 2;
        

    }



}


@media  screen and (min-width:768px) and (max-width:3000px) {
    /*.ChildColumn .UberUnsTitel p{
        margin-left: 105px;
        letter-spacing: 3.2px;
        margin-top: 20px;
    }

    .ChildColumn .UberUnsTitel p:nth-child(1){
        margin-left: -40px;
        letter-spacing: 3.2px;
        margin-top: -8px;
        line-height: 2.5;
    }
    */

}


/*-------------------End Responsive------------------*/

/*-------------------End Section Uber uns--------------*/





/*------------------Start Section Kontakt---------------*/
.ColumnsFor2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;


}

.Quadrat-Blau{
    background-color: var(--blau-color);
    max-width: 542px;
    height: 420px;
    padding: 25px 0 30px 30px;
    border-radius: var(--border-radius-button);
}

.Text-Mitte2 h1{
    text-align: center;
    color: var(--blau-color);
    font-family: var(--font-Titel);
    margin-top: 50px;
    margin-bottom: 70px;
    
   
}


.Quadrat-Blau p{
    color: white;
    

}
.Quadrat-Blau a{
    
    text-decoration: none;
    color: white;
}
.Quadrat-Blau p:nth-child(1){
    font-weight:bolder;
    font-family: var(--font-Titel);


}

.Quadrat-Blau p:nth-child(3){
    font-weight:bolder;
    font-family: var(--font-Titel);
    margin-top: 40px;
}


.Quadrat-Blau p:nth-child(5){
    font-weight:bolder;
    font-family: var(--font-Titel);
    margin-top: 40px;
}


.Quadrat-Blau p:nth-child(7){
    font-weight:bolder;
    font-family: var(--font-Titel);
    margin-top: 40px;
}

.KontaktFormular-Text p{
    font-weight: bold;
}

.Stern{
    color: red;
}


/*-------Kontaktformular----------------*/

input[type=text],textarea{
    width: 100%;

}
.KontaktFormular-Text p{
    margin-top: 0px;
}
.KontaktFormular label{
    display: block;
    padding-bottom: 20px;
    padding-top: 10px;
}

/*----------Border entfernen--------------*/
#VorNachName{
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding: 10px 5px 10px 10px;


}
#E-Mail{

    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding: 10px 5px 10px 10px;
    

}
#Nachricht{
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding: 10px 5px 60px 10px;
}


.KontaktFormular .NachrichtAbsenden button{
    width: 100%;
}

/*----------------Button Design----------------*/
.NachrichtAbsenden button {
   
    margin-top: 20px;
    padding: 5px 150px;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-button);
    color: white;
    background: hsla(223, 77%, 59%, 1);

    /*  gradient generator from https://coolors.co  Datum:05.01.24 */

    background: linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(223, 77%, 59%, 1) 7%, hsla(223, 77%, 64%, 1) 27%, hsla(224, 77%, 67%, 1) 55%, hsla(224, 77%, 71%, 1) 67%, hsla(223, 77%, 83%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#4874E7", endColorstr="#5D84EA", GradientType=1);
    cursor: pointer;

}




/*-------------Start Responsive Kontaktformular--------*/

@media (max-width:768px) {
    .ColumnsFor2{
        
        grid-template-columns:  1fr;
        
    
    }
    .Text-Mitte h1{
        font-size: 1.5em;
    }


    .NachrichtAbsenden button {
        
        padding: 5px 80px;
        max-width: 100%;
    }

    .Text-Mitte2{
        margin-top: 80px;
    }


.Text-Mitte2 h1{
    text-align: center;
    
    font-family: var(--font-Titel);
    margin-top: -40px;
    font-size: large;
  
    
   
}

}
/*-------------End Responsive Kontaktformular--------*/



/*----------------------Start Footer ------------------*/

.Footer{
    background-color: #423F3F;
    margin-bottom: 0;
}
.FooterContainer{

    background-color: #423F3F;
    height: auto;
    padding: 30px 20px 30px 20px;
    margin-top: 40px;
    display: flex;
    justify-content:space-around;

    

    

}
/*-------------Soziale Medien-----------*/
.SozialeMedienFooter p:nth-child(1){

    font-family: var(--font-Titel);
    font-weight: bold;

}
.SozialeMedienFooter a{
    display: flex;
    color: white;
    text-decoration: none;
}
.SozialeMedienFooter p{
    display: flex;
    color: white;
    cursor: pointer;

}
.SozialeMedienFooter img{
    display: block;
    width: 20px;
    margin-right: 20px;
    
}
.SozialeMedienFooter  p:nth-child(4) span{
    margin-left: 25px;

}
/*--------------Seiten------------------*/

.Seiten p{
    color: white;
    font-family: var(--font-Titel);
    font-weight: bold;
}

.ListeSeite li{
    list-style-type: none;
    margin-left: -40px;
    margin-bottom: 15px;
    
}
.ListeSeite a{
    text-decoration: none;
    color: white;

}



/*-----------------Logo-------------------*/
.FooterLogo .logo{
    width: 300px;
    cursor: pointer;
    padding-top: 50px;

}



/*-------------------Copyright Line---------*/
.CopyrightLine{
    color:white;
    margin-bottom: 0;
    padding-bottom: 10px;
    

    
}

.CopyrightLine p{
    font-size: 12px;
    font-family: var(--font-Titel);
    font-weight: 100;

    padding-left: 160px;

    padding-top: 10px;

}
.CopyrightLine .Copyright{
    margin-right: 10px;
}


.CopyrightLine .Line{
    background-color: rgba(255, 255, 255, 0.528);
    width: 100%;
    height: 0.5px;
    margin:0 0;
}


/*-----------------Start Responsive--------------*/
@media (max-width:768px){

    .FooterContainer{

        background-color: #423F3F;
        height: auto;
        padding: 20px 10px 20px 10px;
        margin-top: 40px;
    
    }
    .FooterLogo .logo{
        width: 100px;
        cursor: pointer;
    }


/*-----------Responsive Seiten---------------*/
    .Seiten p{
        color: white;
        font-family: var(--font-Titel);
        font-weight: bold;
        font-size: 12px;
    }
    
    .ListeSeite li{
        
        margin-left: -40px;
        margin-bottom: 5px;
        margin-top: 10px;
        
    }
    .ListeSeite a{
        font-size: 12px;
    
    }



/*---------------Responsive Soziale Medien--------*/

.SozialeMedienFooter p:nth-child(1){

    font-family: var(--font-Titel);
    font-weight: bold;
    margin-bottom: 23px;

}
.SozialeMedienFooter p{
    display: flex;
    color: white;
    cursor: pointer;
    font-size: 12px;

}
.SozialeMedienFooter img{
    display: block;
    width: 15px;
    margin-right: 20px;
    
}
.SozialeMedienFooter  p:nth-child(4) span{
    margin-left: 20px;

}

/*-------------------Responsive Copyright----------*/




.CopyrightLine p{
    font-size: 8px;
    font-family: var(--font-Titel);
    font-weight: 100;
    padding-left: 25px;

}

}

/*------------------End Responsive-----------------*/


/*----------------------End Footer ------------------*/




