#logo-container {
    margin: auto 0;
    height: 60px;
}


#menu-container-inner {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    column-gap: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#nav-container {
    margin: auto 0;
}

.menu-main-container {
    max-width: 1000px;
    margin: 0 0 0 auto;
}

#nav-container ul {
    display: flex;
    margin: 0;
    margin: 0 0 0 auto;
    justify-content: space-evenly;
}

#nav-container li {
    display: block;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
}

#nav-container a {
    color: var(--black);
    text-decoration: none;
}

#sm-container, #sm-container-mobile {
    margin: auto 0;
}

#sm-container-inner, #sm-container-inner-mobile {
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

#sm-container-inner-mobile {
    max-width: 200px;
}

.sm-circle {
    background-color: var(--red);
    line-height: 0.7;
    padding: 0.5rem;
    border-radius: 100px;
}

.sm-circle a {
    color: var(--white);
    font-size: 1.5rem;
}

@media only screen and (max-width: 1600px) {
    .sm-circle a {
        color: var(--white);
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1400px) {
    #sm-container {
        display: none;
    }

    #menu-container-inner {
        grid-template-columns: 1fr 4fr;
    }
}

#menu-container-mobile {
    display: none;
}



/**** MOBILE ****/
@media only screen and (max-width: 980px) {
    #menu-container-mobile {
        display: unset;
        z-index: 3;
    }

    #menu-container-outer {
        display: none;
    }
}

#menu-mobile-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#tofu-burger {
    margin: auto 0;
}

#tofu-burger .hamburger {
    line-height: 0.5;
}

#logo-mobile {
    margin: auto 0;
    height: 50px;
}

#tofu-inner {
    width: fit-content;
    margin: 0 0 0 auto;
}

.hamburger-inner::before, .hamburger-inner::after {
    color: var(--black);
}

@media only screen and (max-width: 400px) {
    #tofu-inner {
        transform: scale(0.8);
        transform-origin: center right;
    }
}

/*** OVERLAY MENU MOBILE ***/
#overlay-menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: var(--hero-height);
    background-color: var(--red);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.5s cubic-bezier(.2,1.06,.67,.98);
    display: grid;
}

#overlay-menu-inner {
    margin-top: auto;
    margin-bottom: auto;
}


#overlay-menu-inner ul {
    list-style-type: none;
    margin-block-start: unset;
    margin-block-end: unset;
    padding-inline-start: unset;
}

#overlay-menu-inner .menu-item a {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

#overlay-menu-mobile .menu-item {
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--white);
}

#menu-main-1 li {
    margin-bottom: 4vh;
}

#menu-container-mobile.is-active {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: var(--white);
}

#overlay-menu-mobile.is-active {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: 1s cubic-bezier(.2,1.06,.67,.98);
}

#sm-container-inner-mobile .sm-circle {
    background-color: var(--white);
    line-height: 0.7;
    padding: 0.5rem;
    border-radius: 100%;
    height: fit-content;
    margin: auto;
}

#sm-container-inner-mobile .sm-circle a {
    color: var(--red);
    font-size: 1.5rem;
}


.sticky-header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: var(--white);
}

.menu-shadow {
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}