/* =========================================================
   HEADER — base
   ========================================================= */
.header {
    font-family: var(--font-base);
    color: var(--texto);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Fila superior */
.header-top {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    gap: 18px;
}

.header-right {
    gap: 40px;
}

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

/* Teléfono / Donación */
.header-phone,
.header-donation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--texto-2);
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 13px;
}

.icon-phone,
.icon-heart,
.topbar-icon {
    width: 18px;
    height: auto;
    display: inline-block;
}

/* Logo */
.header-logo img {
    margin-top: 18px;
    height: auto;
    width: auto;
    display: inline-block;
}

/* Idiomas */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lang-switch .lang-item {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--texto-3);
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 13px;
}

.lang-switch .lang-item.is-active {
    color: var(--color-3);
}

/* Redes */
.header-socials {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.header-socials .social-icon {
    height: auto;
    display: block;
}

.header-socials .social-link {
    line-height: 0;
}

/* =========================================================
   NAV DESKTOP
   ========================================================= */
.header-container {
    border-top: 1px solid var(--white-hr);
    background: var(--white);
}

.header-container .header-menu {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px 16px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--menu-gap);
}

.header-container .header-menu>li>a,
.header-container .header-menu>li>a.menu-link {
    text-decoration: none;
    color: var(--texto);
    font-weight: 700;
    padding: 0 6px;
    font-size: 14px;
}

.header-container .header-menu>li>a:hover,
.header-container .header-menu>li>a:focus,
.header-container .header-menu>li>a.menu-link:hover,
.header-container .header-menu>li>a.menu-link:focus {
    color: var(--color-1);
}

/* Padre con hijos: flecha a la izquierda con ::before */
#menu-primary>li.menu-item-has-children {
    position: relative;
}

#menu-primary>li.menu-item-has-children>a.menu-link,
#menu-primary>li.menu-item-has-children>a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

#menu-primary>li.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(-90deg);
    background-image: url('https://crokis-sites.fra1.cdn.digitaloceanspaces.com/carreras/wp-content/uploads/2025/09/01171837/Trazado-940.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Submenú desktop */
#menu-primary>li>ul.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    min-width: 340px;
    width: max-content;
}

#menu-primary>li.menu-item-has-children:hover>ul.sub-menu {
    display: block;
}

/* En columnas (hasta 5 filas) */
#menu-primary>li.menu-item-has-children:hover>ul.sub-menu {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-auto-columns: max-content;
    column-gap: 64px;
}

#menu-primary>li>ul.sub-menu>li {
    margin: 0;
}

#menu-primary>li>ul.sub-menu>li>a {
    display: block;
    position: relative;
    padding: 12px 0 12px 23px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--color-2);
    letter-spacing: .02em;
    font-size: 16px;
    line-height: 1;
    font-family: "Outfit", sans-serif;
}

#menu-primary>li>ul.sub-menu>li>a::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
    font-weight: 400;
    font-size: 20px;
}

/* =========================================================
   HEADER FIJO
   ========================================================= */
.header.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

body.has-fixed-header {
    padding-top: 140px;
}

/* Accesibilidad */
.header a:focus-visible {
    outline: 2px solid var(--color-2);
    outline-offset: 2px;
}

/* Solo lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   HAMBURGUESA (móvil)
   ========================================================= */
.menu-icon {
    display: none;
    /* visible en móvil */
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin: 0;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
}

.menu-icon .menu-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: var(--color-2);
    border-radius: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.header-hero {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: 1920px;
    margin: auto;
}

.header-hero.is-home {
    height: var(--hero-height-home);
}

.header-hero.is-inner {
    height: var(--hero-height-inner);
}

.header-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    place-items: center;
    text-align: center;
    color: var(--white);
    padding: 24px;
}

h1.hero-title,
p.hero-subtitle {
    font-size: 25px;
    font-weight: 600;
}

/* =========================================================
   MOBILE DRAWER (overlay de menú)
   ========================================================= */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
}

