/* Colors */
/* Background */
/* Typography */
/* Transition */
/* Header */
/* Slider */
/* Borders */
/* Shadow */
/* Links */
.menu-sticky {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: fixed;
  top: 120px;
  height: 64px;
  gap: 25px;
  background: #1d1d1b;
  transition: ease-in 0.2s;
  z-index: 99;
  padding: 15px 15px 25px 15px;
  opacity: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-sticky::-webkit-scrollbar {
  display: none;
}
.menu-sticky.active {
  opacity: 1;
}
.menu-sticky .menu.active a::after {
  width: 50%;
  transition: ease-in-out 0.2s;
}
.menu-sticky .menu a {
  color: #FBFBFA;
  position: relative;
  transition: ease-in-out 0.2s;
}
.menu-sticky .menu a:hover::after {
  width: 50%;
  transition: ease-in-out 0.2s;
}
.menu-sticky .menu a::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -5px;
  height: 2px;
  background-color: #FBFBFA;
  transition: ease-in-out 0.2s;
}

@media (max-width: 992px) {
  .menu-sticky {
    top: 159px;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .menu-sticky .menu {
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .menu-sticky {
    top: 119px;
  }
}

/*# sourceMappingURL=sticky-menu.css.map */
