#faq {
  padding: 50px 0;
}

.faq_list {
  max-width: 760px;
  margin: 0 auto;
  display: block;
}

.faq_container_row {
  width: 100%;
  padding: 0;
}

.faq_card__6nbv8 {
  background: #fff;
  border: 1px solid #eadede;
  border-left: 4px solid var(--project-red);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}

.faq_card__6nbv8:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.faq_itemHeader__fyOGz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: #fff;
  border: none;
  border-radius: 0;
}

.faq_itemHeader__fyOGz svg{
    width: 15px;
}

.faq_faqAnswer__rnIS1 {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  line-height: 1.35;
}

.faq_icon__3fFrk {
  width: 14px;
  height: 14px;
  opacity: 0.55;
  transition: 0.3s ease;
}

.faq_description__d7AMl {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 400;
  color: #7b7b7b;
  line-height: 1.55;
  transition: 0.35s ease;
}

/* Когда карточка открыта */
.faq_card__6nbv8.active .faq_description__d7AMl {
  height: auto;
  padding: 0 22px 20px;
}

.faq_card__6nbv8.active .faq_icon__3fFrk {
  transform: rotate(45deg);
}

@media (max-width: 768px) {

  .faq_itemHeader__fyOGz {
    padding: 15px 18px;
  }

  .faq_faqAnswer__rnIS1 {
    font-size: 15px;
  }

  .faq_description__d7AMl {
    font-size: 14px;
    padding: 0 18px;
  }

  .faq_card__6nbv8.active .faq_description__d7AMl {
    padding: 0 18px 16px;
  }
}