.overlay-menu__items {
  gap: 32px;
}

.overlay-menu__group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.overlay-menu__item {
  font-size: 2.4rem;
  line-height: 1;
}

.overlay-menu__subitems {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.overlay-menu__subitem {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 10px;
  line-height: 2;
  opacity: 0;
  transition: opacity .5s ease-in-out .4s, color .4s cubic-bezier(0, .55, .45, 1), transform .4s cubic-bezier(0, .55, .45, 1);
  white-space: nowrap;
}

.overlay-menu__subitem::before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  width: 6px;
}

.overlay-menu__subitem:hover {
  color: #9c9c9c;
  transform: translateX(10px);
}

.overlay-menu.active .overlay-menu__subitem {
  opacity: 1;
}

@media screen and (max-width: 576px) {
  .overlay-menu__items {
    gap: 32px;
  }

  .overlay-menu__item {
    font-size: clamp(2.4rem, 2.4rem + (100vw - 375px) * (27 - 24) / (576 - 375), 2.7rem);
    line-height: 1;
  }
}
