.faq {
  background: var(--secondary);
  position: relative;
  padding: var(--sp) 0;
  color: var(--white);
  z-index: 2;
}

.faq__container {
  display: flex;
  justify-content: space-between;
}

.faq__left {
  width: 39.1rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.faq__text {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  width: 29.8rem;
}

.faq__right {
  width: 76.9rem;
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: faq;
  transition: var(--tr);
  overflow: hidden;
}

.faq__more {
  cursor: pointer;
  margin: 5.5rem auto 0;
}

.faq .item {
  padding: 2rem 8rem 0rem 4rem;
  border: 0.1rem solid var(--white);
  counter-increment: faq;
  transition: var(--tr);
}

.faq .item._active {
  background: var(--white);
  color: var(--secondary);
}

.faq .item._active .item__title:after {
  transform: rotate(135deg);
  background: center/contain no-repeat url("../../img/plus-dark.svg");
}

.faq .item._active .item__answer {
  opacity: 1;
}

.faq .item__title {
  font: 400 var(--h4)/1.1 var(--heading-font-family);
  letter-spacing: -0.03em;
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
}

.faq .item__title:before {
  content: counter(faq, decimal-leading-zero);
  font-weight: 200;
}

.faq .item__title:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 2rem);
  aspect-ratio: 1/1;
  width: 4rem;
  background: center/contain no-repeat url("../../img/plus-white.svg");
  transition: var(--tr);
}

.faq .item__answer-wrap {
  height: 0;
  overflow: hidden;
  transition: var(--tr);
}

.faq .item__answer {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  padding-bottom: 2rem;
  opacity: 0;
  transition: var(--tr);
  text-indent: 4.5rem;
}

@media (max-width: 1260px) {
  .faq__container {
    flex-direction: column;
    gap: 50px;
  }

  .faq__left {
    text-align: center;
    width: 100%;
  }

  .faq__left .btn {
    margin: 0 auto;
  }

  .faq__title br {
    display: none;
  }

  .faq__text {
    width: 100%;
  }

  .faq__right {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .faq .item {
    padding: 20px 20px 0px 20px;
  }

  .faq .item__title {
    font-family: var(--heading-font-family);
    font-weight: 400;
    font-size: var(--h5);
    line-height: 1.1;
    letter-spacing: -0.03em;
    padding-right: 20px;
    gap: 10px;
  }

  .faq .item__title:after {
    left: calc(100% - 20px);
  }

  .faq .item__answer {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    text-indent: 27px;
  }
}