@font-face {
    font-family: 'inter';
    font-style: normal;
    font-weight: 400;
    src: local('inter Regular'), local('inter-Regular'),
        url('../fonts/Inter-VariableFont_slnt,wght.ttf')
}

@font-face {
    font-family: 'inter';
    font-style: bold;
    font-weight: 600;
    src: local('inter Regular'), local('inter-Regular'),
        url('../fonts/Inter-VariableFont_slnt,wght.ttf')
}
html {
    scroll-behavior: smooth;
  }

a{
    text-decoration: none;
}

h1 {
    font-family: 'inter', sans-serif;
    color: #3F8ED9;
    font-size: 140px;
    font-style: bold;
    margin: 0%;
}

@media screen and (max-width: 1600px) {
    h1{
        font-size: 120px;
    }
}

@media screen and (max-width: 900px) {
    h1{
        font-size: 100px;
    }
}

@media screen and (max-width: 700px) {
    h1{
        font-size: 50px;
    }
}

.hlehrsuper{
    font-size: 120px;
}

@media screen and (max-width: 1600px) {
    .hlehrsuper{
        font-size: 100px;
    }
}

@media screen and (max-width: 900px) {
    .hlehrsuper{
        font-size: 80px;
    }
}

@media screen and (max-width: 700px) {
    .hlehrsuper{
        font-size: 40px;
    }
}

h2 {
    font-family: 'inter', sans-serif;
    color: #3F8ED9;
    font-size: 30px;
    font-style: bold;
    text-align: center;
}

@media screen and (max-width: 900px) {
    h2{
        font-size: 25px;
    }
}

@media screen and (max-width: 700px) {
    h2{
        font-size: 20px;
    }
}

h3 {
    color: #707070;
    font-size: 80px;
    margin: 0%;
}

@media screen and (max-width: 900px) {
    h3{
        font-size: 70px;
    }
}

@media screen and (max-width: 700px) {
    h3{
        font-size: 50px;
    }
}

.left{
text-align: left;
color: #707070;
}
.leftblue{
text-align: left;
}

p {
    color: #707070;
    font-family: "inter", sans-serif;
    font-size: 25px;
    font-style: normal;
}

@media screen and (max-width: 700px) {
    p {
        font-size: 15px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "inter", sans-serif;
}

.heroright {
    width: 100%;
    display: flex;
    justify-content: center;
}

.circle {
    width: 600px;
    height: 600px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-radius: 50%;
    display: inline-block;
}

@media screen and (max-width: 1500px) {
    .circle {
        width: 400px;
        height: 400px;    }
}

/* @media screen and (max-width: 1300px) {
    .circle {
        width: 300px;
        height: 300px;   }
} */

@media screen and (max-width: 700px) {
    .circle {
        width: 300px;
        height: 300px;    }
}

#picindex{
    background-image: url("./img/Head.jpg");
}

#picabout{
    background-image: url("./img/heroabout.png");
}

#piccoach{
    background-image: url("./img/piccoach.png");
}

#picsuper{
    background-image: url("./img/picsuper.png");
}

#piclehr{
    background-image: url("./img/PIXNIO-1864579-1200x800.jpg");
}

#picber{
    background-image: url("./img/comment.png");
}

.hero {
    display: flex;
    flex: 1 1 0px;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .hero {
        display: block;
    
    }
}

