html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

@font-face {
    font-family:'nexaHeavy';
    src:url("./assets/fonts/Nexa-Heavy.ttf");
}

body {
    margin: 0;
    padding: 0;
    font-family: nexaHeavy, "Roboto", "Helvetica Neue", "Helvetica",  "Arial";
    background-color: #303030;
}

.flex-column {
    flex-direction: column;
}

.mobile {
    display: none;
}

.desktop {
    display: flex;
}

@media(max-width: 640px) {
    .mobile {
        display: flex;
    }
    
    .desktop {
        display: none;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100vw;
    height: 60px;
    background-color: #1B1B1B;
    transition: all .5s ease;
}

header.visible {
    top: 0;
}

header .logo {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    max-width: 70px;
    height: auto;
    margin: 0 3%;
    cursor: pointer;
}

header menu {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 3%;
}

header menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    height: 60px;
    padding: 0 20px;
    transition: all .5s ease;
}

header menu a:hover {
    border-bottom: 5px solid #D1D1D1;
    color: #D1D1D1;
    height: 55px;
}

header .social-media {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .social-media a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    padding: 7px;
    font-size: 30px;
}

header .social-media a:hover {
    color: #D1D1D1;
}

header .social-media a:hover {
    color: #D1D1D1;
}

@media(max-width: 640px) {
    header {
        display: none;
    }

    #menu-toggle {
        position: fixed;
        top: 10px;
        right: 10px;
        color: white;
        border: none;
        background: none;
        font-size: 25px;
        cursor: pointer;
        z-index: 999;
    }

    #mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    #mobile-menu .logo {
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #mobile-menu img {
        max-width: 90px;
        height: auto;
        margin: 0 3%;
        cursor: pointer;
    }

    #mobile-menu menu {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #mobile-menu a {
        color: white;
        font-size: 1.7em;
        margin: 20px;
        text-decoration: none;
    }

    #mobile-menu .social-media {
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mobile-menu .social-media a {
        font-size: 2em;
    }

    #mobile-menu.open {
        display: flex;
    }
}

#home {
    background-image: url("assets/banner-home-desktop.jpg");
    background-color: #cccccc;
    height: calc(100vh - 60px);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
}


#home .home-content {
    height: 25%;
    padding: 1% 19% 0 19%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#home .home-content .home-content-logo {
    height: 100%;
    margin: 0 30px;
}

#home .home-content #home-content-text {
    color: #303030;
    font-size: 1.6em;
    text-align: justify;
    margin: 0 30px;
}

#home .home-footer {
    padding: 0 10% 2% 10%;
}

#home .home-footer .divider-line {
    height: 8px;
    color: white;
    background-color: white;
    border: none;
}

#home .home-footer .home-infos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
}

#home .home-footer .phone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
}

#home .home-footer i, #home .home-footer .social-media a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    padding: 7px;
    font-size: 36px;
}

@media(max-width: 1536px) {   
    #home .home-content {
        padding: 0 8% 0 8%;
    }
    
    #home .home-content .home-content-logo {
        height: 80%;
    }
    
    #home .home-content #home-content-text {
        font-size: 1.2em;
    }
}

@media(max-width: 640px) {
    #home {
        background-image: url("assets/banner-home-mobile.JPG");
        padding-top: 30px;
        height: calc(100vh - 30px);
    }

    #home .home-content {
        height: 30%;
        padding: 1% 4% 0 4%;
        flex-direction: column;
    }

    #home .home-content .home-content-logo {
        height: 60%;
    }
    
    #home .home-content #home-content-text {
        font-size: 0.9em;
        margin: 0 10px;
    }

    #home .home-footer .divider-line {
        height: 5px;
    }

    #home .home-footer i, #home .home-footer .social-media a  {
        font-size: 20px;
    }

    #home .home-footer span {
        font-size: 0.9em;
    }
}

.background {
    display: flex;
    box-sizing: border-box;
    margin: 0;
    padding: 60px 0;
    background-color: #D1D1D1;
    max-width: 100%;
    width: 100vw;
}

.dark {
    background-color: #303030;
}

@media(max-width: 640px) {
    .background {
        flex-direction: column;
    }
}

#members-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    margin: 0;
    margin-left: 50px;
    font-size: 3em;
}

#members .title {
    color: #303030;
}

@media(max-width: 640px) {
    #members {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .title {
        margin: 0;
        margin-bottom: 50px;
    }
}

#member {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 10px;
    width: 50%;
}

@media(max-width: 640px) {
    #member {
        flex-direction: column;
        margin: 0;
        margin-bottom: 20px;
        width: 80%;
    }

    #member div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.member-name {
    margin: 0;
    font-size: 2em;
    color: #303030;
}

.member-photo {
    border-radius: 50%;
    width: 250px;
    height: auto;
    margin: 0 50px
}

@media(max-width: 640px) {
    .member-photo {
        width: 200px;
        height: auto;
        margin: 20px;
    }
}

.member-text {
    margin-bottom: 0;
    text-align: justify;
    color: #303030;
}

#videos {
    align-items: center;
}

.videos-area {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 90%;
    padding: 20px;
}

.video-container {
    position: relative;
    width: 30%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    margin: 10px;
    box-sizing: border-box;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

@media(max-width: 640px) {
    .video-container {
        width: 100%;
        margin: 10px 0;
    }
}

#btn-view-more {
    background-color: transparent;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D1D1;
    border: 2px solid #D1D1D1;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
}

#link-view-more {
    text-decoration: none;
}

#btn-view-more:hover {
    background-color: #D1D1D1;
    color: #303030;
}

#btn-view-more .fa-youtube-play {
    font-size: 30px;
    margin-right: 8px;
}