

/* Start:/local/templates/aio/assets/css/faq.css?17788541279715*/
.faq-hero {
  position: relative;
  min-height: 512px;
  background: #000;
  overflow: hidden;

  & .faq-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0, 0, 0, 0) 98.5%);
    pointer-events: none;
  }

  & .faq-hero__media {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  & .faq-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    opacity: 1;
  }

  & .faq-hero__inner {
    position: relative;
    z-index: 2;
    padding: 127px 0 152px;
    text-align: center;
  }

  & .faq-hero__content {
    width: 100%;
  }

  & .faq-hero__title {
    font-family: var(--third-family);
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2.56px;
    text-align: center;
    color: #fff;
  }

  & .faq-hero__text {
    width: 100%;
    font-family: var(--second-family);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #f4f5fd;
    margin: 16px 0 32px;
  }

  & .faq-hero__actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }

  & .faq-hero__link {
    margin: 0 auto;
    min-width: 159px;
    height: 56px;
  }

  & .faq-hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: #000;
    border-top: 1px solid #6e6e84;
    border-radius: 96px 96px 0 0;
    z-index: 2;
  }
}

.section-faq-page {
  background: #000;
  padding-top: 0;
  padding-bottom: 140px;

  & .faq-page__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }
}

.faq-category {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(13, 13, 19, 0.96) 0%, rgba(8, 8, 13, 0.98) 100%);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;

  &.faq-category--large {
    border-color: transparent;
    background: transparent;
  }

  &.is-open {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 24px 80px rgba(49, 63, 254, 0.14);
  }

  &.faq-category--large.is-open {
    border-color: transparent;
    box-shadow: none;
  }

  & .faq-category__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 18px 0;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
  }

  & .faq-category__arrow {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    color: transparent;
    background-image: url('/local/templates/aio/assets/css/../img/arrow-down-yellow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    transition: border-color 0.35s ease, background-image 0.35s ease;
  }

  &.is-open .faq-category__arrow {
    background-image: url('/local/templates/aio/assets/css/../img/arrow-up-yellow.svg');
  }

  & .faq-category__title {
    font-family: var(--third-family);
    font-size: 64px;
    line-height: 96%;
    letter-spacing: -0.04em;
    color: #fff;
    max-width: 1140px;
  }

  & .faq-category__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
  }

  &.is-open .faq-category__content {
    grid-template-rows: 1fr;
  }

  & .faq-category__questions {
    min-height: 0;
    overflow: hidden;
    padding: 0 44px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  &.is-open .faq-category__questions {
    padding-bottom: 44px;
  }
}

.faq-question {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #121218 0%, #0f0f15 100%);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;

  .faq-category.is-open & {
    opacity: 1;
    transform: translateY(0);
  }

  &.is-open {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 50px rgba(255, 255, 255, 0.04);
  }

  & .faq-question__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 40px;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
  }

  & .faq-question__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #efff4d;
    color: transparent;
    font-size: 0;
    line-height: 1;
    margin-top: 2px;
    background-image: url('/local/templates/aio/assets/css/../img/plus-sign.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    transition: background-color 0.35s ease, background-image 0.35s ease;
  }

  &.is-open .faq-question__icon {
    background: #313ffe;
    background-image: url('/local/templates/aio/assets/css/../img/minus-sign.svg');
    background-repeat: no-repeat;
    background-position: center;
  }

  & .faq-question__title {
    font-family: var(--third-family);
    font-size: 32px;
    line-height: 112%;
    letter-spacing: -0.04em;
    color: #fff;
  }

  & .faq-question__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  &.is-open .faq-question__content {
    grid-template-rows: 1fr;
  }

  & .faq-question__answer {
    min-height: 0;
    overflow: hidden;
    padding: 0 40px 0 112px;

    & p {
      padding-bottom: 34px;
    }
  }

  & .faq-question__answer p {
    font-family: var(--second-family);
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: rgba(244, 245, 253, 0.72);
  }
}

@media (max-width: 1200px) {
  .faq-category {
    & .faq-category__title {
      font-size: 52px;
    }
  }
}