.heroleft {
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.center {
    padding-left: 130px;
}
@media screen and (max-width: 900px) {
    .center{
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* @media screen and (max-width: 1100px) {
    .heroright {
        display: none;}
} */

.centerbutton {
    display: flex;
    justify-content: center;
}

.btn {
    border: 2px solid currentColor;
    border-radius: 50px;
    color: #3F8ED9;
    background-color: #fff;
    font-size: 40px;
    font-weight: 400;
    width: 300px;
    height: 70px;
    overflow: hidden;
    padding: .5rem 2rem;
    position: relative;
    text-decoration: none;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    margin-top: 20px;
}

@media screen and (max-width: 1200px) {

    .btn {
margin-bottom: 30px;
    }
    }

@media screen and (max-width: 700px) {
.btn {
    width: 220px;
    height: 40px;
    font-size: 25px;
    padding: .2rem 2rem;
}
}



.btn::after {
    background-color: #3F8ED9;
    border-radius: 50px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.btn:hover::after {
    transform: translate(0, 0);
}

.btn:hover {
    border: 2px solid transparent;
    color: #fff;
    transform: scale(1.05);
    will-change: transform;
    cursor:pointer;
}

.line{
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    height: 3px;
    margin-left: 0%;
    margin-right: auto;
    background-color: #3F8ED9;
    background: linear-gradient(90deg, rgba(63,142,217,1) 0%, rgba(63,142,217,0) 100%);
    border: 0 none;
}

.lineleft {
    margin-top: 100px;
    margin-bottom: 100px;
    width: 25%;
    height: 3px;
    margin-left: 0%;
    margin-right: auto;
    background-color: #3F8ED9;
    border: 0 none;
}

.lineright {
    margin-top: 100px;
margin-bottom: 100px;
    width: 25%;
    height: 3px;
    margin-left: auto;
    margin-right: 0%;
    background-color: #3F8ED9;
    border: 0 none;
}
    @media screen and (max-width: 900px) {
        .line {
            margin-top: 50px;
            margin-bottom: 50px;
          
        }
        .lineleft {
            margin-top: 50px;
            margin-bottom: 50px;
          
        }
        
        .lineright {
            margin-top: 50px;
        margin-bottom: 50px;
        
        }
    }
    @media screen and (max-width: 700px) {
        .line {
            margin-top: 20px;
            margin-bottom: 20px;
          
        }
        .lineleft {
            margin-top: 20px;
            margin-bottom: 20px;
          
        }
        
        .lineright {
            margin-top: 20px;
        margin-bottom: 20px;
        
        }
    }

.auswahl{
    margin-left: 130px;
    margin-right: 130px;
display: grid;
grid-template-columns: 1fr 1fr ;
grid-template-rows: 1fr 1fr;
column-gap: 40px;
row-gap: 40px;
}

@media screen and (max-width: 900px) {
    .auswahl{
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media screen and (max-width: 700px) {
    .auswahl{
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 5px;
        padding-right: 5px ;
    }
}

@media screen and (max-width: 1400px) {
    .auswahl{
        display: block;
    }
}

.sgrey{
    background-color: #ECF3FA;
}
.sorange{
    background-color: #FCEEC8 ;
}
.selector{
    height: 500px;
    width: 100%;
    position: relative;
}
@media screen and (max-width: 1400px) {

    .selector {
        margin-top: 20px;
        margin-bottom: 20px;
        
    }   
}

@media screen and (max-width: 700px) {

    .selector {
        height: 430px;
    }   
}

.selectorhead{
    padding: 5%;
    width: 90%;
position: absolute;    
}

@media screen and (max-width: 700px) {
    .selectorhead{
        position: relative;
padding-top: 3%;
        padding-bottom: 0%;
    }   
}
.selectorcont{
    position: absolute;
bottom: 0;
left:0;
    display: flex;
    padding: 5%;
 align-items: center;
 width: 90%;
 
}
@media screen and (max-width: 900px) {
    .selectorcont
{
    display: flex;
    padding-top: 5%;
}
}
@media screen and (max-width: 700px) {
    .selectorcont
{
    padding-top: 1%;
    display: block;
    position: relative;
}
}

.icon{
 width: 200px;
 margin-right: 0px;
 margin-left: auto;
 margin-top: auto;
 margin-bottom: 30px;
}

.selectorbutton{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
    .selectorbutton{
        justify-content: left;
    }
}

@media screen and (max-width: 700px) {
    .selectorbutton{
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

.sbtn {
    border: 2px solid currentColor;
    border-radius: 50px;
    color: #3F8ED9;
    background-color: #fff;
    font-size: 35px;
    font-weight: 400;
    width: 300px;
    height: 60px;
    overflow: hidden;
    padding: .5rem 2rem;
    position: relative;
    text-decoration: none;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    cursor: pointer;
}

@media screen and (max-width: 700px) {
    .sbtn{
        width: 220px;
        height: 40px;
        font-size: 25px;
        padding: .2rem 2rem;
    }
}

.sbtn::after {
    background-color: #3F8ED9;
    border-radius: 50px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.sbtn:hover::after {
    transform: translate(0, 0);
}

.sbtn:hover {
    border: 2px solid transparent;
    color: #fff;
    transform: scale(1.05);
    will-change: transform;

}



.iconpic{
    fill: #fff;
    width: 100%;
}

.abschnitt{
    margin-left: 130px;
    margin-right: 130px;
}

@media screen and (max-width: 900px) {
    .abschnitt{
        margin-left: 40px;
        margin-right: 40px;
    }
}

.footercont{
    margin-left: 130px;
    display: flex;
}

@media screen and (max-width: 900px) {
    .footercont{
        margin-left: 40px;
        display: block;
    }
}

.footerl{
width: 100%;
}

.footerr{
width: 100%;
align-items: end;
display: flex;
}


.rounded{
    border-radius: 30px 0px 0px 0px;
    background: #3F8ED9;
    width: 200px;
    height: 20px;
    margin-left: auto;
    margin-right: 0%;
    padding-top: 3%;
    padding-left: 3%;
    padding-bottom: 3%;
    transition: 0.2s transform ease-in-out;
  }

  .rounded a{
    text-decoration: none;
    font-size: 15px;
    box-shadow: inset 0 0 0 0 #54b3d6;
    color: #fff;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  }
  .rounded a:hover{
    box-shadow: inset 100px 0 0 0 #fff;
    color: #3F8ED9;  }

.aufzaehlung{
    color: #707070;
    font-size: 25px;
}

.imgsect{
    margin: 0px;
    }



.coachingimage{
    background-image: url("./img/Coach-img.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 70%;
        height: 0;
        margin: auto;
        padding-top: 39.375% /* (img-height / img-width * container-width) */
                    /* (853 / 1280 * 100) */
}

.superimage{
    background-image: url("./img/supervision.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 70%;
    height: 0;
    margin: auto;
    padding-top: 39.375% /* (img-height / img-width * container-width) */
                /* (853 / 1280 * 100) */
}

.beratimage{
    background-image: url("./img/Beratung.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 70%;
    height: 0;
    margin: auto;
    padding-top: 39.375% /* (img-height / img-width * container-width) */
                /* (853 / 1280 * 100) */
}

@media screen and (max-width: 700px) {
    .coachingimage{
        width: 100%;
        padding-top: 56.25%
}

.superimage{
    width: 100%;
    padding-top: 56.25%
}

.beratimage{
    width: 100%;
    padding-top: 56.25%
}
}

.angebote{
        padding-left: 130px;
        padding-right: 130px;
        background-color: #ECF3FA;
        padding-top: 50px;
}

@media screen and (max-width: 900px) {
    .angebote{
        padding-left: 40px;
        padding-right: 40px;
}
}
.angebote h2{
    color: #3F8ED9;
    text-align: left;
    margin: 0px;
    font-size: 40px;
}

.angebote li{
    color: #707070;
    font-family: "inter", sans-serif;
    font-size: 30px;
    font-style: normal;
}
@media screen and (max-width: 900px) {
    .angebote li{
        font-size: 25px;
    }
}
@media screen and (max-width: 700px) {
    .angebote li{
        font-size: 15px;
    }
}





/* CURSOR

.custom-cur {
    cursor: url("./img/water-solid.svg"),auto;

  }
  
  .spacer{
    margin-top: 150px;
    margin-bottom: 150px;
  }

  @media screen and (max-width: 900px) {
    .spacer{
        margin-top: 10px;
        margin-bottom: 10px;
    }
} */

@media screen and (max-width: 1200px) {
    .hide {
        display: none;
    
    }
}