
/*===================== 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;
}

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

header {
    height: 3.6458vw;
    background: transparent;
    padding: 0 5.1562vw;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s ease-in-out
}
header.active {
    /* background: var(--color-secundary); */
    background: linear-gradient(45deg, #412415, #bc8435);
    backdrop-filter: blur(25px);
    transition: all .5s ease-in-out
}

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

header .img-logo {
    display: flex;
    width: 8.3854vw;
    height: 2.5515vw;
}
header .img-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.968vw;
}
header .list-link li {
    list-style-type: none;
}
header .list-link li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header .list-link li a {
    color: white;
    transition: all .5s ease-in-out;
}
header .list-link li a:hover,
header .list-link li a.active {
    color: var(--color-primary);
    transition: all .5s ease-in-out;
}
header .list-link li a span.text {
    font-size: var(--p-size-alt);
    font-weight: 700;
    line-height: 1.25vw;
    font-family: var(--font-name);
    text-align: center;
}
header .list-link li a .img-style {
    width: 0.8854vw;
    height: 0.468vw;
    position: absolute;
    /* top: 2.015vw; */
    top: 0vw;
}
header .list-link li a .img-style img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .right {
    display: flex;
    align-items: center;
    gap: 2.03125vw;
    color: white;
}
header .right form.input-select {
    cursor: pointer;
    padding: 0vw;
    display: flex;
    align-items: center;
    gap: 0.52083vw;
}
header .right form.input-select .custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
header .right form.input-select .custom-dropdown .selected-language {
    text-align: start;
    padding: .1vw;
    background: transparent;
    border: 1px solid transparent;
    width: -webkit-fill-available;
    transition: all .5s ease;
    font-size: 0.83333vw;
}
header .right form.input-select .custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 10;
    left: .31vw;
    top: 3vw;
    margin: -.51vw 0vw;
    padding: .41vw 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0px 7px 7px #0000003d;
}

header .right form.input-select .custom-dropdown .dropdown-option {
    padding: 1vw 6vw 1vw 1vw;
    /* border-radius: 6px; */
    cursor: pointer;
    color: var(--color-secundary);
    font-weight: 700;
    font-size: 1.1vw;
    transition: all .5s ease-in-out;
}
header .right form.input-select .custom-dropdown .dropdown-options.show {
    display: block;
    transition: all .5s ease-in-out;
}
header .right form.input-select .custom-dropdown .dropdown-option:hover,
header .right form.input-select .custom-dropdown .dropdown-option.active {
    background-color: #efefef;
    color: var(--color-primary);
    transition: all .5s ease-in-out;
}

header .right form.input-select .icon-chevron {
    width: 1vw;
    height: 3vw;
}
header .right form.input-select .icon-chevron img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .right .social-network {
    display: flex;
    gap: 0.4687vw;
    transition: all .5s ease-in-out;
}
header .right .social-network .icon-network,
header .right .social-network .icon-network svg {
    width: auto;
    height: 1.5625vw;
    transition: all .5s ease-in-out;
}
header .right .social-network .icon-network img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .5s ease-in-out;
}

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

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

footer .content-top {
    display: flex;
    flex-direction: column;
    gap: 0.36458vw;
    width: 100%;
    padding: 5.2083vw var(--title-size);
    background: var(--color-secundary);
}

footer .content-top .head {
    display: flex;
    gap: 4.4963vw;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .content-top .head .one-details-line {
    display: flex;
    flex-direction: column;
    gap: 2.0833vw;
    justify-content: flex-start;
    align-items: flex-start;
}
footer .content-top .head .one-details-line title {
    display: block;
    color: white;
    font-family: var(--font-name);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 2.4479vw;
    text-align: left;
    text-transform: uppercase;
}
footer .content-top .head .one-details-line .list-links {
    display: flex;
    flex-direction: column;
    gap: 1.1458vw;
    justify-content: flex-start;
    align-items: flex-start;
}
footer .content-top .head .one-details-line .list-links .link-style {
    font-family: var(--font-name);
    font-size: var(--p-size);
    font-weight: 400;
    line-height: 1.71875vw;
    text-align: center;
    color: white;
    transition: all .5s ease-in-out;
}
footer .content-top .head .one-details-line .list-links .link-style:hover {
    color: var(--color-primary);
    transition: all .5s ease-in-out;
}
footer .content-top .head .one-details-line .list-links .text {
    font-family: var(--font-name);
    font-size: var(--p-size);
    font-weight: 400;
    line-height: 1.7187vw;
    text-align: left;
    color: white;
}

footer .content-top .head .one-details-line .list-links .list-social-media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.468vw;
}
footer .content-top .head .one-details-line .list-links .list-social-media .link-style,
footer .content-top .head .one-details-line .list-links .list-social-media .link-style svg {
    height: 2.1354vw;
    width: auto;
}
footer .content-top .head .one-details-line .list-links .list-social-media .link-style svg {
    filter: invert(41%) sepia(72%) saturate(420%) hue-rotate(1deg) brightness(102%) contrast(87%);
}
footer .content-top .head .one-details-line .list-links .list-social-media .link-style img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(42%) sepia(6%) saturate(3933%) hue-rotate(1deg) brightness(114%) contrast(97%);
    object-fit: cover;
}

