*
{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    background: rgb(0, 0, 0);
}

h1{
    color: white;
}



@keyframes scale {
    100% {
      transform: scale(1);
    }
  }
  
  span {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
  }
  
  span:nth-child(1) {
    animation: fade-in 1.3s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(2) {
    animation: fade-in 1.3s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(3) {
    animation: fade-in 1.3s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(4) {
    animation: fade-in 1.3s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(5) {
    animation: fade-in 1.3s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  @keyframes fade-in {
    100% {
      opacity: 1;
      filter: blur(0);
    }
  }  


.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
   
}



.header{
    min-height: 120vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/mycoach.jpg);
    background-position: center;
    background-size: cover;
    position: relative;


}

@media(max-width:700px){
    .header{background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(images/mob.jpg);

    }
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}

.nav-links{
    flex: 1;
    text-align: right;

}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #d4af37;
    display: block;
    margin: auto;
    transition: 0.5s;

}

.nav-links ul li:hover::after{
    width: 100%;

}

.text-box{
    width: 90%;
    color: #d4af37;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 70px;
    color: #fff;

}


.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;

}

.hero-btn:hover{
    border: 1px solid #d4af37;
    background: #d4af37;
    transition: 1s;
}

nav .fa{
    display: none;
}



/*----Course----*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.course h1{
    font-size: 50px;
    font-weight: 600;

}

.course p{
    color: white;
    font-size: 25px;
}


.course-col p{
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px;
    font-weight: bold;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;
}

.course-col{
    flex-basis: 31%;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3{
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px #fff;
}



/*----Campus----*/

.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;

}

.campus h1{
    font-size: 50px;
}



.campus p{
    color: white;
    font-size: 20px;
}


.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.campus-col img{
        width: 100%;
        display: block;

}

.campus-col h1{
    font-size: 30px;
}

.campus-col p{
    font-size: 27px;
}



.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(0,0,0,0.7);
    
}

.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}



.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}




/*-----Facilities-----*/


.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.facilities p{
    color: white;
}


.facilities-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities-col img{
    width: 100%;
    border-radius: 10px;

}

.facilities-col p{
    padding: 0;
    color: white;
}

.facilities-col h3{

    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
    color: white;
}


/*----testimonials----*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;

}

.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.testimonial-col p{
    padding: 0;

}

.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}

.testimonial-col .fa{
    color: #d4af37;
}



/*----cta----*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
    url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
    font-size: 40px;
}





/*----footer----*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;

}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    color: white;
}

.footer p{
    color: white;
}

.icons .fa{
    color: #d4af37;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o{
    color: #d4af37;
}


/*----about us page----*/



.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
    border-radius: 20px;
}

.about-col h1{
    padding-top: 0;
    font-size: 45px;
    text-align: center;
}

.about-col p{
    padding: 15px 0 25px;
    color: white;
    text-align: center;
    font-size: 30px;
}

.red-btn{
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
}

.red-btn:hover{
    color: white;

}


/*----blog----*/

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;

}

.blog-left{
    flex-basis: 65%;
}

.blog-left img{
    width: 100%;
}

.blog-left h2{
    color: white;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p{
    color: #999;
    padding: 0;
}

.blog-right{
    flex-basis: 32%;

}

.blog-right h3{
    background: #d4af37;
    color: white;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}


.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-boxh3{
    text-align: left;
}


.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;

}

.comment-form button{
    margin: 10px 0;
}





