/* FAQ module */
.faq_module{
  padding: 56px 24px;
}
.faq_module h2{
  text-align: center;
  margin-bottom: 24px;
}
.faq_module__list{
  max-width: 840px;
  margin: 0 auto;
}
.faq_module__item{
  border: 1px solid #e3e6ee;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq_module__question{
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  background: #f9fafb;
}
.faq_module__answer{
  padding: 0 18px 16px;
  display: none;
}
.faq_module__item.is-open .faq_module__answer{
  display: block;
}
