.sec-faq-banner {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 440px;
}
@media (min-width: 992px) {
  .sec-faq-banner {
    min-height: 520px;
  }
}

.faq-banner-media {
  position: absolute;
  left: 42%;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.faq-banner-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(to right, #ffffff 20%, transparent 100%);
  z-index: 1;
}

.faq-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.faq-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 440px;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .faq-banner-inner {
    min-height: 520px;
  }
}

.faq-banner-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-banner-heading {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 768px) {
  .faq-banner-heading {
    font-size: 3.25rem;
  }
}
@media (min-width: 992px) {
  .faq-banner-heading {
    font-size: 3.5rem;
  }
}

.faq-banner-body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.8;
  margin: 0;
  max-width: 46ch;
}

.sec-faq-group {
  background-color: #ffffff;
  padding-block: 5rem;
}
.sec-faq-group--tinted {
  background-color: #f4f8fb;
}
.sec-faq-group--last {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.faq-group-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-group-heading {
  font-family: "Marcellus", serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .faq-group-heading {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  .faq-group-heading {
    font-size: 3.25rem;
  }
}

.faq-group-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a2e;
  margin: 0;
}

.faq-list {
  max-width: 1100px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-item.is-open .faq-question {
  color: #2388c2;
}

.faq-question-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: inherit;
  line-height: 1.4;
  flex: 1;
  transition: color all 0.2s ease;
}

.faq-question-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 136, 194, 0.4);
  flex-shrink: 0;
  position: relative;
  transition: background-color all 0.2s ease, border-color all 0.2s ease;
}
.faq-question-icon::before, .faq-question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #2388c2;
  border-radius: 2px;
  transition: transform all 0.2s ease, opacity all 0.2s ease;
}
.faq-question-icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-question-icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-question-icon {
  background-color: #2388c2;
  border-color: #2388c2;
}
.faq-item.is-open .faq-question-icon::before, .faq-item.is-open .faq-question-icon::after {
  background-color: #ffffff;
}
.faq-item.is-open .faq-question-icon::after {
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.8;
}
.faq-answer-inner p {
  margin: 0 0 0.75rem;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-answer-inner a {
  color: #2388c2;
  text-decoration: underline;
}
.faq-answer-inner strong {
  font-weight: 600;
  color: #1a1a2e;
}
.faq-answer-inner ul,
.faq-answer-inner ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.faq-answer-inner li {
  margin-bottom: 0.25rem;
}

.faq-content-block {
  max-width: 72ch;
  margin-inline: auto;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.85;
}
.faq-content-block p {
  margin: 0 0 1rem;
}
.faq-content-block p:last-child {
  margin-bottom: 0;
}
.faq-content-block h2,
.faq-content-block h3,
.faq-content-block h4 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  margin: 1.5rem 0 0.75rem;
  line-height: 1.25;
}
.faq-content-block h2 {
  font-size: 1.75rem;
}
.faq-content-block h3 {
  font-size: 1.375rem;
}
.faq-content-block h4 {
  font-size: 1.125rem;
}
.faq-content-block ul,
.faq-content-block ol {
  margin: 1rem 0;
  padding-left: 1.5em;
}
.faq-content-block ul {
  list-style: disc;
}
.faq-content-block ol {
  list-style: decimal;
}
.faq-content-block li {
  margin-bottom: 0.5rem;
}
.faq-content-block li::marker {
  color: #2388c2;
}
.faq-content-block strong {
  font-weight: 600;
  color: #2388c2;
}
.faq-content-block a {
  color: #2388c2;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-content-block a:hover {
  color: #1a6e9e;
}
.faq-content-block img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.25rem 0;
  display: block;
}

.faq-content-block + .faq-list {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .faq-content-block + .faq-list {
    margin-top: 2.5rem;
  }
}

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