/* Faq */
.faq-section .title {
  margin-bottom: 20px;
}

.faq__item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.faq__header {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  user-select: none;
  padding: 10px 34px 10px 0;
}

.faq__item.is-open .faq__header {
  background-color: var(--accent-color);
}

.faq__header:before,
.faq__header:after {
  content: '';
  width: 23px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  right: 0;
  top: 23px;
}

.faq__header:after {
  transform: rotate(-90deg);
}

.faq__item.is-open .faq__header:after {
  display: none;
}

.faq__content {
  padding: 10px 0 20px;
}

.faq__item:not(.is-open) .faq__content {
  display: none;
}

.faq__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .faq__header {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .faq__item.is-open .faq__header {
    box-shadow: -15px 0 0 var(--accent-color), 15px 0 0 var(--accent-color);
  }
}
/* ! Faq */
