.faq_container {
  padding: 80px 0;
}
.faq_container .faq_outer h2 {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.faq_container .faq_outer h2.small_title {
  font-size: 32px;
  line-height: 48px;
}

.faqs_wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.faqs_wrapper .faq_item {
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid #e7e7ea;
  padding: 16px 24px;
  cursor: pointer;
}
.faqs_wrapper .faq_item.active .faq_question::after {
  transform: rotate(45deg);
}
.faqs_wrapper .faq_item .faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  padding: 12px 0;
}
.faqs_wrapper .faq_item .faq_question::after {
  content: "";
  background: url("../svg/icon_plus.svg");
  transition: all 0.3s ease;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-position: center;
}
.faqs_wrapper .faq_item .faq_answer {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
  position: absolute;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.faqs_wrapper .faq_item .faq_answer a {
  color: #614efa;
  font-weight: 600;
}
.faqs_wrapper .faq_item .faq_answer.show {
  max-height: 5000px;
  visibility: visible;
  opacity: 1;
  max-height: 5000;
  position: static;
}

.more_questions {
  margin-top: 48px;
  color: #131032;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.more_questions a {
  color: #614efa;
  font-weight: 700;
}

.faq_outer h2 {
  color: #131032;
  text-align: center;
  margin-bottom: 32px;
}

.faq_container:has(+ .toggle_banner) {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .faq_container {
    margin-bottom: 60px;
  }
  .faq_container .faq_outer h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .faqs_wrapper .faq_item {
    padding: 16px;
  }
  .faqs_wrapper .faq_item .faq_question::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-position: center;
    flex: 0 0 16px;
  }
  .faqs_wrapper .faq_item .faq_question strong {
    font-size: 16px;
    line-height: 28px;
  }
  .more_questions {
    font-size: 16px;
    line-height: 28px;
  }
  .more_questions a {
    font-size: 16px;
    line-height: 28px;
  }
  .faq_outer h2 {
    font-size: 26px;
    line-height: 36px;
  }
}