.sub-nav-wrapper {
  background: rgb(3, 115, 56);
}

.sub-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar {
  display: none;
}
.sub-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
  text-decoration: none;
}
.sub-nav__item::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.sub-nav__item:hover {
  color: rgba(255, 255, 255, 0.85);
}
.sub-nav__item.is-active {
  color: #fff;
}
.sub-nav__item.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 640px) {
  .sub-nav {
    padding: 0 4px;
  }
  .sub-nav__item {
    padding: 0 14px;
    font-size: 12px;
  }
}