body.drawer-open {
    overflow: hidden;
}

body.drawer-open .mobile-drawer {
    transform: translateX(0);
}

/* Botón cerrar (X) */
.drawer-close {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--texto);
}

.drawer-close:focus-visible {
    outline: 2px solid var(--color-2);
    outline-offset: 3px;
}

/* Contenido del drawer */
.drawer-nav {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px 24px 40px 24px;
    display: block;
}

/* Menú del drawer */
.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu>li {
    margin: 18px 0;
}

/* Títulos toplevel — 30px como pediste */
.drawer-menu>li>a.menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--texto-4);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
}

/* Chevrón rosa antes del texto (acordeón) */
.drawer-menu>li.menu-item-has-children>a.menu-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-2);
    /* triangulito rosa */
    transform: rotate(-90deg);
    /* apuntando a la derecha (cerrado) */
    transition: transform .2s ease;
}

.drawer-menu>li.menu-item-has-children.is-open>a.menu-link::before {
    transform: rotate(0deg);
    /* apuntando hacia abajo (abierto) */
}

/* Submenú dentro del drawer */
.drawer-submenu {
    display: none;
    list-style: none;
    padding: 8px 0 4px 22px;
    margin: 0;
}

.drawer-menu>li.menu-item-has-children.is-open>.drawer-submenu {
    display: block;
}

.drawer-submenu>li {
    margin: 10px 0;
}

.drawer-submenu>li>a {
    text-decoration: none;
    color: var(--color-2);
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    position: relative;
    padding-left: 18px;
}

.drawer-submenu>li>a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--texto);
}

/* Separador visual del drawer */
.mobile-drawer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: var(--white-hr);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* MÓVIL / TABLET */
@media (max-width:960px) {

    /* En la fila superior solo logo + hamburguesa */
    .header-left,
    .header-right {
        display: none !important;
    }

    .header-top {
        align-items: center;
    }

    .header-center {
        justify-content: flex-start;
    }

    .menu-icon {
        display: inline-flex;
        margin-left: auto;
    }

    /* En móvil el nav desktop queda oculto (solo la raya) */
    .header-container .header-menu {
        display: none;
    }

    /* Ajustes de tipografías del drawer (ya están a 30/18) */
}

/* DESKTOP */
@media (min-width:961px) {
    .menu-icon {
        display: none;
    }

    /* hamburguesa no se muestra */
    .mobile-drawer {
        transform: none;
        display: none;
    }

    /* sin overlay en desktop */
}

/* ===== Overlay móvil (cerrado por defecto) ===== */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 10050;
    /* por encima del header (9999) */
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

/* Botón cerrar dentro del overlay */
.mobile-drawer .drawer-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: 0;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    color: var(--texto-4);
}

/* Menú del overlay */
.mobile-drawer .drawer-menu {
    list-style: none;
    padding: 64px 0 0;
    margin: 0;
}

.mobile-drawer .drawer-menu>li {
    margin: 22px 0;
}

.mobile-drawer .drawer-menu>li>a.menu-link {
    display: block;
    text-decoration: none;
    color: var(--texto-4);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
}

/* Submenús (acordeón) cerrados por defecto */
.mobile-drawer .drawer-submenu {
    list-style: none;
    margin: 12px 0 0 28px;
    padding: 0;
    display: none;
}

.mobile-drawer .menu-item-has-children.is-open>.drawer-submenu {
    display: block;
}

/* Flechita/guion en los padres */
.mobile-drawer .menu-item-has-children>a.menu-link {
    position: relative;
    padding-left: 16px;
}

.mobile-drawer .menu-item-has-children>a.menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 10px;
    height: 10px;
    border-left: 3px solid var(--color-2);
    /* border-bottom: 3px solid var(--color-2); */
    transform: rotate(-45deg);
}

.mobile-drawer .menu-item-has-children.is-open>a.menu-link::before {
    transform: rotate(135deg);
    top: .4em;
}

