
.faq-page {
  padding-bottom: 226px;
}

.faq-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.faq-page__title {
  padding: 0 calc((100vw - 1514px) / 2);
  margin-bottom: 0px;
}

.faq-page__list {
  padding: 0 calc((100vw - 1514px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.faq-navigation {
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.faq-navigation.sticky {
  position: fixed;
  top: 116px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 24px 0px #00000024;
          box-shadow: 0px 0px 24px 0px #00000024;
}

.faq-navigation.sticky + .faq-page__list {
  padding-top: 76px;
}

.faq-navigation .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.faq-navigation__wrapper {
  overflow: hidden;
}

.faq-navigation__link {
  white-space: nowrap;
  padding: 0 16px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background-color: #f5f5f7;
  color: #0e0e0e;
  font-size: 14px;
  line-height: 1.4285714286;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.faq-navigation__link:active {
  background-color: #e1e1e3;
}

.faq-navigation__link.active {
  background-color: #0e0e0e;
  color: #fff;
}

.faq-navigation__link.active:active {
  background-color: #0e0e0e;
  color: #fff;
}
.faq-navigation__link:hover{
    color: #0e0e0e;
}
.faq-navigation__link.active:hover {
  background-color: #0e0e0e;
  color: #fff;
}

.faq-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.faq-section__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1666666667;
  color: #0e0e0e;
  margin-bottom: 0px;
}

.faq-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid #f5f5f7;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.faq-item:active {
  border-color: #0e0e0e;
}

.faq-item:active .faq-item__header {
  background-color: transparent;
}

.faq-item__header {
  gap: 8px;
  cursor: pointer;
  padding: 0 32px;
  padding-top: 20px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f5f5f7;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.faq-item__header svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faq-item__header.active {
  background-color: transparent;
  padding-bottom: 12px;
}

.faq-item__header.active .vertical {
  rotate: 90deg;
}

.faq-item__header .vertical {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.faq-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #0e0e0e;
}

.faq-item__content {
  max-width: 820px;
  padding-left: 32px;
  padding-right: 32px;
  color: #7d7d7d;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  padding-bottom: 20px;
}

.collapse:not(.collapse_show) {
  display: none;
}

@media (max-width: 1608px) {
  .faq-page__title {
    padding: 0 40px;
  }

  .faq-page__list {
    padding: 0 40px;
  }
}
@media (max-width: 1440px) {
  .faq-navigation.sticky {
    top: 113px;
  }
}
@media (max-width: 1024px) {
  .faq-page__wrapper {
    gap: 24px;
  }

  .faq-page__title {
    padding: 0 20px;
  }

  .faq-page__list {
    padding: 0 20px;
  }

  .faq-navigation.sticky + .faq-page__list {
    padding-top: 72px;
  }

  .faq-navigation {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .faq-navigation.sticky {
    top: 0px;
  }
}

@media (max-width: 768px) {
  .faq-page__wrapper {
    gap: 12px;
  }

  .faq-page__list {
    gap: 40px;
  }

  .faq-navigation.sticky + .faq-page__list {
    padding-top: 60px;
  }

  .faq-navigation.sticky {
    top: 0px;
  }

  .faq-section {
    gap: 12px;
  }

  .faq-section__title {
    font-size: 20px;
  }

  .faq-section__list {
    gap: 8px;
  }

  .faq-item__header {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-item__header.active {
    padding-bottom: 12px;
  }

  .faq-item__title {
    font-size: 14px;
  }

  .faq-item__content {
    padding-left: 20px;
    padding-right: 52px;
    font-size: 14px;
    gap: 8px;
    padding-bottom: 18px;
  }
}

@media (max-width: 568px) {
  .faq-page__title {
    padding: 0 12px;
  }

  .faq-page__list {
    padding: 0 12px;
    gap: 32px;
  }

  .faq-navigation.sticky {
    top: 0px;
  }

  .faq-item__header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .faq-item__header.active {
    padding-bottom: 12px;
  }

  .faq-item__content {
    padding-bottom: 16px;
  }
}
@media (hover: hover) {
  .faq-navigation__link:hover {
    background-color: #e1e1e3;
  }

  .faq-navigation__link.active:hover {
    background-color: #0e0e0e;
    color: #fff;
  }

  .faq-item:hover {
    border-color: #0e0e0e;
  }

  .faq-item:hover .faq-item__header {
    background-color: transparent;
  }
}