.menu {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    z-index: 100;
}

.menu:not(.show) {
    display: none;
}

.menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    background-color: rgba(255,255,255,.6);
    z-index: 1;

    transition: opacity .35s ease;
}

.menu:not(.animate) .menu__overlay {
    opacity: 0;
}

.menu__list {
    position: relative;
    z-index: 2;

    padding-block: 12px 80px;
    width: 100%;
    max-width: 320px;
    height: 100%;
    
    background-color: var(--color-darkest-green);

    transition: transform .35s ease;
}

.menu:not(.animate) .menu__list {
    transform: translateX(-100%);
}

.menu__item-link {
    display: block;

    color: var(--color-white);
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;

    padding: 5px 20px;

    /* transition: all .2s linear; */
}

.menu__item-link:hover, .menu__item-link:focus {
    background-color: var(--color-olive-green);
    color: var(--color-darkest-green);
}

.menu__item:last-child {
    padding-bottom: 13px;
    border-bottom: 1px solid #333;
}

@media screen and (max-width: 991px) {
    .menu {
        top: 112px;
    }

    .menu__list {
        max-width: 100%;
        overflow-y: auto;
    }
}