/* ===== Estado ABIERTO ===== */
@media (max-width:960px) {

    /* mostrar overlay y bloquear scroll página */
    body.open {
        overflow: hidden;
    }

    body.open .mobile-drawer {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    /* convertir hamburguesa en X */
    .menu-icon {
        position: relative;
        z-index: 10100;
    }

    /* por encima del overlay */
    .menu-icon .menu-bar {
        background: var(--color-2);
        transition: transform .2s ease, opacity .2s ease;
    }

    body.open .menu-icon .menu-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.open .menu-icon .menu-bar:nth-child(2) {
        opacity: 0;
    }

    body.open .menu-icon .menu-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ocultar menú de escritorio en móvil */
    .header-container .header-menu {
        display: none !important;
    }

    /* fila superior solo logo + hamburguesa (ya lo tenías; refuerzo) */
    .header-left,
    .header-right {
        display: none !important;
    }

    .menu-icon {
        display: inline-flex;
        margin-left: auto;
        background: transparent;
        border: 0;
        padding: 8px;
    }

    .menu-icon .menu-bar {
        width: 28px;
        height: 3px;
        margin: 5px 0;
        border-radius: 2px;
    }
}

/* ===== Desktop ===== */
@media (min-width:961px) {
    .mobile-drawer {
        display: none !important;
    }

    .menu-icon {
        display: none;
    }
}

/* ================== FIX HAMBURGUESA (columna + color) ================== */
.menu-icon {
    display: none;
    /* se muestra en móvil abajo */
    appearance: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    /* apila las barras en columna */
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-icon .menu-bar {
    width: 28px;
    height: 3px;
    background: var(--color-2);
    border-radius: 2px;
    display: block;
    margin: 0;
    /* quitamos margen para que el gap gobierne */
    transition: transform .2s ease, opacity .2s ease;
}

/* ================== OVERLAY MÓVIL (controlado por body.open) ================== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    /* por encima del header (9999) */
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    /* oculto por defecto */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

/* botón X del overlay */
.mobile-drawer .drawer-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: 0;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--texto-4);
}

/* cuando el body tiene .open → mostrar overlay y bloquear scroll */
body.open {
    overflow: hidden;
}

body.open .mobile-drawer {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* animación: hamburguesa → X cuando el overlay está abierto */
body.open .menu-icon .menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.open .menu-icon .menu-bar:nth-child(2) {
    opacity: 0;
}

body.open .menu-icon .menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ================== MENÚ ESCRITORIO vs MÓVIL ================== */
@media (max-width:960px) {

    /* en móvil: solo logo + hamburguesa en la fila superior */
    .header-left,
    .header-right {
        display: none !important;
    }

    .header-top {
        align-items: center;
    }

    .header-center {
        justify-content: flex-start;
    }

    .menu-icon {
        display: inline-flex;
        margin-left: auto;
    }

    /* el menú de escritorio no se muestra en móvil */
    .header-container .header-menu {
        display: none !important;
    }
}

@media (min-width:961px) {

    /* sin overlay en desktop */
    .mobile-drawer {
        display: none !important;
    }

    .menu-icon {
        display: none !important;
    }
}

/* ================== MENÚ DENTRO DEL OVERLAY (acordeón) ================== */
.drawer-nav {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px 24px 40px;
}

.drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-menu>li {
    margin: 20px 0;
}

/* títulos toplevel a 30px (como pediste) */
.drawer-menu>li>a.menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--texto-4);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
}

/* indicador acordeón */
.drawer-menu>li.menu-item-has-children>a.menu-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-2);
    transform: rotate(-90deg);
    /* cerrado: apunta derecha */
    transition: transform .2s ease;
}

.drawer-menu>li.menu-item-has-children.is-open>a.menu-link::before {
    transform: rotate(0deg);
    /* abierto: apunta abajo */
}

.drawer-submenu {
    display: none;
    list-style: none;
    margin: 10px 0 0 24px;
    padding: 0;
}

.drawer-menu>li.menu-item-has-children.is-open>.drawer-submenu {
    display: block;
}