footer .content-top .head .one-details-line .form-newsletter {
    display: flex;
    flex-direction: column;
    gap: 2.08vw;
    width: 34.2708vw;
}
footer .content-top .head .one-details-line .form-newsletter .content-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid white;
    padding-bottom: 0.88541vw;
    width: 100%;
}

footer .content-top .head .one-details-line .form-newsletter input {
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0.88541vw;
    color: white;
    font-family: var(--font-name);
    
    font-size: var(--p-size);
    font-weight: 400;
    line-height: 1.7187vw;
    text-align: left;
}
footer .content-top .head .one-details-line .form-newsletter input::placeholder {
    color: white;
    font-size: var(--p-size);
    font-weight: 400;
    line-height: 1.7187vw;
    text-align: left;
}
footer .content-top .head .one-details-line .form-newsletter .content-custom input {
    border-bottom: none;
    padding: 0 1vw 0 0;
}
footer .content-top .head .one-details-line .form-newsletter .content-custom button {
    background: var(--color-primary);
    color: white;
    padding: 0.8072vw 1.5625vw;
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
footer .content-top .head .one-details-line .form-newsletter .content-custom button:hover {
    background: white;
    color: var(--color-secundary);
    transition: all .5s ease-in-out;
}

footer .content-top .subhead {
    align-self: flex-end;
}
footer .content-top .subhead form.input-select {
    cursor: pointer;
    padding: 0vw;
    display: flex;
    align-items: center;
    gap: 0.52083vw;
}
footer .content-top .subhead form.input-select .custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
footer .content-top .subhead form.input-select .custom-dropdown .selected-language {
    text-align: start;
    padding: .1vw;
    background: transparent;
    color: white;
    border: 1px solid transparent;
    width: -webkit-fill-available;
    transition: all .5s ease;
    font-size: 0.83333vw;
}
footer .content-top .subhead form.input-select .custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 10;
    left: -6.69vw;
    top: -8vw;
    margin: -.51vw 0vw;
    padding: .41vw 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0px 7px 7px #0000003d;
}

footer .content-top .subhead form.input-select .custom-dropdown .dropdown-option {
    padding: 1vw 6vw 1vw 1vw;
    /* border-radius: 6px; */
    cursor: pointer;
    color: var(--color-secundary);
    font-weight: 700;
    font-size: 1.1vw;
    transition: all .5s ease-in-out;
}
footer .content-top .subhead form.input-select .custom-dropdown .dropdown-options.show {
    display: block;
    transition: all .5s ease-in-out;
}
footer .content-top .subhead form.input-select .custom-dropdown .dropdown-option:hover,
footer .content-top .subhead form.input-select .custom-dropdown .dropdown-option.active {
    background-color: #efefef;
    color: var(--color-primary);
    transition: all .5s ease-in-out;
}

