.faq-page {
  font-family: "Open Sans", sans-serif;
  min-height: 50vh;
}

.faq-page__list {
  width: 70%;
  margin: auto;
  padding: 0;
  list-style: none;
}

.faq-page__list--item {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  background: inherit;
  box-shadow: inherit;
  padding: 18px 0;
  border-bottom: 1px solid #f3f3f3;
}

.faq-page__list--item:first-child {
  padding-top: 0px;
}

.faq-page__list--item .faq_title {
  font-weight: 600;
  font-size: 14px;
  position: relative;
  color: #5f5f5f;
  padding: 0px;
  padding-right: 20px;
}

.faq-page__list--item .faq_title i {
  position: absolute;
  color: #ff6464;
  top: 50%;
  right: 0px;
  font-size: 12px;
}

.faq-page__list--item .faq_title:hover {
  color: #ff6464;
}

.faq-page__list--item .faq_content {
  color: #5f5f5f;
  font-size: 14px;
  max-height: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: top;
}

.faq-page__list--item .faq_content.open {
  transform: scaleY(1);
  max-height: 300px;
  padding-top: 10px;
  padding-right: 20px;
}

.faq-page__list--item .faq_content p {
  margin: 0;
}

.faq-page__list--faq-response {
  overflow: hidden;
  height: 0;
  padding: unset;
  transition: all 0.5s ease;
  color: #5f5f5f;
  padding: 10px 0 0 0;
  font-size: 14px;
}

@media only screen and (max-width: 992px) {
  .faq-page__list {
    width: 90%;
  }
}