@media (max-width: 992px) {
  .faq-hero {
    & .faq-hero__img {
      object-position: 62% top;
    }

    & .faq-hero__inner {
      padding-left: 10px;
      padding-right: 10px;
    }
  }

  .section-faq-page {
    padding-bottom: 110px;
  }

  .faq-category {
    border-radius: 32px;

    & .faq-category__trigger {
      gap: 20px;
      padding: 30px 28px;
    }

    & .faq-category__arrow {
      flex-basis: 48px;
      width: 48px;
      height: 48px;
      font-size: 26px;
    }

    & .faq-category__title {
      font-size: 42px;
    }

    & .faq-category__questions {
      padding: 0 28px 0;
    }

    &.is-open .faq-category__questions {
      padding-bottom: 28px;
    }
  }

  .faq-question {
    border-radius: 28px;

    & .faq-question__trigger {
      padding: 24px 24px;
      gap: 16px;
    }

    & .faq-question__icon {
      flex-basis: 44px;
      width: 44px;
      height: 44px;
      font-size: 28px;
    }

    & .faq-question__title {
      font-size: 28px;
    }

    & .faq-question__answer {
      padding: 0 24px 0 84px;
    }

    &.is-open .faq-question__answer {
      padding-bottom: 26px;
    }

    & .faq-question__answer p {
      font-size: 18px;
    }
  }
}

@media (max-width: 768px) {
  .faq-hero {
    & .faq-hero__img {
      object-position: 60% top;
    }

    & .faq-hero__inner {
      padding-top: 96px;
      padding-bottom: 120px;
    }

    & .faq-hero__title {
      font-size: 56px;
    }

    & .faq-hero__text {
      font-size: 16px;
      line-height: 24px;
    }

    & .faq-hero__bottom {
      height: 72px;
      border-radius: 72px 72px 0 0;
    }
  }

  .faq-category {
    & .faq-category__title {
      font-size: 34px;
    }
  }

  .faq-question {
    & .faq-question__title {
      font-size: 24px;
    }
  }
}

@media (max-width: 500px) {
  .faq-hero {
    & .faq-hero__img {
      object-position: 42% top;
      opacity: 0.92;
    }

    & .faq-hero__inner {
      padding-top: 88px;
      padding-bottom: 96px;
      padding-left: 16px;
      padding-right: 16px;
    }

    & .faq-hero__title {
      font-size: 56px;
      line-height: 114%;
    }

    & .faq-hero__text {
      font-size: 16px;
      line-height: 140%;
      margin: 8px 0 24px;
    }

    & .faq-hero__link {
      width: fit-content;
    }

    & .faq-hero__bottom {
      height: 52px;
      border-radius: 52px 52px 0 0;
    }
  }

  .section-faq-page {
    padding-bottom: 90px;

    & .faq-page__list {
      padding: 0;
      gap: 16px;
    }
  }

  .faq-category {
    border-radius: 28px;

    & .faq-category__trigger {
      gap: 14px;
      padding: 22px 16px;
      align-items: flex-start;
    }

    & .faq-category__arrow {
      flex-basis: 42px;
      width: 42px;
      height: 42px;
      font-size: 22px;
    }

    & .faq-category__title {
      font-size: 28px;
      line-height: 108%;
    }

    & .faq-category__questions {
      padding: 0 16px 0;
      gap: 12px;
    }

    &.is-open .faq-category__questions {
      padding-bottom: 16px;
    }
  }

  .faq-question {
    border-radius: 24px;

    & .faq-question__trigger {
      gap: 12px;
      padding: 18px 16px;
    }

    & .faq-question__icon {
      flex-basis: 38px;
      width: 38px;
      height: 38px;
      font-size: 24px;
    }

    & .faq-question__title {
      font-size: 20px;
      line-height: 120%;
    }

    & .faq-question__answer {
      padding: 0 16px 0 66px;
    }

    &.is-open .faq-question__answer {
      padding-bottom: 18px;
    }

    & .faq-question__answer p {
      font-size: 15px;
      line-height: 146%;
    }
  }
}
/* End */
/* /local/templates/aio/assets/css/faq.css?17788541279715 */
