/* @group Site nav
------------------------------------ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-site-nav);
    padding: 1.3rem 0 0;
    pointer-events: none;
}
.site-nav a,
.site-nav button {
    pointer-events: all;
}
.site-nav a:hover {
    color: var(--crema-claro);
}
.site-nav .col-logo a {
    text-decoration: none;
}
.site-nav .col-bttns {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    column-gap: .5rem;
}
.site-nav button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    border-radius: 8px;
    background-color: var(--marron, #54514A);
    box-shadow: 0px 4px 8px -2px rgba(65, 75, 90, 0.20), 0px 2px 4px -2px rgba(65, 75, 90, 0.20);
}
.site-nav .check {
    color: var(--dorado);
    font-family: var(--font-pragmatica);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: normal;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.site-nav .burguer {
    width: 5rem;
}
.site-nav .icon-burguer-menu {
    color: var(--dorado);
    font-size: .8rem;
}
.site-nav .icon-main-logo {
    font-size: 3.7rem;
    color: var(--dorado);
}
@media only screen
and (min-width : 961px) {
    .site-nav {
        padding: 3.1rem 0 0;
    }
    .site-nav :is(.col-logo, .col-bttns, .col-bttn-menu) {
        flex: 0 1 33%;
    }
    .site-nav .row.full-width {
        padding-inline: 3rem;
    }
    .site-nav .col-logo {
        text-align: center;
    }
    .site-nav .check {
        padding: 0 3rem;
        color: var(--crema-claro);
    }
    .site-nav .icon-main-logo {
        font-size: 5rem;
    }

    /* HOVERS */
    .site-nav .check:hover {
        background-color: var(--dorado) !important;
        color: var(--crema-claro) !important;
    }
    .site-nav .burguer:hover {
        background-color: var(--dorado) !important;
    }
    .site-nav .burguer:hover .icon-burguer-menu,
    .site-nav .burguer:hover .icon-burguer-menu::before {
        color: var(--crema-claro) !important;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .site-nav .check {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--marron);
        height: 6.4rem;
        border-radius: 0;
    }
    .site-nav .row {
        padding: 0 1.6rem;
    }
    .site-nav :is(.col-logo, .col-bttn-menu) {
        flex: 0 1 50%;
        padding: 0;
    }
    .site-nav .col-logo {
        order: -1;
    }
    .site-nav .col-bttn-menu {
        text-align: right;
    }
    .site-nav .col-bttns {
        flex: 0;
    }
}

/* @end */


