.menu {
    padding: 25px;
}

.menu-wrap {
    display: none;
    flex-direction: column;
    height: 100vh;
    overflow: auto;
    position: fixed;
    justify-content: start;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--color-white);
    padding-top: 130px;
}

.menu-wrap.show {
    display: flex;
}

.menu__item {
    cursor: default;
    position: relative;
    overflow: hidden;
    border-radius: 10vw;
    margin-bottom: 10px;
    text-align: center;
}

.menu__item-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.menu__item-link:focus,
.menu__item-link:focus-visible {
    color: var(--color-white);
}

.menu__item-link:focus:not(:focus-visible) {
    color: var(--color-black);
}

.marquee {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: var(--color-black);
    transform: translate3d(0, 101%, 0);
}

.marquee__inner-wrap {
    height: 100%;
    width: 100%;
    transform: translate3d(0, -200%, 0);
}

.marquee__inner {
    height: 100%;
    width: fit-content;
    align-items: center;
    display: flex;
    position: relative;
    animation: marquee 15s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    100% {
        transform: translate3d(50%, 0, 0);
    }
}

.menu__item-link,
.marquee span {
    white-space: nowrap;
    font-size: 30px;
    line-height: 45px;
    font-weight: bold;
    padding: 25px;
    color: var(--color-black) !important;
}

.marquee span {
    text-align: center;
    font-size: 25px;
    color: var(--color-white)!important;
    font-weight: 100;
}

.marquee__img {
    height: 75px;
    margin: 0 15px;
    border-radius: 50px;
    background-size: cover;
    background-position: 50% 50%;
    min-width: 130px;
}