/*----contact us----*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #d4af37;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
    color: white;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;

}

hr{
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 200px;

}

.sub-header{
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0.7), rgba(0,0,0,0.7));
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.sub-header h1{
    margin-top: 60px;
    font-size: 60px;
}


.naslov{
    margin-top: 60px;
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0.7), rgba(0,0,0,0.7)),
    url(images/individualni.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.naslov .prvi{
    margin-top: 250px;
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}


.prvi h1{
    font-size: 150px;
    text-align: left;
}


.ponuda{
    width: 80%;
    margin: auto;
    padding: 20px;

}

.ponuda-col{
    flex-basis: 48%;
    padding: 20px;
    display: flex;
}


.ponuda-col h1{
    padding-top: 0;
    font-size: 50px;
    text-align: left;
}

.ponuda-col p{
    padding: 15px 0 25px;
    color: white;
    text-align: right;
    font-size: 25px;
}


.naslov-dva{
    margin-top: 60px;
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0.7), rgba(0,0,0,0.7)),
    url(images/par.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.naslov-dva .prvi-dva{
    margin-top: 1300px;
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}


.prvi-dva h1{
    font-size: 150px;
    text-align: left;
}


.ponuda-dva{
    width: 80%;
    margin: auto;
    padding: 20px;

}

.ponuda-col-dva{
    flex-basis: 48%;
    padding: 20px;
    display: flex;
}


.ponuda-col-dva h1{
    padding-top: 0;
    font-size: 50px;
    text-align: left;
}

.ponuda-col-dva p{
    padding: 15px 0 25px;
    color: white;
    text-align: right;
    font-size: 25px;
}


.naslov-tri{
    margin-top: 60px;
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0.7), rgba(0,0,0,0.7)),
    url(images/grupa.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.naslov-tri .prvi-tri{
    margin-top: 2500px;
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}


.prvi-tri h1{
    font-size: 150px;
    text-align: left;
}


.ponuda-tri{
    width: 80%;
    margin: auto;
    padding: 20px;

}

.ponuda-col-tri{
    flex-basis: 48%;
    padding: 20px;
    display: flex;
}


.ponuda-col-tri h1{
    padding-top: 0;
    font-size: 50px;
    text-align: left;
}

.ponuda-col-tri p{
    padding: 15px 0 25px;
    color: white;
    text-align: right;
    font-size: 25px;
}

.uvod{
    margin: 100px auto;
    width: 90%;
    background-image: linear-gradient(rgba(11, 11, 11, 0.7), rgba(16, 15, 15, 0.7)), 
    url(images/uvod.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 100px 0;
}

.uvod-col{
    flex-basis: 48%;
    padding: 30px 2px;
}




.uvod-col p{
    padding: 15px 0 25px;
    color: white;
    text-align: center;
    font-size: 30px;
}



.ekipa{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.ekipa-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.ekipa-col img{
    margin-top: 120px;
    width: 100%;
    border-radius: 20px;
    margin-left: 30px;
}

.ekipa-col h1{
    padding-top: 40px;
    font-size: 35px;
    text-align: left;
}

.ekipa-col p{
    padding: 15px 0 25px;
    color: white;
    text-align: center;
    font-size: 19px;
    text-align: justify;
}

.footer .sharky {
    font-size: 12px;
}


@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #d4af37;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;    }
    
    .nav-links ul{
            padding: 30px;
        }
}

@media(max-width: 700px){
    .row{
        flex-direction:column;
    }
}

@media(max-width: 700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;

    }
}

@media(max-width: 700px){

    .cta h1{
        font-size: 24px;
    }
}


@media(max-width:700px){
    .sub-header h1{
        font-size: 40px;
        text-align: left;
        margin-left: 60px;
    }
}


@media(max-width:700px){
    .naslov .prvi h1{
        font-size: 30px;
    }
    .naslov-dva .prvi-dva h1{
        font-size: 30px;
        margin-top: 500px;
    }
    .naslov-tri .prvi-tri h1{
        font-size: 30px;
        margin-top: 800px;
    }

}

@media(max-width:700px){
    .ponuda .ponuda-col h1{
        font-size: 20px;
    }
    .ponuda-dva .ponuda-col-dva h1{
        font-size: 20px;
    }
    .ponuda-tri .ponuda-col-tri h1{
        font-size: 20px;
    }

}

@media(max-width: 700px)
{
    .ekipa-col img{
        margin-top: 35px;
        width: 90%;
        border-radius: 20px;
        margin-left: 15px;
    }

}


@media(max-width: 700px)
{
    .ekipa-col img{
        margin-top: 35px;
        width: 90%;
        border-radius: 20px;
        margin-left: 15px;
    }

    .about-col h1{
        font-size: 30px;
    }

    .about-col p{
        font-size: 18px;
    }
    .about-us{
        margin-top: 30px;
    }


}

@media(max-width:700px){
    .uvod{
        margin: 100px auto;
        width: 100%;
        background-image: linear-gradient(rgba(11, 11, 11, 0.7), rgba(16, 15, 15, 0.7)), 
        url(images/bg.jpg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 3px;
        text-align: center;
        padding: 100px 0;
    }
    
    .uvod-col{
        flex-basis: 48%;
        padding: 30px 2px;
    }
    
    
    
    
    .uvod-col p{
        padding: 15px 0 25px;
        color: white;
        text-align: center;
        font-size: 13px;
    }

}


#langSwitchButton{
    background-color: transparent;
    margin-left: 40px;
    display: flex;
    cursor: pointer;
}

.uk{
    width: 40px;
    height: 40px;
}

.klik {
    font-size: 40px;
    color:#d4af37;
}

@media(max-width:700px){

.podn{
    font-size: 15px;
    
}

.ekipa .row .ekipa-col h1{
    font-size: 23px;
    margin-top: 170px;
}

}

.podn{
    padding: 15px 0 25px;
    color: white;
    text-align: center;
    font-size: 19px;
    margin-left: 175px;
    margin-right: 175px;
    
}

@media(max-width:700px){
    .sub-header .podn{
    color: white;
    text-align: justify;
    font-size: 18px;
    margin-left: 35px;
    margin-right: 35px;
}
}