.faq {
  padding: 40px 0;
}
.faq__container {
  scroll-margin-top: 100px;
}
.faq__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  color: #21272a;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .faq__title {
    margin-bottom: 16px;
  }
}
.faq__accordion {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  background-color: #fff;
  border: 1px solid #dde1e6;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #fff;
  color: #21272a;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.1s ease, color 0.1s ease;
}
.faq__question[aria-expanded=true] .faq__icon-line--vertical {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .faq__question:hover {
    background-color: #f5f5f5;
  }
}
.faq__question-text {
  padding-right: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
}
@media screen and (max-width: 768px) {
  .faq__question-text {
    font-size: 16px;
    text-align: left;
  }
}
.faq__icon {
  flex-shrink: 0;
  flex-grow: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__icon[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}
.faq__icon-svg {
  width: 24px;
  height: 24px;
}
.faq__icon-line {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.1s ease;
}
.faq__answer {
  background-color: #ffffff;
  overflow: hidden;
  animation: faqFadeIn 0.1s ease;
}
.faq__answer[hidden] {
  display: none;
}
.faq__answer-content {
  padding: 16px 8px 16px 16px;
  font-size: 16px;
  line-height: 140%;
}
.faq__answer-content p:last-child {
  margin-bottom: 0;
}
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */