.faqs_wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.faq_container.hidden {
  display: none;
}
.faq_container {
  padding: 60px 0;
}
.faq_container h2 {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 40px;
  text-align: center;
}
.faqs_wrapper .faq_item {
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid #e7e7ea;
  padding: 16px 24px;
}
.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: url('../svg/icon_plus.svg');
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
}
.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.show {
  max-height: 5000px;
  visibility: visible;
  opacity: 1;
  max-height: 5000;
  position: static;
}
.faqs_wrapper .faq_item.active .faq_question:after {
  transform: rotate(45deg);
}