footer .content-top .subhead form.input-select .icon-chevron {
    width: 1vw;
    height: 3vw;
}
footer .content-top .subhead form.input-select .icon-chevron img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .content-bottom {
    display: flex;
    justify-content: space-between;
    padding: 1.0416vw var(--title-size);
    background: #E8E9EC;
}
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: auto;
}
footer .content-bottom .left .img-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .content-bottom .left .text-copyright ,
footer .content-bottom .right .text-conditions ,
footer .content-bottom .right .text-mentions {
    color: var(--color-secundary);
    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 {
        height: 22.6458vw;
        transition: all .5s ease-in-out;
    }
    header .list-link,
    header .right {
        display: none;
    }
    header .img-logo {
        display: flex;
        width: 42.3854vw;
        height: auto;
    }

    header .icon-toggle {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    header .icon-toggle .icon-bars {
        display: none;
        width: 20vw;
        height: 20vw;
        color: var(--color-secundary);
    }
    header.active .icon-toggle .icon-bars {
        color: #ffffff;
    }
    header .icon-toggle .icon-bars.active {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 11;
    }
    header .icon-toggle .icon-bars i {
        font-size: 9vw;
    }
    
    header .mobile-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10vw;
        height: 100vh;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: #9f7a3370;
        backdrop-filter: blur(42px);
        transition: all .5s ease-in-out;

        visibility: hidden;
        opacity: 0; 
        transform: translateY(-20px);
    }
    header.active .mobile-nav.active {
        background: #9f7a33;
        visibility: visible; 
        opacity: 1;
        transform: translateY(0);
        transition: all .5s ease-in-out;
        z-index: 10;
    }
    
    header .mobile-nav.active {
        visibility: visible; 
        opacity: 1;
        transform: translateY(0);
        transition: all .5s ease-in-out;
        z-index: 10;
    }

    header .mobile-nav .list-link {
        display: flex;
        flex-direction: column;
        gap: 8vw;
    }
    header .mobile-nav .list-link li a span.text {
        font-size: 7vw;
        line-height: normal;
        font-weight: 700;
        transition: all .5s ease-in-out;
    }
    header .mobile-nav .list-link li a span.text:hover {
        color: var(--color-secundary);
        transition: all .5s ease-in-out;
    }
    header .mobile-nav .list-link li a .img-style {
        width: 4.8854vw;
        height: 4.468vw;
        position: absolute;
        top: 21.015vw;
    }

    header .mobile-nav .right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8vw;
    }
    header .right form.input-select {
        gap: 3.52083vw;
    }
    header .right form.input-select .icon-chevron {
        width: 25px;
        height: 25px;
    }
    header .mobile-nav .right form.input-select .custom-dropdown .selected-language {
        font-size: 7.83333vw;
    }
    header .right form.input-select .custom-dropdown .dropdown-options {
        left: .31vw;
        top: 13vw;
    }
    header .mobile-nav .right form.input-select .custom-dropdown .dropdown-option {
        padding: 4vw 23vw 4vw 3vw;
        font-size: 4.1vw;
    }

    header .mobile-nav .right .social-network {
        gap: 8.4687vw;
    }
    header .mobile-nav .right .social-network .icon-network,
    header .mobile-nav .right .social-network .icon-network svg {
        width: 8.5625vw;
        height: 8.5625vw;
    }

    footer .content-top {
        padding: 5.2083vw 21px;
        gap: 3.36458vw;
    }
    footer .content-top .head {
        flex-direction: column;
        gap: 6.4963vw;
    }
    footer .content-top .head .one-details-line {
        gap: 4.0833vw;
        width: 100%;
    }
    footer .content-top .head .one-details-line title {
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        width: 100%;
        text-align: center;
    }
    footer .content-top .head .one-details-line .list-links {
        width: 100%;
        gap: 4.1458vw;
    }
    footer .content-top .head .one-details-line .list-links .link-style {
        font-size: 15px;
        font-weight: 100;
        line-height: normal;
    }
    footer .content-top .head .one-details-line .list-links .text {
        font-size: 15px;
        line-height: 26px;
    }
    footer .content-top .head .one-details-line .list-links .list-social-media {
        gap: 3.468vw;
    }
    footer .content-top .head .one-details-line .list-links .list-social-media .link-style,
    footer .content-top .head .one-details-line .list-links .list-social-media .link-style svg {
        width: 9.1354vw;
        height: 9.083vw;
    }
    footer .content-top .head .one-details-line .form-newsletter {
        gap: 3.08vw;
        width: 100%;
    }
    footer .content-top .head .one-details-line .form-newsletter input {
        padding-bottom: 0.88541vw;
        font-size: 23px;
        line-height: 2.7187vw;
    }
    footer .content-top .head .one-details-line .form-newsletter .content-custom {
        flex-direction: column;
        gap: 5vw;
        align-items: flex-start;
        border-bottom: none;
        padding-bottom: 0.88541vw;
        width: 100%;
    }
    footer .content-top .head .one-details-line .form-newsletter .content-custom button {
        background: var(--color-primary);
        color: white;
        padding: 2.8072vw 6.5625vw;
        font-size: 20px;
    }
    footer .content-top .head .one-details-line .form-newsletter .content-custom input {
        border-bottom: 1px solid white;
        padding: 0;
        width: 100%;
        font-size: 22px;
        padding-bottom: 4px;
    }

    footer .content-top .subhead form.input-select .custom-dropdown .selected-language {
        padding: 1.1vw 2vw;
        font-size: 5.83333vw;
    }
    footer .content-top .subhead form.input-select .custom-dropdown .dropdown-option {
        padding: 4vw 11vw 4vw 5vw;
        font-weight: 700;
        font-size: 5.1vw;
    }
    footer .content-top .subhead form.input-select .custom-dropdown .dropdown-options {
        left: -5.69vw;
        top: -31vw;
    }
    footer .content-top .subhead form.input-select .icon-chevron {
        width: 4vw;
        height: 4vw;
    }

    footer .content-bottom {
        flex-direction: column;
        gap: 5vw;
        padding: 6.0416vw 5vw;
    }
    footer .content-bottom .left, 
    footer .content-bottom .right {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        gap: 5vw;
    }
    footer .content-bottom .left .img-logo {
        width: 45.9947vw;
        height: auto;
    }
    footer .content-bottom .left .text-copyright, 
    footer .content-bottom .right .text-conditions, 
    footer .content-bottom .right .text-mentions {
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
        text-wrap: pretty;
    }

}