/**
* Animations and Transitions
*/
@keyframes fade-In {
    0% {
        display: flex;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-Out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide-In {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-Out {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.no-show {
    display: none;
}

.animable.fade-in {
    animation: fade-In 1s forwards;
}

.animable.fade-out {
    animation: fade-Out 1s forwards;
}

/***
****  Pre - Header 
*/
.preheader {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    padding: 0rem 3rem;
}

    /* @media (max-width: 768px) {
  .preheader {
      display: none;

  }

} */

    /***
****  Pre-Header Left
*/

    .preheader .links_preheaderLeft,
    .preheader .links_preheaderLeft > a {
        padding: 0 var(--p-4) 0 var(--p-4);
        color: var(--gray-dark-7);
        text-decoration: none;
        justify-content: center;
        align-items: center;
        display: flex;
        font-size: 12px;
        font-family: var(--font-family-1);
        font-weight: var(--weight-bolder);
    }

    .preheader .links_preheaderLeft,
    .preheader .links_preheaderLeft {
        display: flex;
        width: 100%;
        justify-content: start;
    }

@media (max-width: 1155px) {
    .preheader {
        padding: var(--p-0);
    }

        .preheader .links_preheaderLeft {
            display: none;
        }

        .preheader .links_preheaderRight {
            justify-content: space-evenly !important;
        }

            .preheader .links_preheaderRight > a {
                width: 100%;
                padding: 0 var(--p-2) !important;
            }

                .preheader .links_preheaderRight > a svg {
                    width: 100%;
                }

    .menu .mobileBottomLinks .option {
        background-color: var(--brand-white);
    }

    header .submenuItems li div:has(img) {
        display: none;
    }
}

@media (min-width: 1156px) {
    .menu .mobileBottomLinks {
        display: none !important;
    }

    .submenu .submenuHead {
        display: none !important;
    }
}


@media (max-width: 768px) {
    .preheader .links_preheaderLeft {
        justify-content: center;
        padding: 0 .2rem 0 .2rem;
    }

        .preheader .links_preheaderLeft > a {
            border-right: 1px groove;
            padding: 0 .5rem 0 .5rem;
        }

            .preheader .links_preheaderLeft > a:last-child {
                border-right: none;
            }
}

/***
****  Pre-Header Right
*/
.preheader .links_preheaderRight > a {
    /* border-right: 1px solid var(--gray-dark-7); */
}

    .preheader .links_preheaderRight > a:last-child {
        border-right: none;
    }

.preheader .links_preheaderRight,
.preheader .links_preheaderRight > a {
    padding: 0 var(--p-4) 0 var(--p-4);
    color: var(--brand-white);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preheader .links_preheaderRight {
    display: flex;
    width: 100%;
    justify-content: end;
}

@media (max-width: 768px) {
    /* .preheader .links_preheaderRight {
      justify-content: center;
          padding: 0 .2rem 0 .2rem;
      display: none;

  } */

    /* .preheader .links_preheaderRight > a{
          /* border-right: 1px groove;
          padding: 0 .5rem 0 .5rem;
          flex: max-content; 
          
          } */

    /* .preheader .links_preheaderRight > a:last-child{
          border-right: none;
      } */

}


/**
* Header Animation
*/
.header-wrapper {
    display: flex;
    background-color: transparent !important;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1920px;
    justify-content: start;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .header-wrapper.submenu-active,
    .header-wrapper.scrolled {
        background-color: white !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    /* Suavizar la transición de colores del texto y los iconos */
    .header-wrapper a,
    .header-wrapper svg path {
        transition: color 0.3s ease-in-out, fill 0.3s ease-in-out;
    }

    .header-wrapper.scrolled a,
    .header-wrapper.scrolled svg path,
    .header-wrapper.submenu-active a,
    .header-wrapper.submenu-active svg path {
        color: black !important;
        fill: black !important;
    }

/* Suavizar el cambio de los iconos */
.menu .option.with-icon::after {
    transition: filter 0.3s ease-in-out;
}

.header-wrapper.scrolled .menu .option.with-icon::after,
.header-wrapper.submenu-active .menu .option.with-icon::after {
    filter: invert(0);
}




.left-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}

.icon-menu {
    display: none;
}

.right-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    /* padding-right: 3rem; */
    /* position: absolute;
  right: 0; */
}

.logotipo {
    font-weight: var(--weight-bold);
}

.logo {
    margin: 0;
}

.menu-wrapper {
    display: flex;
    align-items: center;
}

#link-logo {
    color: var(--gray-dark);
    text-decoration: none;
}

    #link-logo > img {
        /* font-weight: var(--weight-bold); */
        width: 147px;
        height: 18.92px;
    }

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 2rem; */

    list-style: none;
    margin: 0;
    padding: 0rem var(--p-4);
}

    .menu li {
        list-style: none;
    }


    /*.menu > li:nth-last-child(3) .option{
 color: var(--brand) !important; 
font-weight: var(--weight-bolder);
}*/

    .menu > li:nth-last-child(3) .option:hover {
        text-shadow: none;
    }

    .menu .title-mobile {
        display: none;
    }

    .menu .option {
        text-decoration: none;
        color: var(--brand-white);
        /* padding: .2rem; */
        transition: all .5s ease;
        padding: 0rem 1.5rem;
        font-family: var(--font-family-2);
        font-size: var(--text-lg);
        font-style: normal;
        font-weight: var(--weight-normal);
        line-height: 23.24px;
        letter-spacing: 0.32px;
        display: flex;
        gap: .4rem;
        justify-content: center;
    }

        .menu .option svg {
            width: 18px;
            height: 14px;
        }

        .menu .option path {
            fill: var(--gray-dark);
        }

        /* @media (max-width: 1327px) {
  .menu .option {
    padding: 0rem 1.5rem;
  }
} */ 
        /*ARROWS HEADER*/
        .menu .option.with-icon {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            user-select: none;
            position: relative;
        }

            .menu .option.with-icon::after {
                content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGRlIiBkPSJNMC4yNDc1MjEgMC4zMjE3MjVDMC41OTcxNTEgLTAuMDg0MDk1OCAxLjE4NzYzIC0wLjEwOTQwMiAxLjU2NjQgMC4yNjUyMDFMNyA1LjYzOTA5TDEyLjQzMzYgMC4yNjUyMDFDMTIuODEyNCAtMC4xMDk0MDIgMTMuNDAyOCAtMC4wODQwOTU4IDEzLjc1MjUgMC4zMjE3MjVDMTQuMTAyMSAwLjcyNzU0NSAxNC4wNzg1IDEuMzYwMiAxMy42OTk3IDEuNzM0ODFMNy42MzMwNiA3LjczNDhDNy4yNzU1NCA4LjA4ODQgNi43MjQ0NiA4LjA4ODQgNi4zNjY5NCA3LjczNDhMMC4zMDAyNzYgMS43MzQ4MUMtMC4wNzg0ODk0IDEuMzYwMiAtMC4xMDIxMDkgMC43Mjc1NDUgMC4yNDc1MjEgMC4zMjE3MjVaIiBmaWxsPSIjNDE0MTQxIi8+Cjwvc3ZnPgo=);
                width: 15px;
                transition: transform 0.3s ease-in-out, filter 0.2s ease-out;
                display: inline-flex;
                margin-left: 0.7rem;
                cursor: pointer;
                user-select: none;
                transform: rotate(0deg);
                filter: invert(1); 
            }

            .menu .option.with-icon.active::after {
                transform: rotate(180deg);
                content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj4KPGcgaWQ9Ikljb25zL0NoZXZyb24iPgo8cGF0aCBpZD0iSWNvbiAoU3Ryb2tlKSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGRlIiBkPSJNMTguNjgxOCAxMy41OTM5QzE4LjIzMjIgMTQuMTAxMiAxNy40NzMgMTQuMTMyOCAxNi45ODYxIDEzLjY2NDZMMTAgNi45NDcyM0wzLjAxMzk0IDEzLjY2NDZDMi41MjY5NiAxNC4xMzI4IDEuNzY3NzcgMTQuMTAxMiAxLjMxODI0IDEzLjU5MzlDMC44Njg3MTcgMTMuMDg2NyAwLjg5OTA4NiAxMi4yOTU4IDEuMzg2MDcgMTEuODI3Nkw5LjE4NjA2IDQuMzI3NTlDOS42NDU3NCAzLjg4NTYgMTAuMzU0MyAzLjg4NTYgMTAuODEzOSA0LjMyNzU5TDE4LjYxMzkgMTEuODI3NkMxOS4xMDA5IDEyLjI5NTggMTkuMTMxMyAxMy4wODY3IDE4LjY4MTggMTMuNTkzOVoiIGZpbGw9IiMwMDAwMDAiLz4KPC9nPgo8L3N2Zz4=');
            }

            .menu .option.with-icon:hover::after {
                transform: rotate(180deg);
            }

.header-wrapper.scrolled .menu .option.with-icon::after,
.header-wrapper.submenu-active .menu .option.with-icon::after {
    filter: invert(0);
}




        .menu .option:hover {
            border-bottom: 6px solid var(--brand-light);
            /*box-shadow: 0px -4px 0px var(--brand) inset;*/
            height: 100%;
            display: flex;
            /* background-color: var(--gray-dark-9);*/
            color: var(--gray-light-9);
            /* text-shadow: 0 0 1px var(--brand), 0 0 1px var(--brand), 0 0 1px var(--brand); */
            padding: 1.5rem;
            max-height: 4.6rem;
        }

    .menu .submenuItems .option:hover {
        box-shadow: none;
        height: 100%;
        display: flex;
        background-color: var(--gray-dark-9);
        color: var(--brand);
        text-shadow: none;
    }

    .menu .option.active {
        color: var(--gray-light-9);
        border-bottom: 4px solid var(--brand);
        /*box-shadow: 0px -4px 0px var(--brand) inset;*/
        padding: 1.5rem;
        /* font-weight: var(--weight-bolder); */
        /* text-shadow: 0 0 1px var(--brand), 0 0 1px var(--brand), 0 0 1px var(--brand); */
        /* background-color: var(--gray-dark-9); */
    }

        .menu .option.active svg {
            transition: .3s;
            transform: rotate(3.142rad);
        }

        .menu .option.active path {
            fill: var(--brand);
        }

.submenu-wrapper.relative {
    position: relative;
}

/*.submenu-wrapper{
  min-width: 8rem;
}*/
.submenu {
    position: absolute;
    width: 100%;
    /* margin: var(--p-4) 0; */
    padding: 0;
    background: var(--brand-white);
    left: -35%;
}

    .submenu .submenuContent {
        display: flex;
        justify-content: center;
    }

    .submenu.tabs {
        display: none;
        justify-content: center;
        padding: var(--p-4);
        left: 0;
        font-family: var(--montserrat);
        color: var(--gray-dark-1);
    }

.menu .option.active + .submenu.tabs {
    display: flex;
    gap: 1rem;
}

.menu .option.closing + .submenu.tabs {
    animation: fade-Out .5s forwards;
}

.submenu.tabs .option {
    padding: var(--p-4);
    /* transform: translateX(100%); */
}

.submenu.list {
    display: none;
    min-width: 100%;
    width: fit-content;
    justify-content: center;
    /*padding: 0rem 1rem; */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    left: 50%;
    transform: translateX(-50%);
}

.submenu.listAlternate {
    display: none;
    /* min-width: 14rem; */
    justify-content: center;
    padding: 2rem 0rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    left: 0;
}

.submenu.list li {
    padding: 0rem .8rem;
    color: var(--gray-dark-1);
}

.submenu.listAlternate li {
    padding: 0rem .5rem;
    color: var(--gray-dark-1);
}

.submenu.listAlternate ul {
    padding: 0rem 2.65rem;
}

a.link-submenu {
    text-decoration: none;
}

.submenu.listAlternate img {
    width: 100%;
    max-width: 196px;
    height: 122px;
    object-fit: cover;
}

.menu .option.active + .submenu.list {
    display: block;
    /* width: 100%; */
    z-index: calc(var(--header-layer) + 2);
}

.menu .option.active + .submenu.listAlternate {
    display: flex;
    width: 100%;
    z-index: calc(var(--header-layer) + 2);
}

.menu .option.closing + .submenu.list {
    animation: fade-Out .5s forwards;
}

.menu .option.closing + .submenu.listAlternate {
    animation: fade-Out .5s forwards;
}

.submenu.list li a {
    color: var(--gray-dark);
    text-decoration: none;
    padding: var(--p-4) 0.3rem;
    white-space: nowrap;
    font-family: var(--font-family-2);
    /*font-size: var(--text-md);*/
    font-weight: var(--weight-normal);
    letter-spacing: 0.32px;
}

.submenu.listAlternate li a,
.submenu.listAlternate li span {
    color: var(--gray-dark);
    text-decoration: none;
    padding: 0.8rem 0;
    font-family: var(--font-family-2);
    font-size: 1.25rem;
    font-weight: var(--weight-normal);
    letter-spacing: 0.32px;
}

.submenu .submenuTitle {
    padding: var(--p-2) 0rem;
    font-family: var(--font-family-2);
    font-weight: var(--weight-bolder);
    font-size: var(--text-sl);
    color: var(--gray-dark);
    text-transform: uppercase;
    text-decoration: none !important;
}

.submenu.list li a:hover {
    color: var(--gray-light-9);
}

.submenu.listAlternate li a:hover {
    color: var(--gray-light-9);
}

.submenu.list li a.only:hover {
    /*border: none;
  padding: 0.8rem 0;*/
}

.submenu.listAlternate li a.only:hover {
    border: none;
    padding: 0.8rem 0;
}

.submenu.list li a.only:hover {
    border: none;
    padding: var(--p-4) 0.3rem;
}

.menu .content-wrapper {
    display: none;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    height: 81vh;
    left: 0;
    margin: var(--p-4) 0;
    padding: var(--p-4) 3rem;
    background: var(--gray-dark-9);
    overflow-y: auto;
    opacity: 1;
}

.submenu.tabs .option.active + .content-wrapper {
    display: flex;
    /*animation: fade-In 1s forwards;
  animation: slide-In 1s forwards;  */
}

    .submenu.tabs .option.active + .content-wrapper .content-models {
        animation: fade-In 1s forwards;
    }

.submenu.tabs .option.closing + .content-wrapper .content-models {
    animation: fade-Out 1s forwards;
}

.submenu.tabs .option.closing + .content-wrapper {
    display: flex;
    animation: fade-Out 1s forwards;
}


.content-wrapper li {
    width: 25%;
}

.content-models {
    display: flex;
    flex-wrap: inherit;
    margin-bottom: 80px;
    padding: 4rem var(--p-4);
}

.card-wrapper {
    padding: 2rem var(--p-4);
    font-family: var(--font-family-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
    max-height: 35%;
    width: fit-content !important;
}

    .card-wrapper label {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background-color: var(--gray-light-1);
        border-radius: 4px;
        padding: 0 .5rem;
        font-family: var(--font-family-1);
        color: var(--brand-secundary);
        font-weight: var(--weight-normal);
        font-size: var(--paragraph-5);
    }

    .card-wrapper .model-area {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .card-wrapper .model-area img {
            margin-top: 0rem;
            width: 100%;
            max-width: 280px;
            margin-bottom: 1rem;
        }

    .card-wrapper a,
    .card-wrapper h3 {
        font-size: var(--text-md);
        font-family: var(--font-family-1);
        font-weight: var(--weight-bolder);
        color: var(--gray-dark-10);
        text-decoration: none;
    }

    .card-wrapper .model-area h3 {
        text-transform: uppercase;
    }

    .card-wrapper p {
        margin: 0;
        font-family: var(--font-family-1);
        font-weight: var(--weight-normal);
        color: var(--gray-dark-2);
        font-size: var(--text-sm);
    }

        .card-wrapper p.text-bold {
            font-family: var(--font-family-1);
            font-weight: var(--weight-normal);
            color: var(--gray-dark-2);
            font-size: var(--text-sm);
        }

    .card-wrapper .footer-links {
        display: flex;
        justify-content: space-between;
        margin-top: .5rem;
        padding: 0;
    }

        .card-wrapper .footer-links li {
            width: auto;
            color: var(--gray-light-2);
        }

            .card-wrapper .footer-links li a {
                text-decoration: none;
                font-family: var(--font-family-1);
                font-weight: var(--weight-bold);
                color: var(--gray-dark-3);
                font-size: var(--text-xs);
                transition: all .5s ease-in-out;
            }

            .card-wrapper .footer-links li:nth-child(even) a {
                padding: 0 0.4rem;
                /*border-right: var(--border-xs) var(--gray-dark-1);
  border-left: var(--border-xs) var(--gray-dark-1);*/
            }

            .card-wrapper .footer-links li a::after {
                content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE3IDE2IiBmaWxsPSJub25lIj4NCiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01Ljc1NzM4IDE0LjAwMTlDNS40MzI3MiAxMy43MjIyIDUuNDEyNDggMTMuMjQ5OCA1LjcxMjE2IDEyLjk0NjhMMTAuMDExMyA4LjU5OTk1TDUuNzEyMTYgNC4yNTMwN0M1LjQxMjQ4IDMuOTUwMDYgNS40MzI3MiAzLjQ3NzY3IDUuNzU3MzggMy4xOTc5N0M2LjA4MjA0IDIuOTE4MjYgNi41ODgxNiAyLjkzNzE2IDYuODg3ODUgMy4yNDAxN0wxMS42ODc4IDguMDkzNUMxMS45NzA3IDguMzc5NTIgMTEuOTcwNyA4LjgyMDM4IDExLjY4NzggOS4xMDY0TDYuODg3ODUgMTMuOTU5N0M2LjU4ODE2IDE0LjI2MjcgNi4wODIwNCAxNC4yODE2IDUuNzU3MzggMTQuMDAxOVoiIGZpbGw9IiMwMDMzOTkiLz4NCjwvc3ZnPg==");
                color: var(--gray-dark-3);
                transition: margin .5s ease-in-out;
                position: relative;
                top: 0.25rem;
            }

            .card-wrapper .footer-links li a:hover {
                /*text-shadow: 0 0 1px var(--brand-secundary);*/
                color: var(--gray-dark-10);
            }

                .card-wrapper .footer-links li a:hover::after {
                    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yNTczOCAxMS4wMDE5Qy0wLjA2NzI3NjcgMTAuNzIyMiAtMC4wODc1MjE4IDEwLjI0OTggMC4yMTIxNjEgOS45NDY4M0w0LjUxMTI3IDUuNTk5OTVMMC4yMTIxNjEgMS4yNTMwN0MtMC4wODc1MjIyIDAuOTUwMDU2IC0wLjA2NzI3NzEgMC40Nzc2NzEgMC4yNTczNzkgMC4xOTc5NjhDMC41ODIwMzYgLTAuMDgxNzM2NiAxLjA4ODE2IC0wLjA2Mjg0MTUgMS4zODc4NSAwLjI0MDE3MUw2LjE4Nzg0IDUuMDkzNUM2LjQ3MDcyIDUuMzc5NTIgNi40NzA3MiA1LjgyMDM4IDYuMTg3ODQgNi4xMDY0TDEuMzg3ODUgMTAuOTU5N0MxLjA4ODE2IDExLjI2MjcgMC41ODIwMzYgMTEuMjgxNiAwLjI1NzM4IDExLjAwMTlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
                    margin-left: 1.5rem;
                }

.title-menu-mobile {
    display: none;
}

/**
* Searching
*/
.search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .search-wrapper:hover {
        cursor: pointer;
    }

    .search-wrapper.form-search {
        position: relative;
        top: 0;
        left: 0;
        width: 20%;
        height: 4.5rem;
        background-color: var(--brand);
        /*border-bottom: var(--border-sm) var(--gray-dark);*/
    }

    .search-wrapper .form-search {
        padding: 0;
        width: 100%;
    }

    .search-wrapper.icon .icon-search {
        display: flex;
        animation: fade-In .5s forwards;
    }

    .search-wrapper.icon.closing .icon-search {
        display: flex;
        animation: fade-Out .5s forwards;
    }

    .search-wrapper.form-search.closing .form-search {
        display: flex;
        animation: fade-Out .5s forwards;
    }

    .search-wrapper:not(icon) .icon-search {
        animation: fade-Out .5s forwards 1s;
        display: none;
    }

    .search-wrapper.icon .form-search {
        animation: fade-Out .5s forwards 1s, no-show .5s forwards;
        display: none;
    }

    .search-wrapper .form-search {
        display: flex;
        padding: var(--p-2);
        animation: fade-In .5s forwards;
        background: var(--brand-white);
    }

        .search-wrapper .form-search input,
        .search-wrapper .form-search input:hover,
        .search-wrapper .form-search input:visited,
        .search-wrapper .form-search input:focus-within,
        .search-wrapper .form-search input:focus-visible,
        .search-wrapper .form-search input:active,
        .search-wrapper .form-search input:focus {
            border: none;
            /* border-bottom: var(--border-xs) var(--gray-dark); */
            outline: none;
            padding: var(--p-4);
            width: 90%;
            font-family: var(--font-family-1);
            color: var(--gray-dark-10);
            background: var(--brand-white);
        }

        .search-wrapper .form-search button {
            /* background: transparent;
  border: none; */
            background: var(--gray-dark-9);
            border: none;
            display: flex;
            align-items: center;
        }

.icon_search__bg {
    background: var(--brand-white);
}

.icon_marks_mobile {
    width: 100%;
    display: none;
}

@media (max-width: 768px) {
    .menu .option:hover {
        box-shadow: none;
        height: 100%;
        display: flex;
        /* color: var(--gray-light-1); */
        font-weight: var(--weight-bold);
    }

    .menu .option.active {
        color: var(--gray-light-1);
        box-shadow: none;
        /* padding-bottom: .8rem; */
        font-weight: var(--weight-bolder);
    }

    .submenu.list li a {
        color: var(--gray-dark-10);
        padding: 1.315rem 0.3rem;
    }

    .icon_marks_mobile {
        width: 100%;
        display: flex;
    }

        .icon_marks_mobile > svg {
            width: 100%;
        }
}


/***
**  Banner Informativo
*/

.banner_info > p,
.banner_info > a {
    margin: 0;
    color: var(--gray-dark-9);
    font-size: var(--text-xs);
}

.banner_info {
    padding: var(--p-2) 0.75rem var(--p-2) 0;
    gap: 0.25rem;
}

/***
**  Media Query
*/
@media (max-width: 1155px) {
    .submenu.listAlternate li a,
    .submenu.listAlternate li span {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .banner_info > a {
        max-width: 32rem;
    }

    .banner_info > svg {
        width: 3.2rem;
    }
}

@media (max-width: 670px) {
    .banner_info {
        padding: var(--p-2) 0.7rem;
    }
}

@media (max-width: 390px) {
    .banner_info {
        line-height: 1rem;
        font-size: var(--text-sm);
        padding: var(--p-2) 0.7rem;
        gap: 0.25rem;
    }
}

@media (min-width: 768px) and (max-width: 922px) {
    .banner_info > p {
        font-size: var(--text-sm);
    }
}

@media (max-width: 299px) {
    .banner_info > svg {
        width: 4.8rem;
    }
}

@media (min-width: 200px) and (max-width: 321px) {
    #link-logo > img {
        width: 10rem;
        height: 1.563rem;
    }
}

@media (min-width: 300px) and (max-width: 321px) {
    .banner_info > svg {
        width: 4.3rem;
        /
    }

    #link-logo > img {
        width: 10rem;
        height: 1.563rem;
    }
}

@media (min-width: 322px) and (max-width: 359px) {
    .banner_info > svg {
        width: 3.8rem;
    }
}

@media (min-width: 360px) and (max-width: 389px) {
    .banner_info > svg {
        width: 3.5rem;
    }
}


@media (max-width: 320px) {
    .icon-menu {
        display: flex;
    }

    .header-wrapper {
        padding: 0rem 1rem;
        gap: 1rem;
        justify-content: space-between;
    }

    .left-wrapper {
        justify-content: space-between;
        width: 25%;
        gap: 1.5rem;
    }

    .right-wrapper {
        justify-content: end;
        align-items: center;
        width: 30%;
        padding-right: 0;
    }

    .left-wrapper.no-show .icon-menu {
        display: none;
    }

    .left-wrapper.no-show .logotipo {
        display: none;
    }

    .menu-wrapper {
        display: none;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
        background-color: var(--gray-light-4);
        transform: translateX(-100%);
    }

        .menu-wrapper.no-show {
            display: none;
            opacity: 0;
        }

        .menu-wrapper.show {
            display: flex;
            opacity: 1;
            animation: slide-In 1s forwards;
        }

        .menu-wrapper.closing {
            display: flex;
            animation: slide-Out 1s forwards;
        }

    .menu {
        align-items: center;
        justify-content: start;
        flex-direction: column;
        padding: var(--p-0);
        width: 100vw;
        height: 100vh;
        background: var(--brand-white);
    }

    .submenu-wrapper.relative {
        position: initial;
    }

    .submenu {
        display: none;
    }

        .submenu.tabs {
            flex-direction: column;
            justify-content: start;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            display: none;
        }

    .menu .option {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100vw;
        padding: 0 0 0.7rem 0;
    }

    .submenu.tabs .option {
        transform: none;
        /* padding: 1rem 0 1rem 0; */
    }

    .menu .option.active + .submenu.tabs {
        display: flex;
        animation: slide-In 1s forwards;
        gap: 0;
    }

    .menu .option.closing + .submenu.tabs {
        animation: slide-Out 1s forwards;
    }

    .menu .option.active {
        border: none;
        margin: 0;
    }

    .menu .option,
    .menu .option.with-icon {
        border-bottom: var(--border-sm) var(--gray-dark-8);
        padding: var(--p-4) 2rem var(--p-4) 1rem;
        font-size: var(--text-lg);
    }

        .menu .option.with-icon::after {
            content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yNTczOCAxMS4wMDE5Qy0wLjA2NzI3NjcgMTAuNzIyMiAtMC4wODc1MjE4IDEwLjI0OTggMC4yMTIxNjEgOS45NDY4M0w0LjUxMTI3IDUuNTk5OTVMMC4yMTIxNjEgMS4yNTMwN0MtMC4wODc1MjIyIDAuOTUwMDU2IC0wLjA2NzI3NzEgMC40Nzc2NzEgMC4yNTczNzkgMC4xOTc5NjhDMC41ODIwMzYgLTAuMDgxNzM2NiAxLjA4ODE2IC0wLjA2Mjg0MTUgMS4zODc4NSAwLjI0MDE3MUw2LjE4Nzg0IDUuMDkzNUM2LjQ3MDcyIDUuMzc5NTIgNi40NzA3MiA1LjgyMDM4IDYuMTg3ODQgNi4xMDY0TDEuMzg3ODUgMTAuOTU5N0MxLjA4ODE2IDExLjI2MjcgMC41ODIwMzYgMTEuMjgxNiAwLjI1NzM4IDExLjAwMTlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
            transition: margin .5s ease-in-out;
            top: 0.1rem;
            width: 0;
            height: 0;
        }

        .menu .option.with-icon.active::after {
            transform: none;
        }

    .title-menu-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: var(--p-4) 3rem;
        z-index: 1;
        background: white;
        color: black;
        display: none;
        justify-content: space-around;
    }

    .submenu.list li {
        padding: 0;
    }

    .submenu.listAlternate li {
        padding: 0;
    }

    .submenu.list li.title-mobile {
        padding: var(--p-4) 2rem;
    }

    .submenu.listAlternate li.title-mobile {
        padding: var(--p-4) 2rem;
    }

    .menu .title-mobile {
        background: var(--brand-white);
        margin: 0;
        width: 100%;
        padding: 0rem var(--p-4);
        /* margin-bottom: var(--p-4); */
        display: flex;
        justify-content: space-between;
        border-bottom: var(--border-md) var(--gray-dark-10);
    }

        .menu .title-mobile span {
            color: var(--gray-dark-10);
            font-family: var(---font-family-1);
            font-size: var(--text-sl);
            font-weight: var(--weight-bolder);
            text-transform: uppercase;
        }

    .title-mobile.label {
        position: fixed;
    }

    .title-mobile button,
    .title-mobile a {
        color: var(--gray-dark-4);
        text-decoration: none;
        border: none;
        background: transparent;
    }

    .title-menu-mobile a {
        color: black;
        text-decoration: none;
    }

    .menu .align-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: 1rem; */
    }

    header .content-wrapper {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .content-models {
        justify-content: center;
        margin-top: 4rem;
        overflow-y: auto;
        height: 89%;
        width: 100%;
        padding: 1.5rem;
        gap: 3rem;
    }

    .menu .option.active + .content-wrapper {
        display: flex;
        animation: slide-In 1s forwards;
        margin: 0;
        padding: 0;
        height: 100%;
    }

    .submenu.tabs .option.active + .content-wrapper {
        display: flex;
        animation: slide-In 1s forwards;
    }

    .submenu.tabs .option.closing + .content-wrapper {
        display: flex;
        animation: slide-Out 1s forwards;
    }


    .menu .option.active + .submenu.list {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 0;
        margin: 0;
        animation: slide-In 1s forwards;
    }

    .menu .option.active + .submenu.listAlternate {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 !important;
        box-shadow: none;
        margin: 0;
        background-color: #E1E2E1;
        animation: slide-In 1s forwards;
    }

    .submenu .submenuHead {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        border-bottom: var(--border-md) var(--gray-dark-10);
        padding: 0rem var(--p-4);
        font-size: var(--text-lg);
    }

    .submenuItems .submenuTitle {
        border-bottom: 2px solid var(--gray-dark-8);
    }

    .submenu .submenuContent {
        flex-direction: column;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .menu .option.closing + .submenu.list {
        animation: slide-Out 1s forwards;
    }

    .menu .option.closing + .submenu.listAlternate {
        animation: slide-Out 1s forwards;
    }

    .submenu.tabs .option::after {
        content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yNTczOCAxMS4wMDE5Qy0wLjA2NzI3NjcgMTAuNzIyMiAtMC4wODc1MjE4IDEwLjI0OTggMC4yMTIxNjEgOS45NDY4M0w0LjUxMTI3IDUuNTk5OTVMMC4yMTIxNjEgMS4yNTMwN0MtMC4wODc1MjIyIDAuOTUwMDU2IC0wLjA2NzI3NzEgMC40Nzc2NzEgMC4yNTczNzkgMC4xOTc5NjhDMC41ODIwMzYgLTAuMDgxNzM2NiAxLjA4ODE2IC0wLjA2Mjg0MTUgMS4zODc4NSAwLjI0MDE3MUw2LjE4Nzg0IDUuMDkzNUM2LjQ3MDcyIDUuMzc5NTIgNi40NzA3MiA1LjgyMDM4IDYuMTg3ODQgNi4xMDY0TDEuMzg3ODUgMTAuOTU5N0MxLjA4ODE2IDExLjI2MjcgMC41ODIwMzYgMTEuMjgxNiAwLjI1NzM4IDExLjAwMTlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
        transition: margin .5s ease-in-out;
        top: 0.1rem;
        width: 0;
        height: 0;
    }

    .menu .option.only {
        border-bottom: 2px solid var(--gray-dark-8);
        padding: var(--p-4);
        font-size: var(--text-lg);
    }

    .menu .option:hover {
        /* border-bottom: 4px solid var(--brand); */
        box-shadow: none;
        height: 100%;
        display: flex;
        background-color: var(--gray-dark-9);
        color: var(--brand);
        text-shadow: none;
        border-bottom: 2px solid var(--gray-dark-8) !important;
    }

    .menu .option.only::after {
        content: none;
    }

    .card-wrapper {
        padding: 0;
        max-height: 100%;
    }

        .card-wrapper .model-area {
            align-items: center;
        }

            .card-wrapper .model-area h3 {
                align-self: flex-start;
            }

        .card-wrapper .footer-links li a {
            /* font-size: .8rem; */
            text-decoration: underline;
        }

    .search-wrapper.form-search {
        position: absolute;
        width: 100%;
    }

    .card-wrapper .model-area img {
        margin-top: 0rem;
        width: 100%;
        max-width: 230px;
    }

    .card-wrapper p {
        font-size: var(--text-sm);
    }

        .card-wrapper p.text-bold {
            font-size: var(--text-sm);
        }
}

@media(max-width: 588px) {
    .logotipo {
        /* padding: 0rem 0rem 0rem 3rem; */
        padding: 0;
    }
}

@media(min-width: 589px) {
    .logotipo {
        /* padding: 0rem 0rem 0rem 5rem; */
        padding: 0;
    }
}

@media(max-width: 589px) {
    .header-wrapper {
        position: fixed;
    }
}

@media(max-width: 320px) {
    .logotipo {
        padding: 0rem 0rem 0rem 0rem;
    }
}

@media(min-width: 824px) {
    .logotipo {
        /* padding: 0rem 0rem 0rem 0rem; */
        padding: 1.7rem;
    }
        .logotipo img {
            filter: invert(1);
            transition: filter 0.2s ease-out;
        }

        .header-wrapper.scrolled .logotipo img {
            filter: invert(0);
        }

}

/* Medium devices (tablets, 768px and down) */

@media (min-width: 320px) and (max-width: 1155px) {
    .icon-menu {
        display: flex;
        cursor: pointer;
        filter: invert(1); 
        transition: filter 0.2s ease-out;
    }

    .header-wrapper.scrolled .icon-menu,
    .menu-open .icon-menu {
        filter: invert(0);
    }


    .header-wrapper.scrolled .icon-menu {
        filter: invert(0);
    }

    .header-wrapper {
        padding: 1rem 1rem;
        /*gap: 1rem;*/
        justify-content: space-between;
        height: 3rem;
    }

    .left-wrapper {
        justify-content: space-between;
        /* width: 60%; */
        width: 8%;
        padding: 0 var(--p-4) 0 0rem;
        float: right;
        position: absolute;
        right: 0;
    }

    #link-logo > img {
        width: auto;
        filter: invert(1);
        transition: filter 0.2s ease-out;
    }

    body.menu-open #link-logo > img {
        filter: invert(0) !important;
    }

    .logo-black {
        filter: invert(1);
        transition: filter 0.2s ease-out;
    }

    .icon-black {
        filter: invert(1); 
        transition: filter 0.2s ease-out;
    }

    .header-wrapper.scrolled #link-logo > img {
        filter: invert(0);
    }

    @media (max-width: 1000px) {
        .logo-desktop {
            display: none !important;
        }

        .logo-mobile {
            display: block !important;
        }
    }

    @media (min-width: 1001px) {
        .logo-desktop {
            display: block !important;
        }

        .logo-mobile {
            display: none !important;
        }
    }

    .right-wrapper {
        justify-content: end;
        align-items: center;
        width: 30%;
        position: static;
        padding-right: 0rem;
    }

    .left-wrapper.no-show .icon-menu {
        display: none;
    }

    .left-wrapper.no-show .logotipo {
        display: none;
    }


    .menu-wrapper {
        display: none;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
        background-color: var(--gray-light-4);
        transform: translateX(-100%);
    }

        .menu-wrapper.no-show {
            display: none;
            opacity: 0;
        }

        .menu-wrapper.show {
            display: flex;
            opacity: 1;
            animation: slide-In 1s forwards;
        }

        .menu-wrapper.closing {
            display: flex;
            animation: slide-Out 1s forwards;
        }

    .menu {
        background-color: var(--gray-light-1);
        align-items: center;
        justify-content: start;
        flex-direction: column;
        padding: var(--p-0);
        width: 100vw;
        height: 100vh;
    }

    .submenu-wrapper.relative {
        position: initial;
    }

    .submenu {
        display: none;
    }

        .submenu .submenuHead {
            width: 100%;
            justify-content: space-between;
            align-items: center;
            border-bottom: var(--border-md) var(--gray-dark-10);
            padding: 0rem var(--p-4);
            font-size: var(--text-lg);
        }

        .submenu .submenuContent {
            flex-direction: column;
            overflow-y: auto;
            justify-content: flex-start;
            gap: 1.3rem;
            padding: 1rem;
            text-align: center;
        }

    .submenuItems .submenuTitle {
        padding: 2.5rem var(--p-4) var(--p-4) var(--p-4);
    }

    .submenu.tabs {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: none;
    }

    .menu .option {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100vw;
        padding: 0 0 0.7rem 0;
    }

    .submenu.tabs .option {
        transform: none;
        padding: var(--p-4) 2rem var(--p-4) var(--p-4);
    }

    .menu .option.active + .submenu.tabs {
        display: flex;
        animation: slide-In 1s forwards;
        gap: 0;
    }

    .menu .option.closing + .submenu.tabs {
        animation: slide-Out 1s forwards;
    }

    .menu .option.active {
        border: none;
        margin: 0;
    }

    .menu .option,
    .menu .option.with-icon {
        border-bottom: var(--border-sm) var(--gray-dark-8);
        padding: var(--p-4) 2rem var(--p-4) var(--p-4);
        font-size: 1.125rem;
        position: relative;
        color: var(--gray-dark);
    }

        .menu .option.with-icon {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            user-select: none;
            position: relative;
        }

            /* ?? Flecha SVG SIEMPRE NEGRA */
            .menu .option.with-icon::after {
                content: "";
                background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9ImJsYWNrIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yNTczOCAxMS4wMDE5Qy0wLjA2NzI3NjcgMTAuNzIyMiAtMC4wODc1MjE4IDEwLjI0OTggMC4yMTIxNjEgOS45NDY4M0w0LjUxMTI3IDUuNTk5OTVMMC4yMTIxNjEgMS4yNTMwN0MtMC4wODc1MjIyIDAuOTUwMDU2IC0wLjA2NzI3NzEgMC40Nzc2NzEgMC4yNTczNzkgMC4xOTc5NjhDMC41ODIwMzYgLTAuMDgxNzM2NiAxLjA4ODE2IC0wLjA2Mjg0MTUgMS4zODc4NSAwLjI0MDE3MUw2LjE4Nzg0IDUuMDkzNUM2LjQ3MDcyIDUuMzc5NTIgNi40NzA3MiA1LjgyMDM4IDYuMTg3ODQgNi4xMDY0TDEuMzg3ODUgMTAuOTU5N0MxLjA4ODE2IDExLjI2MjcgMC41ODIwMzYgMTEuMjgxNiAwLjI1NzM4IDExLjAwMTlaIiBmaWxsPSJibGFjayIvPjwvc3ZnPgo=');
                background-size: contain;
                background-repeat: no-repeat;
                width: 15px;
                height: 12px;
                transition: transform 0.3s ease-in-out;
                display: inline-flex;
                position: absolute;
                right: 1.5rem;
                top: 1.5rem;
                transform: rotate(90deg); /* Siempre visible y orientada a la derecha */
                filter: invert(0) !important; /* ?? Siempre negro */
            }
            /* ?? Flecha en estado inicial (90°) */
            .menu .option.with-icon:not(.active)::after {
                transform: rotate(90deg);
            }

            /* ?? Flecha rota cuando el menú está activo (180°) */
            .menu .option.with-icon.active::after {
                transform: rotate(180deg);
            }
            /* ?? Flecha rota suavemente cuando el menú está activo */
            .menu .option.with-icon.active::after {
                transform: rotate(180deg);
            }


            /* ?? Flecha negra siempre, incluso en hover y scroll */
            .header-wrapper.scrolled .menu .option.with-icon::after,
            .menu .option.with-icon:hover::after,
            .header-wrapper.submenu-active .menu .option.with-icon::after {
                filter: invert(0) !important; /* ?? Siempre negro */
            }


        .menu .option.with-icon.active::after {
            transform: none;
        }

    .title-menu-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: var(--p-4) 3rem;
        z-index: 1;
        background: white;
        color: black;
        display: none;
        justify-content: space-around;
    }

    .submenu.list li {
        padding: 0;
    }

    .submenu.listAlternate li {
        padding: 0;
    }

    .submenu.list li.title-mobile {
        padding: var(--p-4) 2rem;
    }

    .submenu.listAlternate li.title-mobile {
        padding: var(--p-4) 2rem;
    }

    .menu .title-mobile {
        background: var(--gray-light-1);
        margin: 0;
        width: 100%;
        padding: 0rem var(--p-4);
        /* margin-bottom: var(--p-4); */
        display: flex;
        justify-content: space-between;
        border-bottom: var(--border-md) var(--brand);
    }

        .menu .title-mobile span {
            color: var(--brand-secundary);
            font-family: var(--font-family-1);
        }

    .title-mobile.label {
        position: fixed;
    }

    .title-mobile button,
    .title-mobile a {
        color: var(--gray-dark-4);
        text-decoration: none;
        border: none;
        background: transparent;
    }

    .title-menu-mobile a {
        color: black;
        text-decoration: none;
    }

    .menu .align-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: var(--p-4); */
    }

    header .content-wrapper {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .content-models {
        justify-content: center;
        margin-top: 4rem;
        overflow-y: auto;
        height: 89%;
        width: 100%;
        padding: 1.5rem;
        gap: 3rem;
    }

    .menu .option.active + .content-wrapper {
        display: flex;
        animation: slide-In 1s forwards;
        margin: 0;
        padding: 0;
        height: 100%;
    }

    .submenu.tabs .option.active + .content-wrapper {
        display: flex;
        animation: slide-In 1s forwards;
    }

    .submenu.tabs .option.closing + .content-wrapper {
        display: flex;
        animation: slide-Out 1s forwards;
    }

    /* .menu .option.active+.submenu.list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin: 0;

    animation: slide-In 1s forwards;
  } */

    .menu .option.active + .submenu.listAlternate, .menu .option.active + .submenu.list {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 !important;
        box-shadow: none;
        margin: 0;
        background-color: #E1E2E1;
        animation: slide-In 1s forwards;
    }


    .menu .option.closing + .submenu.list {
        animation: slide-Out 1s forwards;
    }

    .menu .option.closing + .submenu.listAlternate {
        animation: slide-Out 1s forwards;
    }

    .submenu.tabs .option::after {
        content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yNTczOCAxMS4wMDE5Qy0wLjA2NzI3NjcgMTAuNzIyMiAtMC4wODc1MjE4IDEwLjI0OTggMC4yMTIxNjEgOS45NDY4M0w0LjUxMTI3IDUuNTk5OTVMMC4yMTIxNjEgMS4yNTMwN0MtMC4wODc1MjIyIDAuOTUwMDU2IC0wLjA2NzI3NzEgMC40Nzc2NzEgMC4yNTczNzkgMC4xOTc5NjhDMC41ODIwMzYgLTAuMDgxNzM2NiAxLjA4ODE2IC0wLjA2Mjg0MTUgMS4zODc4NSAwLjI0MDE3MUw2LjE4Nzg0IDUuMDkzNUM2LjQ3MDcyIDUuMzc5NTIgNi40NzA3MiA1LjgyMDM4IDYuMTg3ODQgNi4xMDY0TDEuMzg3ODUgMTAuOTU5N0MxLjA4ODE2IDExLjI2MjcgMC41ODIwMzYgMTEuMjgxNiAwLjI1NzM4IDExLjAwMTlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
        transition: margin .5s ease-in-out;
        top: 0.1rem;
        width: 0;
        height: 0;
    }

    .menu .option.only {
        border-bottom: 2px solid var(--gray-dark-8);
        padding: var(--p-4) 2rem var(--p-4) var(--p-4);
        font-size: var(--text-lg);
    }

    .menu .option:hover {
        /* border-bottom: 4px solid var(--brand); */
        box-shadow: none;
        height: 100%;
        display: flex;
        background-color: var(--gray-dark-9);
        /*color: var(--brand);*/
        text-shadow: none;
        border-bottom: 2px solid var(--gray-dark-8) !important;
    }

    .menu .option.active {
        color: var(--gray-dark);
        /* border-bottom: 4px solid var(--brand); */
        box-shadow: none;
        /* padding-bottom: .8rem; */
        /* font-weight: var(--weight-bolder); */
        text-shadow: none;
        background-color: var(--brand-white);
        border-bottom: 2px solid var(--gray-dark-8);
    }

    .menu .option.only::after {
        content: none;
    }

    .card-wrapper {
        padding: 0;
        max-height: 100%;
    }

        .card-wrapper .footer-links li a {
            font-size: .8rem;
        }

    .search-wrapper.form-search {
        position: absolute;
        width: 100%;
    }

    .card-wrapper .model-area img {
        margin-top: 0rem;
        width: 100%;
        max-width: 230px;
    }

    .card-wrapper p {
        font-size: var(--text-sm);
    }

        .card-wrapper p.text-bold {
            font-size: var(--text-sm);
        }

    .title_menu_mobil {
        font-family: var(---font-family-1);
        font-weight: var(--weight-bolder);
        font-size: var(--text-md);
        line-height: var(--text-sl);
        color: var(--gray-dark);
    }

    #link-logo > .brandLogoMobile {
        width: 2rem;
    }

    .submenu.list li a {
        display: flex;
        justify-content: center;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 992px) and (max-width: 1200px) {
    .card-wrapper .footer-links li a {
        font-size: .5rem;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1201px) {
    .card-wrapper .footer-links li a {
        font-size: .75rem;
    }

    .card-wrapper .footer-links {
        width: 96%;
    }
}

@media (min-width: 1400px) {
    .card-wrapper .footer-links {
        width: 100%;
    }

    .menu .content-wrapper {
        height: 90vh;
        padding: 0 10%;
    }

    .card-wrapper .footer-links li a::after {
        margin-left: .1rem;
    }

    .card-wrapper .footer-links li a:hover::after {
        margin-left: .3rem;
    }
}

@media (min-width: 1850px) {

    .menu .content-wrapper {
        padding: 0 21%;
    }
}
