/* Faq */
.faq__item {
  box-shadow: 0 0 0 1px var(--border-color) inset;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faq__item.is-open {
    box-shadow: none;
    background: var(--light-blue-bg);
    background: linear-gradient(315deg, #FFFFFF 0%, var(--light-blue-bg) 40%);
}

.faq__header {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  user-select: none;
  padding: 12px 30px 12px 50px;
}

.faq__item:hover .faq__header {
  color: var(--accent-color);
}

.faq__content {
  padding: 0 30px 28px 50px;
}

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

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

.faq__header:before,
.faq__header:after {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  width: 14px;
  height: 2px;
  background: linear-gradient(to right, #00376e 0%, #008ad8 100%);
}

.faq__header:after {
  background: #6bcdfe;
  transform: rotate(90deg);
}

.faq__item:hover .faq__header:before {
  background: linear-gradient(to right, #008ad8 0%, #00376e 100%);
}

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

@media (max-width: 767.98px) {
  .faq__header {
    padding-right: 15px;
  }

  .faq__content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* ! Faq */