/* FAQ Hero */
.faq-hero {
  margin: 157px 24px 50px 24px;
  background-color: #f9faff;
  border-radius: 24px;
  padding: 64px 0;
}
.faq-hero__container .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-hero__container .breadcrumbs span {
  font-family: "Manrope", sans-serif;
  color: #020f58;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 767px) {
  .faq-hero {
    padding: 44px 0;
    margin: 124px 0 50px 0;
    border-radius: 0;
  }
}
.faq-hero__layout {
  margin: 32px 0 0 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 1100px) {
  .faq-hero__layout {
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .faq-hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.faq-hero__aside {
  min-width: 0;
}
@media (min-width: 993px) {
  .faq-hero__aside {
    position: sticky;
    top: 120px;
  }
}
.faq-hero__aside-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #011c51;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .faq-hero__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.faq-hero__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #5f646e;
  max-width: 500px;
}
.faq-hero__cta {
  margin-top: 8px;
  padding: 20px;
  border: 1px solid #d5deeb;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}
@media (max-width: 767px) {
  .faq-hero__cta {
    display: none;
  }
}
.faq-hero__cta-label {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #023fb7;
}
@media (max-width: 767px) {
  .faq-hero__cta-label {
    font-size: 16px;
    line-height: 22px;
  }
}
.faq-hero__cta-subtext {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #5f646e;
}
.faq-hero__cta-actions {
  margin: 14px 0 0 0;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: stretch;
  gap: 10px;
  margin-top: 6px;
}
@media (max-width: 560px) {
  .faq-hero__cta-actions {
    flex-direction: column;
  }
}
.faq-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.faq-hero__btn span,
.faq-hero__btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.faq-hero__btn svg path {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.faq-hero__btn--primary {
  border: 1px solid transparent;
  color: #fafafa;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  transition: color 0.35s ease;
}
.faq-hero__btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(2, 63, 183) 0%, rgb(1, 28, 81) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.faq-hero__btn--primary:hover::before {
  opacity: 1;
}
.faq-hero__btn--secondary {
  background: #fff;
  border: 1px solid #011c51;
  color: #011c51;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.faq-hero__btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(1, 28, 81) 0%, rgb(2, 63, 183) 100%);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.faq-hero__btn--secondary:hover {
  color: #fafafa;
  border-color: #011c51;
}
.faq-hero__btn--secondary:hover svg path {
  fill: #fafafa;
  /* stroke: #fafafa; */
}
.faq-hero__btn--secondary:hover::before {
  opacity: 1;
  transform: scale(1);
}
.faq-hero__main {
  min-width: 0;
}
.faq-hero__list {
  display: flex;
  flex-direction: column;
  padding: 8px 28px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #e6ebf3;
  box-shadow: 0 8px 32px rgba(1, 28, 81, 0.06);
}
@media (max-width: 767px) {
  .faq-hero__list {
    padding: 4px 16px;
    border-radius: 16px;
  }
}
.faq-hero__item {
  border-bottom: 1px solid #e6ebf3;
}
.faq-hero__item:last-child {
  border-bottom: none;
}
.faq-hero__item._active .faq-hero__toggle-icon--plus {
  display: none;
}
.faq-hero__item._active .faq-hero__toggle-icon--minus {
  display: block;
}
.faq-hero__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 22px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #011c51;
}
@media (max-width: 767px) {
  .faq-hero__question {
    gap: 12px;
    padding: 18px 0;
  }
}
.faq-hero__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #eef3fb;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #011c51;
}
@media (max-width: 767px) {
  .faq-hero__num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.faq-hero__question-text {
  flex: 1;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  color: #011c51;
}
@media (max-width: 767px) {
  .faq-hero__question-text {
    font-size: 16px;
    line-height: 21px;
  }
}
.faq-hero__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #011c51;
}
.faq-hero__toggle-icon {
  display: block;
}
.faq-hero__toggle-icon--minus {
  display: none;
}
.faq-hero__answer {
  overflow: hidden;
}
.faq-hero__answer-inner {
  padding: 0 0 22px 56px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: #5f646e;
}
.faq-hero__answer-inner p {
  margin: 0 0 10px;
}
.faq-hero__answer-inner p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .faq-hero__answer-inner {
    padding: 0 16px;
    font-size: 14px;
    line-height: 21px;
  }
}/*# sourceMappingURL=style.css.map */