.faq_section {
  position: relative;
  padding: 70px 0 40px;
}
@media (max-width: 480px) {
  .faq_section {
    padding: 40px 0 40px;
  }
}
.faq_section .section-title h2 {
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .faq_section .section-title h2 {
    text-align: left;
    font-size: 30px;
  }
}
.faq_section__title_description {
  margin-bottom: 20px;
}
.faq_section__inner_item {
  border-bottom: 1px solid #373B41;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.faq_section .inner_item__question {
  cursor: pointer;
  padding: 15px 0;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4392156863);
}
.faq_section .inner_item__question.open {
  color: #ffffff;
}
.faq_section .inner_item__question.open .inner_item__question_icon svg {
  transform: rotate(-180deg);
}
.faq_section .inner_item__question_content {
  font-size: 16px;
  font-weight: bold;
}
.faq_section .inner_item__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease, padding 0.3s ease;
  padding: 0;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5019607843);
  opacity: 0;
}
.faq_section .inner_item__answer.active {
  padding: 15px 0;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
  opacity: 1;
}
.faq_section .inner_item__answer p {
  margin: 0;
}
