.faq-section {
  background-color: #000;
  position: relative;
  padding-top: 100px;
}

.faq-section::after {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("/assets/images/faq-section/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-section__container {
  text-align: center;
  position: relative;
  top: -100px;
}

.faq-section__subtitle {
  font-family: "Astrados", sans-serif;
  color: #d6001c;
  font-weight: 400;
  font-size: 128px;
  line-height: 100%;
  position: relative;
  bottom: -70px;
}

.faq-section__title {
  font-family: "Akrobat", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;

  background: #000000;
  background: linear-gradient(
    150deg,
    rgb(0, 0, 0) 0%,
    rgb(0, 0, 0) 25%,
    rgba(255, 255, 255, 1) 60%,
    rgb(0, 0, 0) 80%,
    rgb(0, 0, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
  margin-top: 60px;
}

.faq-section__item {
  border-bottom: 1px solid #ffffff33;
}

.faq-section__item:first-of-type {
  border-top: 1px solid #ffffff33;
}

.faq-section__item-button {
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.faq-section__item-question,
.faq-section__item-answer {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: #fff;
  text-align: left;
}

.faq-section__item-answer {
  font-size: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.open .faq-section__item-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 30px;
}

.faq-section__item-icon {
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.open .faq-section__item-icon {
  transform: rotate(180deg);
}

@media (max-width: 1100px) {
  .faq-section__title {
    background: linear-gradient(
      150deg,
      rgb(0, 0, 0) 0%,
      rgb(0, 0, 0) 25%,
      rgba(255, 255, 255, 1) 50%,
      rgb(0, 0, 0) 90%,
      rgb(0, 0, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

@media (max-width: 900px) {
  .faq-section__list {
    margin: 0 20px;
    margin-top: 60px;
  }
  .faq-section__title {
    background: linear-gradient(
      150deg,
      rgb(0, 0, 0) 0%,
      rgb(0, 0, 0) 20%,
      rgba(255, 255, 255, 1) 50%,
      rgb(0, 0, 0) 95%,
      rgb(0, 0, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding-bottom: 0;
  }

  .faq-section__subtitle {
    font-size: 64px;
    bottom: -18px;
  }

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

@media (max-width: 500px) {
  .faq-section__list {
    margin-top: 40px;
  }

  .faq-section__item-question {
    font-size: 16px;
  }

  .faq-section__item-answer {
    font-size: 12px;
  }
}
