.menu-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.menu__item {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  transition: background .3s;
}

.menu__item:last-child {
  border-bottom: 1px solid var(--border);
}

.menu__item:hover {
  background: rgba(200, 255, 0, .015);
}

.menu__item-link {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 40px 0;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.menu__item-link:hover {
  color: inherit;
}

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

.marquee__inner-wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: fit-content;
  will-change: transform;
}

.marquee__part {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee span {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  padding: 0 1vw;
  color: var(--black);
}

.marquee__img {
  width: 200px;
  height: 100px;
  margin: 0 2vw;
  border-radius: 12px;
  background-size: cover;
  background-position: 50% 50%;
}