/* @group Popup form
------------------------------------ */
.popup-form {
    background-color: var(--marron);
    z-index: var(--z-index-modal);
    width: 100%;
    max-width: 51.4rem;
    position: fixed;
    height: 100%;
    min-height: 100vh;
    right: 0;
    top: 0;
    transform: translate3d(100%,0,0);
    transition: transform .7s;
}
[data-popup-form="show"] .popup-form {
    transform: translate3d(0, 0, 0);
}
.popup-form .close-popup-form {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.popup-form .icon-close {
    color: var(--dorado);
    font-size: 2.4rem;
}
.popup-form__container {
    height: 100%;
    overflow-y: auto;
    padding: 14.4rem 1.6rem 11.2rem;
}
.popup-form__container iframe {
    width: 100%;
    height: calc(100vh - 20rem);
}
.popup-form__container p {
    color: var(--white);
}

@media only screen
and (min-width : 961px) {
    .popup-form .close-popup-form {
        top: 3.2rem;
        left: auto;
        right: 2.5rem;
        transform: none;
    }
    .popup-form__container {
        padding: 7.6rem 4rem 11.2rem;
    }      
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */


/* @group Fixed menu
------------------------------------ */
.fixed-menu {
    background-color: var(--marron);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-index-modal);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    transform: translate3d(100%, 0, 0);
    transition: transform .7s;
}
[data-fixed-menu="show"] .fixed-menu {
    transform: translate3d(0, 0, 0);
}
.fixed-menu .col-36-36 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fixed-menu .logo-container {
    text-align: center;
    display: inline-block;
    margin: 4.4rem auto 6.2rem;
}
.fixed-menu .logo-container img {
    display: inline-block;
    width: auto;
    height: 10.2rem;
}
.fixed-menu .bttn-close-menu {
    cursor: pointer;
}
.fixed-menu .bttn-close-menu i {
    color: var(--crema-claro);
    font-size: 3.2rem;
}
.fixed-menu .bttn-close-menu {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2.7rem 2.5rem;
}
/* BIG MENU */
.fixed-menu .big-menu {
    position: relative;
    padding: 0 0 3rem;
}
.fixed-menu .big-menu::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 18.5rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: var(--white);
}
.fixed-menu .big-menu li {
    text-align: center;
}
.fixed-menu .big-menu li:not(:last-child) {
    margin: 0 0 1.6rem;
}
.fixed-menu .big-menu a {
    font-family: var(--font-pragmatica);
    font-size: 2.2rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 154%;
    text-transform: uppercase;
}
/* SMALL MENU */
.fixed-menu .small-menu {
    padding: 3rem 0;
    border-bottom: 1px solid var(--fondo);
}
.fixed-menu .small-menu li {
    text-align: center;
}
.fixed-menu .small-menu li:not(:last-child) {
    margin: 0 0 1.6rem;
}
.fixed-menu .small-menu a {
    font-family: var(--font-pragmatica);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 150%;
    letter-spacing: .05em;
    text-transform: uppercase;
}
/* LANGUAGES */
.fixed-menu .languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 0 3rem 7rem;
}
.fixed-menu .languages a {
    text-align: center;
    font-family: var(--font-pragmatica);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: normal;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--fondo);
}
/* SOCIAL MEDIA */
.fixed-menu .social-media {
    margin: 0 auto;
    padding: 8.3rem 3rem 6rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fixed-menu .social-media i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.fixed-menu .social-media i::before {
    color: var(--dorado);
}
/* SITE NAVIGATION */
.fixed-menu .site-navigation {
    padding: 3.5rem 0 4.75rem;
    border-bottom: 1px solid var(--fondo);
}
.fixed-menu .site-navigation li {
    text-align: center;
}
.fixed-menu .site-navigation li:not(:last-child) {
    margin: 0 0 4rem;
}
.fixed-menu .site-navigation a {
    font-family: var(--font-pragmatica);
    font-size: 2.1rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 133.333%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
/* CONTACT-LINKS */
.fixed-menu .left-bottom {
    flex: 0 1 100%;
}
.fixed-menu .left-bottom .bttns-wrapper {
    padding: 4.8rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}
.fixed-menu .left-bottom .bttns-wrapper .bttn {
    flex: 0 1 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    line-height: 1.5em;
    letter-spacing: .05em;
}
.fixed-menu .left-bottom .bttns-wrapper .bttn i {
    display: inline-block;
}
.fixed-menu .left-bottom .bttns-wrapper .bttn .icon-phone::before {
    content: url('../../imgs/globals/icon-phone.svg');
}
.fixed-menu .left-bottom .bttns-wrapper .bttn .icon-user::before {
    content: url('../../imgs/globals/icon-user.svg');
}
.fixed-menu .contact-links li {
    text-align: center;
}
.fixed-menu .contact-links li:not(:last-child) {
    margin-bottom: 1.6rem;
}
.fixed-menu .contact-links a {
    font-family: var(--font-pragmatica);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 171%;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.fixed-menu .contact-links a:hover {
    color: var(--dorado);
    opacity: 1;
}
/* RESET STYLES ITEMS */
.fixed-menu ul {
    padding: 0;
}
.fixed-menu li::before {
    content: none!important;
}
.fixed-menu a,
.fixed-menu a i::before {
    text-decoration: none;
    color: var(--soft-cream);
}
@media only screen
and (min-width : 961px) {
    .fixed-menu {
        width: 33vw;
        transform: translate3d(-100%, 0, 0);
    }
    .fixed-menu .row {
        height: 100%;
    }
    /* SCROLL BAR */
    .fixed-menu .row::-webkit-scrollbar {
        width: 1.2rem;
        height: 1.2rem;
    }
    .fixed-menu .row::-webkit-scrollbar-thumb {
        background-color: var(--marron);
    }
    .fixed-menu .row::-webkit-scrollbar-thumb:hover {
        background-color: var(--soft-cream);
    }
    .fixed-menu .row::-webkit-scrollbar-track {
        background-color: var(--fondo);
    }
    /* CLOSE */
    .fixed-menu .bttn-close-menu {
        margin: 3.2rem 2.6rem 2.6rem;
    }
    /* GRALES */
    .fixed-menu .col-36-36 {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 9.1rem;
        padding-left: 12.2rem;
        padding-bottom: 3rem;
    }
    .fixed-menu .left {
        flex: 0 1 80%;
    }
    .fixed-menu .center {
        flex: 0 1 100%;
    }
    .fixed-menu .right {
        position: absolute;
        top: clamp(1rem, 15vh, 14rem);
        right: 3rem;    
    }
    .fixed-menu .big-small-menu {
        max-height: 55vh;
        overflow-y: auto;
    }
    .fixed-menu .big-small-menu::-webkit-scrollbar {
        width: 3px;
    }
    .fixed-menu .big-small-menu::-webkit-scrollbar-track {
        background-color: var(--dorado);
        border-radius: 0px;
    }
    .fixed-menu .big-small-menu::-webkit-scrollbar-thumb {
        background: var(--crema-claro); 
        border-radius: 0px;
    }
    /* BIG MENU */
    .fixed-menu .big-menu {
        padding: 0 0 clamp(1rem, 3.5vh, 3.3rem);
    }
    .fixed-menu .big-menu::before {
        width: 19.8rem;
        background-color: var(--crema-claro);
        left: 0;
        transform: none;
    }
    .fixed-menu .big-menu li {
        text-align: left;
    }
    .fixed-menu .big-menu li:not(:last-child) {
        margin: 0 0 clamp(1rem, 1.5vh, 1.6rem);
    }
    /* SMALL MENU */
    .fixed-menu .small-menu {
        border: 0;
        padding: clamp(1rem, 3.5vh, 3.3rem) 0;
    }
    .fixed-menu .small-menu li {
        text-align: left;
    }
    .fixed-menu .small-menu li:not(:last-child) {
        margin: 0 0 clamp(1rem, 1.5vh, 1.6rem);
    }
    /* CONTACT-LINKS */
    .fixed-menu .contact-menu {
        position: relative;
        padding: clamp(1rem, 3.5vh, 3.3rem) 0 0;
    }
    .fixed-menu .contact-menu::before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 19.8rem;
        top: 0;
        left: 0;
        height: 1px;
        background-color: var(--crema-claro);
    }
    .fixed-menu .left-bottom {
        padding-right: 2rem;
    }
    .fixed-menu .left-bottom .bttns-wrapper {
        padding: clamp(1rem, 3.5vh, 3.3rem) 0;
        gap: clamp(1rem, 1.8vh, 1.4rem);
    }
    .fixed-menu .left-bottom .bttns-wrapper .bttn {
        flex: 0 1 calc(50% - 1rem);
        width: fit-content;
        max-width: fit-content;
        white-space: nowrap;
        padding-block: 1.25rem;
        padding-inline: 1.6rem 2.4rem;
    }
    .fixed-menu .left-bottom .bttns-wrapper .bttn:hover .icon-phone::before {
        content: url('../../imgs/globals/icon-phone-white.svg');
    }
    .fixed-menu .left-bottom .bttns-wrapper .bttn:hover .icon-user::before {
        content: url('../../imgs/globals/icon-user-white.svg');
    }
    .fixed-menu .contact-links li {
        text-align: left;
    }
    .fixed-menu .contact-links li:not(:last-child) {
        margin: 0 0 clamp(1rem, 1.5vh, 1.6rem);
    }
    /* LANGUAGES */
    .fixed-menu .languages {
        display: none;
        padding: 0;
    }
    /* SOCIAL MEDIA */
    .fixed-menu .social-media {
        flex-direction: column;
        justify-content: center;
        gap: 5rem;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    .fixed-menu .social-media i {
        font-size: 1.8rem;
    }
    .fixed-menu .social-media i.icon-youtube {
        font-size: 1.5rem;
    }
    /* SITE NAVIGATION */
    .fixed-menu .site-navigation {
        padding: 0;
        margin: 0 0 3.6rem;
        border: 0;
    }
    .fixed-menu .site-navigation li {
        text-align: left;
    }
    .fixed-menu .site-navigation li:not(:last-child) {
        margin: 0 0 1rem;
    }
    .fixed-menu .site-navigation a {
        font-size: 2.8rem;
        line-height: 128.571%;
    }


    /* Grals hover */
    .fixed-menu .big-menu a,
    .fixed-menu .small-menu a,
    .fixed-menu .site-navigation a {
        position: relative;
        color: var(--crema-claro);
    }
    .fixed-menu .big-menu a::before,
    .fixed-menu .small-menu a::before,
    .fixed-menu .site-navigation a::before {
        content: "";
        width: 100%;
        height: 1px;
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: 1px;
        background-color: var(--white);
        opacity: 0;
        transition: all .7s;
    }
    .fixed-menu .big-menu a:hover::before,
    .fixed-menu .small-menu a:hover::before,
    .fixed-menu .site-navigation a:hover::before {
        opacity: 1;
    }

    .fixed-menu .contact-links a:hover,
    .fixed-menu .social-media a:hover,
    .fixed-menu .languages a:hover {
        opacity: .7;
    }

    /* DINAMIC VALUES */
    .fixed-menu .col-36-36 {
        padding-top: clamp(1rem, 14.5vh, 14rem);
        padding-left: 3rem;
        flex-wrap: wrap;
    }
    .fixed-menu .big-menu {
        /* padding: 0 0 clamp(1rem, 7.7vh, 6.8rem); */
    }
    .fixed-menu .big-menu a {
        /* font-size: clamp(1rem, 6.5vh, 5.8rem); */
    }
    .fixed-menu .big-menu li:not(:last-child) {
        /* margin: 0 0 clamp(1rem, 3.75vh, 3.3rem); */
    }
    .fixed-menu .small-menu {
        /* padding: clamp(1rem, 5.3vh, 4.7rem) 0 0; */
    }
    .fixed-menu .small-menu li:not(:last-child) {
        /* margin: 0 0 clamp(1rem, 1.13vh, 1rem); */
    }
    .fixed-menu .small-menu a {
        /* font-size: clamp(1rem, 4.7vh, 4.2rem); */
    }
    .fixed-menu .contact-links ul {
        /* top: clamp(1rem, 5.8vh, 5.15rem); */
    }
    .fixed-menu .contact-links a {
        /* font-size: clamp(1rem, 1.5vh, 1.4rem); */
    }
    .fixed-menu .site-navigation li:not(:last-child) {
        margin: 0 0 clamp(1rem, 1.13vh, 1rem);
    }
    .fixed-menu .site-navigation a {
        font-size: clamp(1rem, 3.1vh, 2.8rem);
    }
    .fixed-menu .site-navigation {
        font-size: clamp(1rem, 4vh, 3.6rem);
    }
    .fixed-menu .bttn-close-menu {
        /* margin-top: clamp(1rem, 5.8vh, 5.15rem); */
    }
    .fixed-menu .social-media i {
        /* width: clamp(1rem, 2.2vh, 2rem);
        font-size: clamp(1rem, 2.2vh, 2rem); */
    }
    .fixed-menu .languages a {
        font-size: clamp(1rem, 1.5vh, 1.4rem);
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .fixed-menu .row {
        height: 100%;
        overflow-y: auto;
        padding-bottom: 10vh;
    }
    .fixed-menu .col-36-36 {
        padding: 0;
    }
    .fixed-menu .left {
        text-align: center;
        order: 0;
    }
    .fixed-menu .left-bottom {
        order: 1;
        padding-inline: 3rem;
    }
    .fixed-menu .right {
        order: 2;
    }
    .fixed-menu .center {
        order: 3;
    }
    .fixed-menu .big-menu a {
        color: var(--fondo);
    }
    .fixed-menu .small-menu a {
        color: var(--white);
    }
    .fixed-menu .contact-links a {
        color: var(--crema-claro);
    }
    .fixed-menu .contact-links a::after {
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e904";
        color: var(--crema-claro);
        font-size: .8rem;
        margin-left: .75rem;
    }
    .fixed-menu .contact-menu {
        padding: 3rem 3rem 0;
    }
    .fixed-menu .left-bottom .bttns-wrapper :is(li, .bttn) {
        width: 100%;
    }

    /* SOCIAL MEDIA ICONS */
    .fixed-menu .social-media .icon-facebook { font-size: 3rem; }
    .fixed-menu .social-media .icon-instagram { font-size: 2.7rem; }
    .fixed-menu .social-media .icon-youtube { font-size: 2.1rem; }
    .fixed-menu .social-media .icon-linkedin { font-size: 2.7rem; }
    .fixed-menu .social-media .icon-x{ font-size: 2.7rem; }
}

/* @end */

/* .hideScroll {
    height: 100%;
    overflow: hidden;
} */