/* sticky-bar */
.ka-sticky-bar {
  position: relative;
  max-height: 0px;
  opacity: 0.5;
  overflow: hidden;
}

.ka-sticky-bar .bar-desktop {
  background: #36c39b;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
}

.ka-sticky-bar .bar-desktop .bar-desktop__container {
  max-width: 1140px;
  margin: 0 auto;
}

.ka-sticky-bar .bar-desktop .bar-desktop__bar-box {
  display: flex;
  justify-content: space-between;
}

.ka-sticky-bar .bar-desktop .bar-desktop__text-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ka-sticky-bar .bar-desktop .bar-desktop__text-bar .bar-desktop__title {
  position: relative;
  font-size: 20px;
  padding-right: 16px;
  font-family: "kurious", sans-serif;
}

.ka-sticky-bar .bar-desktop .bar-desktop__text-bar .bar-desktop__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 1px;
  height: 20px;
  background: #fff;
}

.ka-sticky-bar .bar-desktop .bar-desktop__text-bar .bar-desktop__bar-list {
  display: flex;
  gap: 32px;
}

.ka-sticky-bar .bar-desktop .bar-desktop__text-bar .bar-desktop__bar-list li:hover a,
.ka-sticky-bar .bar-desktop .bar-desktop__text-bar .bar-desktop__bar-list a.active {
  color: #154949;
}

.ka-sticky-bar .bar-desktop .bar-desktop__download-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ka-sticky-bar .bar-desktop .bar-desktop__download-bar img {
  width: 48px;
}

.site-header.active {
  height: auto;
}

.site-header .header-2 {
  max-height: 1000px;
}

.site-header.active .header-2 {
  max-height: 0;
  overflow: hidden;
}

.site-header.active .ka-sticky-bar {
  opacity: 1;
  max-height: 1000px;
  transition: opacity 0.3s;
}

.ka-sticky-bar .bar-mobile {
  display: none;
  background: #36c39b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "kurious", sans-serif;
}

.ka-sticky-bar .bar-mobile .bar-mobile__bar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.ka-sticky-bar .bar-mobile .bar-mobile__menu-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ka-sticky-bar .bar-mobile .bar-mobile__menu-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #106f6d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ka-sticky-bar .bar-mobile.active .bar-mobile__menu-btn img {
  transform: rotate(-180deg);
  transition: all 0.2s;
}

.ka-sticky-bar .bar-mobile .bar-mobile__menu-btn img {
  width: 21px;
}

.ka-sticky-bar .bar-mobile .bar-mobile__list-box {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  max-height: 0px;
  overflow: hidden;
  position: relative;
  top: -1000px;
  transition: max-height 0.2s;
}

.ka-sticky-bar .bar-mobile.active .bar-mobile__list-box {
  max-height: 1000px;
  top: auto;
}

.ka-sticky-bar .bar-mobile .bar-mobile__bar-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}

.ka-sticky-bar .bar-mobile .bar-mobile__bar-list li a:hover {
  color: #154949;
}

.ka-sticky-bar .bar-mobile .bar-mobile__bar-list li:last-child {
  border-bottom: 1px solid #fff;
}

.ka-sticky-bar .bar-mobile .bar-mobile__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 21px;
}

.ka-sticky-bar .bar-mobile .bar-mobile__download img {
  width: 45px;
}

@media (max-width: 991.98px) {
  .ka-sticky-bar .bar-desktop {
    display: none;
  }

  .ka-sticky-bar .bar-mobile {
    display: block;
  }
}
/* end sticky-bar */
