@keyframes showHide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-anchor-menu {
  background: rgba(13, 12, 59, 0.6);
  margin: 0;
}
.l-anchor-menu__link {
  font-size: 1.125em;
  line-height: 2;
  letter-spacing: 3px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-family: "avenirbook", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 200ms all;
  white-space: nowrap;
  padding: 0 20px;
}
@media (max-width: 991.98px) {
  .l-anchor-menu__link {
    font-size: 1em;
    max-width: 200px;
    white-space: normal;
    line-height: 120%;
  }
}
@media (max-width: 575.98px) {
  .l-anchor-menu__link {
    font-size: 0.875em;
    max-width: 150px;
    font-size: 0.875em;
    max-width: 150px;
    white-space: normal;
    line-height: 110%;
  }
}
.l-anchor-menu__link.active {
  font-weight: 900;
  color: #fff;
}
.l-anchor-menu__links-container {
  max-width: fit-content;
  position: relative;
  margin: 0 auto;
}
.l-anchor-menu__links {
  justify-content: center;
  overflow: hidden;
  height: 65px;
  align-items: stretch;
  display: flex;
  position: relative;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .l-anchor-menu__links {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .l-anchor-menu__links {
    overflow-x: auto;
    touch-action: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    justify-content: flex-start;
    gap: 0;
  }
}
.l-anchor-menu__links::-webkit-scrollbar {
  display: none;
}