.nt-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nt-menu__button {
    --button-color: white;

    background: none;
    border: none;
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--button-color);
    text-transform: uppercase;
    width: 50px;
    position: relative;
    padding: 0;
    text-align: center;
    z-index: 1;
    transition: .1s;
}
.nt-menu__button-lines {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .2s;
}
.nt-menu__button-lines:before,
.nt-menu__button-lines:after {
    content: "";
    height: 1px;
    width: 50px;
    background: var(--button-color);
    transform-origin: center;
    transition: .2s .05s;
}


.nt-menu__container-wrapper {
    position: fixed;
    inset: 0;
    transform: translateY(-100%);
    background: black;
    overflow: hidden;
    transition: transform .25s 0s;

    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-menu__container-wrapper:before {
    content:"";
    background: var(--e-global-color-primary);
    position: absolute;
    left: -10vw;
    right: -10vw;
    bottom: -10vh;
    height: 120vh;
    transform: rotate(5deg);
    transition: height 1s .1s;
}
.nt-menu__container-wrapper nav ul {
    padding-left: 0;
    list-style: none;
}
.nt-menu__container-wrapper nav ul li a {
    color: white;
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    padding: 30px;
    opacity: 0;
    position: relative;
    left: -10px;
}
.nt-menu__container-wrapper nav ul li a:hover,
.nt-menu__container-wrapper nav ul li a:focus {
    color: var(--e-global-color-primary);
    left: 10px!important;
    transition: all .3s 0s!important;
}


.nt-menu.open .nt-menu__button {
    gap: 24px;
}
.nt-menu.open .nt-menu__button-lines {
    gap: 0;
}
.nt-menu.open .nt-menu__button-lines:before {
    transform: rotate(45deg) translateY(1px);
}
.nt-menu.open .nt-menu__button-lines:after {
    transform: rotate(-45deg);
}
.nt-menu.open .nt-menu__container-wrapper {
    transform: translateY(0);
}
.nt-menu.open .nt-menu__container-wrapper:before {
    height: 0;
    transition: height .75s .1s;
}
.nt-menu.open .nt-menu__container-wrapper nav ul li a {
    opacity: 1;
    left: 0;
    transition: all .7s;
}
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(1) a { transition-delay: .4s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(2) a { transition-delay: .5s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(3) a { transition-delay: .6s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(4) a { transition-delay: .7s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(5) a { transition-delay: .8s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(6) a { transition-delay: .9s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(7) a { transition-delay: 1s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(8) a { transition-delay: 1.1s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(9) a { transition-delay: 1.2s; }
.nt-menu.open.opening .nt-menu__container-wrapper nav ul li:nth-child(10) a { transition-delay:1.3s; }


@media (max-width: 1600px) {
    .nt-menu__container-wrapper nav ul li a {
        font-size: 1.875rem;
        padding: 22px;
    }
}

@media (max-width: 1024px) {
    .nt-menu__container-wrapper nav ul li a {
        font-size: 1.25rem;
        padding: 12px;
    }
}