.drawer-submenu>li {
    margin: 10px 0;
}

.drawer-submenu>li>a {
    text-decoration: none;
    color: var(--color-2);
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    position: relative;
    padding-left: 18px;
}

.drawer-submenu>li>a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--texto);
}

/* Oculta la hamburguesa cuando el overlay está abierto (evita la segunda X) */
body.open #menu-toggle {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Cabecera dentro del drawer: logo a la izquierda, X a la derecha */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--white-hr);
}

.drawer-logo img {
    display: block;
    height: 44px;
    /* ajusta si quieres */
    width: auto;
}

/* El botón de cerrar ahora vive dentro de la cabecera del drawer */
.drawer-close {
    position: static;
    /* deja de ser absolute */
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: var(--texto-4);
}

.drawer-close:focus-visible {
    outline: 2px solid var(--color-2);
    outline-offset: 3px;
}

/* ====== RESET de estados duplicados ====== */
.menu-icon,
.mobile-drawer,
.drawer-close {
    all: unset;
}

/* limpia posibles herencias conflictivas */
.menu-icon,
.mobile-drawer,
.drawer-close {
    display: revert;
}

/* vuelve a su display por defecto */

/* ====== HAMBURGUESA (una sola definición) ====== */
.menu-icon {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin-left: auto;
    /* empuja a la derecha del logo */
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    /* ¡columna real! */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-icon .menu-bar {
    width: 28px;
    height: 3px;
    background: var(--color-2);
    border-radius: 2px;
    display: block;
    transition: transform .2s ease, opacity .2s ease;
}

/* animación hamburguesa → X */
body.open .menu-icon .menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.open .menu-icon .menu-bar:nth-child(2) {
    opacity: 0;
}

body.open .menu-icon .menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* oculta el botón cuando el drawer está abierto (para evitar “doble X”) */
body.open #menu-toggle {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ====== OVERLAY (una sola definición) ====== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    /* por encima del header (9999) */
    background: var(--white);
    display: flex;
    flex-direction: column;
    /* cerrado por defecto */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

body.open {
    overflow: hidden;
}

body.open .mobile-drawer {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* Cabecera interior del drawer */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--white-hr);
}

.drawer-logo img {
    display: block;
    height: auto;
    width: auto;
    margin-top: 18px;
}

.drawer-close {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 1;
    color: var(--texto-4);
}

.drawer-close:focus-visible {
    outline: 2px solid var(--color-2);
    outline-offset: 3px;
}

/* Menú del drawer */
.drawer-nav {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
}

.drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-menu>li {
    margin: 20px 0;
}

/* Títulos nivel 1 */
.drawer-menu>li>a.menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--texto-4);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
}

/* Indicador acordeón */
.drawer-menu>li.menu-item-has-children>a.menu-link {
    position: relative;
    /* padding-left: 0; */
}

.drawer-menu>li.menu-item-has-children>a.menu-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    margin-right: 8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-2);
    transform: rotate(-90deg);
    transition: transform .2s ease;
}

.drawer-menu>li.menu-item-has-children.is-open>a.menu-link::before {
    transform: rotate(0deg);
}

/* Submenú */
.drawer-submenu {
    display: none;
    list-style: none;
    margin: 10px 0 0 24px;
    padding: 0;
}

.drawer-menu>li.menu-item-has-children.is-open>.drawer-submenu {
    display: block;
}

.drawer-submenu>li {
    margin: 10px 0;
}

.drawer-submenu>li>a {
    text-decoration: none;
    color: var(--color-2);
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    position: relative;
    padding-left: 18px;
}

.drawer-submenu>li>a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--texto);
}

/* ====== RESPONSIVE ====== */
@media (max-width:960px) {

    .header-left,
    .header-right {
        display: none !important;
    }

    .header-top {
        align-items: center;
    }

    .header-center {
        justify-content: flex-start;
    }

    /* oculta el menú desktop */
    .header-container .header-menu {
        display: none !important;
    }
}

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

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