/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.section-sub-navigation {
  position: sticky;
  top: 0;
  background: var(--sk-color-six);
  padding: 9px 0;
  z-index: 11;
}
@media (max-width: 768px) {
  .section-sub-navigation {
    top: var(--header-height);
    z-index: 9;
  }
}
.section-sub-navigation__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: scroll;
  min-height: 36px;
}
.section-sub-navigation__menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-sub-navigation__menu li {
  margin-right: 22px;
}
.section-sub-navigation__menu a {
  display: block;
  white-space: nowrap;
  color: var(--sk-color-two);
  text-decoration: none;
  font-size: var(--sk-text--xs);
  line-height: 22px;
  position: relative;
}
.section-sub-navigation__menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.section-sub-navigation__menu a:hover::after {
  width: 100%;
}
.section-sub-navigation__menu a.active::after {
  width: 100%;
}
.section-sub-navigation__side {
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  .section-sub-navigation__side {
    display: none;
  }
}
.section-sub-navigation__side p {
  font-size: var(--sk-text--xs);
  font-weight: 500;
  margin-right: 14px;
  white-space: nowrap;
}
.section-sub-navigation .sk-btn {
  margin: 0;
  white-space: nowrap;
}
