@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::-webkit-scrollbar {
    width: 8px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: transparent; 
}
   
::-webkit-scrollbar-thumb {
    background: #c6c6c6;
    border-radius: 20px;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #aeaeae; 
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat';
    box-sizing: border-box;
    background-color: #e7e7e7;
    color: #191919;
    text-transform: uppercase;
}

body.no-scroll{
    overflow: hidden;
}

header{
    height: fit-content;
    padding-block: 2vh;
    display: flex;
    flex-direction: column;
    background-color: #191919;
}

.navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.logo{
    height: 2.5em;
    translate: 0% -10%;
}

.logo:hover{
    filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
}

.menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.menu a{
    margin-inline: 1em;

    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: .95em;
    transition: transform .2s;
}

.menu a:hover{
    transform: scale(1.1);
    color: #E30F0F;
}

.social a{
    margin-inline: .5em;

    text-decoration: none;
}

.social img{
    transition: transform .2s;
}

.social img:hover{
    transform: scale(1.1);
    filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
}

.social a:last-child{
    margin-left: .2em;
}

.navbar-mobile{
    display: none;
}

h1{
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

p{
    font-size: 1em;
    font-weight: 500;
    text-transform: none;
}

.main-text{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vh;
    margin-bottom: 10vh;
}

.headline{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.underline{
    display: flex;
    width: 10em;
    height: .5em;
    background-color: #E30F0F;
    margin-top: .5em;
    margin-bottom: 3vh;
}

.sub-text{
    width: 90%;
    text-align: justify;
}

.findTrainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
}

.findTrainer .info{
    width: 90%;
    text-align: justify;    
}

.contact-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 5vh;
}

.contact-icons .icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.icon img{
   filter: brightness(0);
   margin-bottom: 1vh;
}

.icon{
    text-decoration: none;
    color: #191919;
    font-weight: 600;
    font-size: 1em;
}

.priceOfTrainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
}

.priceOfTrainer .info{
    width: 90%;
    text-align: center;
}

.allVideos{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
}

.videos{
    display: flex;
    flex-direction: row;
    width: 95%;
    justify-content: space-around;
}

.singleVideo{
    display: flex;
    flex-direction: column;
    margin-bottom: 5vh;
    align-items: center;
}

.singleVideo p{
    font-weight: 600;
}

.ytVideo{
    margin-top: 2vh;
    height: 25vh;
    width: 22.5em;
}

footer{
    background-image: url(../img/background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 15em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-footer{
    width: 23%;
    margin-bottom: 1.5em;
}

.logo-footer:hover{
    filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
}

.socials{
    margin-bottom: 1.5em;
}

.footer-underline{
    width: 40em;
    height: .3em;
    background-color: #ffffff;
    display: flex;
    margin: auto;
    margin-bottom: 1.5em;
}

.socials a{
    margin-inline: .5em;
    text-decoration: none;
}

.socials a:last-child{
    margin-left: .1em;
}

.socials img{
    transition: transform .2s;
}

.socials img:hover{
    transform: scale(1.1);
    filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
}

.copyright{
    text-decoration: none;
    font-size: 1em;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.admin_log{
    text-decoration: none;
    color: #fff;
}


@media (max-width: 1100px) {
    header{
        padding-block: 0vh;
        height: 6em;
    }

    h1{
        width: 90%;
    }

    .navbar{
        display: none;
    }

    .navbar-mobile{
        display: flex;
        height: 100%;
    }

    .hidden-mobile-menu{
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

    .hidden-mobile-menu.active{
        display: flex;
        flex-direction: column;
    }

    .hidden-mobile-menu .logo{
        height: 3.25em;
        margin-bottom: 5em;
    }

    .menu-mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 4em;
    }

    .menu-mobile a{
        font-size: 1.15em;
        text-decoration: none;
        color: #fff;
        margin-bottom: 3vh;
        transition: transform .2s;
    }
    
    .menu-mobile a:hover{
        transform: scale(1.1);
        color: #E30F0F;
    }
    
    .social-mobile a{
        margin-inline: .5em;
    
        text-decoration: none;
    }
    
    .social-mobile img{
        transition: transform .2s;
    }
    
    .social-mobile img:hover{
        transform: scale(1.1);
        filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
    }

    .social-mobile a:last-child{
        margin-left: .2em;
    }

    .menuIcon{
        position: fixed;
        right: 2em;
        top: 2em;
        cursor: pointer;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        padding: .2em;
    }

    .logo-mobile{
        height: 2.75em;
        position: absolute;
        top: 1.5em;
        left: 1.75em;
    }

    .logo-mobile:hover{
        filter: invert(38%) sepia(93%) saturate(6035%) hue-rotate(350deg) brightness(84%) contrast(120%);
    }

    .main-text{
        margin-bottom: 10vh;
        margin-top: 5vh;
    }

    .underline{
        margin-bottom: 2vh;
    }

    .sub-text{
        text-align: center;
    }

    .videos{
        flex-direction: column;
    }

    .findTrainer .info{
        width: 90%;
        text-align: center;  
    }

    .priceOfTrainer .info{
        width: 90%;
        text-align: center;
    }

    .contact-icons{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-icons .icon{
        display: flex;
        flex-direction: row;
        width: 70%;
        justify-content: center;
        margin-bottom: 1.25vh;
    }

    
    .contact-icons .icon img{
        margin-right: 1em;
        margin-bottom: 0vh;
    }

    footer{
        height: fit-content;
        padding-block: 5vh;
    }
    
    .logo-footer{
        width: 7em;
    }

    .footer-underline{
        width: 17em;
        height: .2em;
    }
    
    .copyright{
        text-decoration: none;
        font-size: 1em;
        color: #fff;
    }
}