.content .faq__title {
  margin-bottom: 25px;
}
.content .faq__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.content .faq__item {
  padding: 25px 40px;
  position: relative;
  cursor: pointer;
  background: var(--faq-bg);
  border-radius: 6px;
}
@media (max-width: 990px) {
  .content .faq__item {
    padding: 10px;
  }
}
.content .faq__item-active {
  background: var(--faq-bg-active);
}
.content .faq__item-active .faq__item-title::after {
  content: "";
  transform: rotate(180deg);
}
.content .faq__item-active .faq__item-text {
  display: block;
}
.content .faq__item-title {
  margin: 0;
  position: relative;
  padding-right: 40px;
}
.content .faq__item-title::after {
  content: "";
  background: url(../../img/arrow-bottom.svg);
  background-size: 35px 35px;
  height: 35px;
  width: 35px;
  display: block;
  position: absolute;
  right: 0;
  top: -3.5px;
  transition: 0.3s;
  z-index: 2;
}
@media (max-width: 990px) {
  .content .faq__item-title::after {
    background-size: 25px 25px;
    height: 25px;
    width: 25px;
    top: -1.5px;
  }
}
.content .faq__item-title::before {
  content: "";
  background: var(--text-color);
  height: 40px;
  width: 40px;
  position: absolute;
  border-radius: 50%;
  right: -2.5px;
  top: -6.5px;
}
@media (max-width: 990px) {
  .content .faq__item-title::before {
    height: 30px;
    top: -4.5px;
    width: 30px;
  }
}
.content .faq__item-title span {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
}
@media (max-width: 990px) {
  .content .faq__item-title span {
    font-size: 18px;
    line-height: 22px;
  }
}
.content .faq__item-text {
  margin: 10px 0 0 0;
  display: none;
}
.content .faq__item-text p {
  margin: 0;
}

/*# sourceMappingURL=faq.css.map */
