
/*===================== STYLE GLOBAL OF WEBSITE ===========================*/
:root{
    --color-white : #ffffff ;    
    --color-black : #000000 ;  
    --color-primary : #9F7A33;  
    --color-secundary : #16253E;  
    --color-error: #B32021;
    --color-error-alt: #9A1915;
}

body, html {
    scroll-behavior: smooth;
    /* background: #f7f8fb; */
    background: #000;
    color: var(--color-white);
}

/*===================== HEADER OF WEBSITE ===========================*/

header {
    display: flex;
    width: 100%;
    height: 8vw;
    padding: 0 5vw;
    background: transparent;
    transition: all .5s ease-in-out;
}
header.active {
    height: 4vw;
    background: rgb(0 0 0 / 81%);
    color: #16253E;
    backdrop-filter: blur(10px);
    transition: all .5s ease-in-out;
}
header .web {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    width: 100%;
}
header .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    transition: all .5s ease-in-out;
}
header .list-link li {
    list-style: none;   
    font-size: var(--p-size);
    font-family: var(--font-name);
    font-weight: 500;
    color: var(--color-white);
    transition: all .5s ease-in-out;
}
header .list-link li a {
    text-decoration: none;
    transition: all .5s ease-in-out;
}
header .list-link li:hover a {
    color: #a8c9ff;
    transition: all .5s ease-in-out;
}
header .list-link li a.active {
    color: #a8c9ff;
}

header .img-logo {
    display: flex;
    width: 5.3854vw;
    height: auto;
    transition: all .5s ease-in-out;
}
header .img-logo.mobile {
    display: none;
}
header.active .img-logo {
    width: 3.354vw;
}
header .img-logo img {
    width: 100%;
    height: 100%;
    border-radius: var(--10px);
    object-fit: contain;
    transition: all .5s ease-in-out;
}

header .mobile-nav ,
header .icon-toggle {
    display: none;
}

/*===================== FOOTER OF WEBSITE ===========================*/


footer {
    display: flex;
    flex-direction: column;
}

footer .content-bottom {
    display: flex;
    justify-content: space-between;
    padding: 1.0416vw var(--title-size);
    background: #fff;
}
footer .content-bottom .left ,
footer .content-bottom .right {
    display: flex;
    gap: 3.281vw;
    align-items: center;
}
footer .content-bottom .left .img-logo {
    width: 7.9947vw;
    height: 2.4328vw;
}
footer .content-bottom .left .img-logo img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: contain;
}
footer .content-bottom .left .text-copyright ,
footer .content-bottom .right .text-conditions ,
footer .content-bottom .right .text-mentions {
    color: black;
    font-family: var(--font-name);
    font-size: var(--p-size);
    font-weight: 400;
    line-height: 1.718vw;
    text-align: left;
    text-wrap: nowrap;
}


/*===================== RESPONSIVE OF HEADER__WEBSITE ===========================*/

@media (max-width:768px) {
    
    header.active {
        height: 16vw;
        background: rgb(0 0 0 / 81%);
        color: white;
    }
    header .web {
        display: none;
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 17vw;
        background: #000;
    }
    header .img-logo.mobile {
        display: flex;
    }
    header .img-logo {
        display: flex;
        width: 15.3854vw;
    }
    header.active .img-logo {
        width: 13.354vw;
    }
    header .icon-toggle {
        display: block;
    }
    header .icon-toggle .icon-bars {
        font-size: 7vw;
        display: none;
    }
    header .icon-toggle .icon-bars.active {
        display: block;
    }
    header .icon-toggle .icon-bars.close.active {
        z-index: 4;
        position: relative;
    }

    .content a.btn-action {
        padding: 3vw 2vw;
        font-size: var(--h5-size);
    }

    header .mobile-nav {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        background: #3e4b88a2;
        backdrop-filter: blur(20px);
        height: 100vh;
        width: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 11.5vw;
        transition: all .5s ease-in-out;
    }
    header .mobile-nav.active {
        display: flex;
        transition: all .5s ease-in-out;
    }
   
    header .mobile-nav li {
        list-style-type: none;
        font-size: 6vw;
        font-family: var(--font-name);
        font-weight: 300;
        color: var(--color-white);
        transition: all .5s ease-in-out;
    }
    header .mobile-nav li a {
        text-decoration: none;
        transition: all .5s ease-in-out;
    }
    header .mobile-nav li:hover a {
        color: #a8c9ff;
        transition: all .5s ease-in-out;
    }
    header .mobile-nav li a.active {
        color: #a8c9ff;
    }

    footer {
        /* display: none; */
        height: auto;
    }
    footer .content-bottom {
        flex-direction: column;
        justify-content: space-between;
        gap: 5vw;
        padding: 6.0416vw 5vw;
    }
    footer .content-bottom .left .img-logo {
        width: 23.9947vw;
        height: 18.4328vw;
    }

    footer .content-bottom .left .text-copyright, 
    footer .content-bottom .right .text-conditions, 
    footer .content-bottom .right .text-mentions {
        font-family: var(--font-name);
        font-size: 5vw;

        line-height: normal;
        text-wrap: wrap;
        text-align: start;
    }
   
    /* footer .content-bottom .left, * */
    footer .content-bottom .right {
        gap: 6.281vw;
        flex-direction: column;
        align-items: flex-start;
    }

}
