.faq__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--title-color);
}
@media (max-width: 990px) {
  .faq__title {
    font-size: 25px;
  }
}
.faq__item {
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
@media (max-width: 990px) {
  .faq__item {
    padding: 15px;
  }
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__top {
  color: var(--text-color);
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  padding-right: 40px;
}
.faq__arrow {
  position: absolute;
  right: 0;
  top: -8px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 20px 5px 20px;
  border: 1px solid var(--hover-site);
}
@media (max-width: 990px) {
  .faq__arrow {
    top: -5px;
    height: 30px;
    width: 30px;
    border-radius: 5px 12px 5px 12px;
  }
}
.faq__arrow svg {
  transition: 0.3s;
}
.faq__bottom {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  display: none;
  color: var(--text-color);
  opacity: 0.82;
  margin-top: 15px;
}
.faq .c-faq-active .faq__top {
  color: var(--hover-site);
}
.faq .c-faq-active .faq__bottom {
  display: block;
}
.faq .c-faq-active .faq__arrow svg {
  transform: rotate(180deg);
}

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