.navigation__wrap {
  list-style-type: none;
  padding: 0 0 15px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .navigation__wrap {
    align-items: start;
    justify-content: start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}
.navigation ::-webkit-scrollbar {
  background-color: rgba(26, 24, 47, 0.15);
  border-radius: 3px;
  height: 3px;
}
.navigation ::-webkit-scrollbar-thumb {
  background: #cf222d;
  height: 3px;
  border-radius: 3px;
}
.navigation li {
  margin: 0 15px 15px 0;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
  border-radius: 6px;
  background: #2A2A2A;
  box-shadow: 0 5px 0 0 #000;
  cursor: pointer;
}
@media (max-width: 990px) {
  .navigation li {
    margin: 0 10px;
  }
}
.navigation li img {
  margin: 0 5px 0 0;
  object-fit: contain;
}
@media (max-width: 576px) {
  .navigation li:first-child {
    margin-left: 0;
  }
}

.mob-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: #2A2A2A;
  padding: 15px 10px;
  z-index: 9;
  transition: 0.3s;
  transform: translateY(-110%);
  pointer-events: none;
}
@media (max-width: 990px) {
  .mob-nav {
    justify-content: start;
  }
}
.mob-nav li {
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}
.mob-nav li img {
  margin: 0 5px 0 0;
  object-fit: contain;
}
@media (max-width: 576px) {
  .mob-nav li:first-child {
    margin-left: 0;
  }
}

.active-nav {
  transform: translateY(0);
  pointer-events: auto;
}

/*# sourceMappingURL=navigation.css.map */
