@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* CUSTOM SCROLL BAR */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #c0c0c0;
}
::-webkit-scrollbar-thumb {
    background: #005686;
}  
::-webkit-scrollbar-thumb:hover {
    background: #005686; 
}

/* PRELOADER */
.preloader{
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    z-index: 100;
}
.load{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width:100px;
    height:100px;
}
.load hr{border:0;margin:0;width:40%;height:40%;position:absolute;border-radius:50%;animation:spin 2s ease infinite}  
.load :first-child{background:#c0c0c0;animation-delay:-1.5s}
.load :nth-child(2){background:#005686;animation-delay:-1s}
.load :nth-child(3){background:#c0c0c0;animation-delay:-0.5s}
.load :last-child{background:#005686}
  
@keyframes spin{
    0%,100%{transform:translate(0)}
    25%{transform:translate(160%)}
    50%{transform:translate(160%, 160%)}
    75%{transform:translate(0, 160%)}
}

/* NAVBAR */
.content{
    max-width: 1250px;
    margin: auto;
    padding: 0 30px;
}
.navbar{
    position: fixed;
    width: 100%;
    z-index: 2;
    padding: 25px 0;
    transition: all 0.3s ease;
}
.navbar.sticky{
    background: #005686;
    padding: 10px 0;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a .mainLogo{
    height: 100px;
    transform: scale(1);
    transition: all 0.3s ease;
}
.navbar.sticky .logo a .mainLogo{
    height: 0;
    transform: scale(0.001);
}
.navbar .logo a .miniLogo{
    height: 0;
    transform: scale(0.001);
    transition: all 0.3s ease;
}
.navbar.sticky .logo a .miniLogo{
    height: 50px;
    transform: scale(1);
    padding-top: 6px;
}
.navbar .menu-list{
    display: inline-flex;
}
.menu-list li{
    list-style: none;
}
.menu-list li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(0,0,0,0);
    text-decoration: none;
    transition: all 0.5s ease;
}
.menu-list li a:hover, .menu-list li a.active{
    border-bottom: 3px solid #fff;
}
.icon{
    cursor: pointer;
    display: none;
}
.icon.menu-btn img, .icon.cancel-btn img{
    width: 20px;
}
.menu-list .cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
}
@media (max-width: 1230px){
    .content{
        padding: 0 60px;
    }
}
@media (max-width: 1100px){
    .content{
        padding: 0 40px;
    }
}
@media (max-width: 900px){
    .content{
        padding: 0 30px;
    }
}
@media (max-width: 868px){
    body.disabled{
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .navbar .menu-list{
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #005686;
        transition: all 0.3s ease;
    }
    .navbar.show .menu-list{
        left: 0%;
    }
    .navbar .menu-list li{
        margin-top: 45px;
    }
    .navbar .menu-list li a{
        font-size: 23px;
        margin-left: -100%;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .navbar.show .menu-list li a{
        margin-left: 0;
    }
}
@media (max-width: 500px){
    .navbar .logo a .mainLogo{
        height: 70px;
    }
}
/* BANNER */
.banner{
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(/images/Banner.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.wrapper-banner{
    width: 90%;
    max-width: 700px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.wrapper-banner h1{
    font-size: 70px;
    color: #fff;
    line-height: 1;
}
.wrapper-banner p{
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}
.button{
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: #005686;
    padding: 10px 30px;
    border: 3px solid #005686;
    transition: all ease-in-out 0.3s;
}
.button:hover{
    background: rgba(0,0,0,0);
    color: #005686;
}
@media (max-width: 500px){
    .wrapper-banner h1{
        font-size: 40px;
    }
    .wrapper-banner p{
        font-size: 16px;
    }
    .wrapper-banner a{
        font-size: 16px;
    }
}


/* BIO */
.biography{
    width: 100%;
    height: auto;
    background: #c0c0c0;
}
.banner-biography{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}
.biography h1{
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.biography p{
    color: #000;
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 80px;
    text-align: justify;
    padding-top: 20px;
}
@media(max-width: 700px){
    .biography h1{
        font-size: 25px;
    }
    .biography p{
        font-size: 14px;
    }
}


/* COURSE */
.course{
    width: 100%;
    height: auto;
    background: #c0c0c0;
}
.banner-course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.banner-course h1{
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.course-col{
    flex-basis: 48%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.course-col img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(0,86,134,0.7);
}
.layer h3{
    width: 100%;
    text-transform: uppercase;
    font-size: 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 40%;
    opacity: 1;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .banner-course{
        padding-top: 0;
    }
    .banner-course h1{
        font-size: 30px;
    }
    .layer h3{
        font-size: 20px;
    }
}

/* FAQ */
.banner-faq{
    width: 100%;
    height: auto;
    background: #c0c0c0;
    padding: 100px 0 50px 0;
}
.wrapper-faq{
    width: 80%;
    margin: auto;
}
.wrapper-faq h1{
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
}
#accordion{
    margin: auto;
    width: 100%;
}
#accordion li{
    list-style: none;
    width: 100%;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
    border-left: 8px solid #005686;
}
#accordion li label{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #005686;
    background: #d9d9d9;
}
#accordion label + input[type="radio"]{
    display: none;
}
#accordion .panel{
    padding: 0 20px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
#accordion label + input[type="radio"]:checked + .panel{
    max-height: 400px;
}
#accordion .panel p{
    padding: 20px 0;
}
@media(max-width: 700px){
    .banner-faq{
        padding: 40px 0 0 0;
    }
    .wrapper-faq h1{
        font-size: 30px;
        margin-bottom: 20px;
    }
    #accordion li label{
        font-size: 16px;
    }
    #accordion .panel{
        font-size: 14px;
    }
}

/* CTA */
.banner-cta{
    width: 100%;
    height: auto;
    background: #c0c0c0;
    padding-top: 100px;
    padding-bottom: 100px;
}
.cta{
    margin: 0 auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(/Images/Bongos.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    text-transform: uppercase;
    font-size: 40px;
}
@media(max-width: 700px){
    .cta h1{
        font-size: 25px;
    }
}


/* FOOTER */
footer{
    position: relative;
    width: 100%;
    background: #848484;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .social-icon, footer .footer-menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social-icon li, footer .footer-menu{
    list-style: none;
}
footer .social-icon li a img{
    width: 30px;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .social-icon li a img:hover{
    transform: translateY(-10px);
}
footer .footer-menu li a{
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}
footer .footer-menu li a:hover{
    color: #005686;
}
footer h3{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
footer h4{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
footer h5{
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}
@media(max-width: 700px){
    footer .social-icon li a img{
        width: 20px;
    }
}