{# FAQ — Main Heading #}

.faq__main-heading {
  font-family: "Avenir Next LT W01 Bold", sans-serif !important;
  font-size: 40px;
  font-weight: 700;
  color: #303ab2 !important;
  text-align: center;
  margin: 0 auto;
  line-height: 49.52px;
  width: 100%;
  max-width: 680px;
}


{#  FAQ — Group (section wrapper) #}
.faq__group {
  margin-bottom: 32px;
}


{#  FAQ — Group Heading #}
.faq__group-heading {
 
  background-color: #f0f8ff;
  padding: 16px 16px;
}

.faq__group-heading--first {
  margin-top: 80px;
}

.faq__group-heading-text{
  font-family: "Avenir Next LT W01 Bold", sans-serif;
  font-size: 30px !important;
  font-weight: 700;
  color: #303ab2 !important;
  margin: 0 !important;
  line-height: 41.48px;
}


{#  FAQ Item — BEM Component #}
.faq-item {
  border-bottom: 1px solid #dedede;
}

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 0.625em 1.25em 1em;
  cursor: pointer;
  width: 100%;
}

.faq-item__title-wrapper {
  flex-grow: 1;
  margin-right: 10px;
}

.faq-item__title {
  font-family: "Avenir Next LT W01 Bold", sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-item__icon-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item__icon-arrow--rotated {
  transform: rotate(-135deg);
}

.faq-item__content {
  display: none;
  padding: 0 1em 1.25em 1em;
}

.faq-item__answer {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}


{#   Responsive #}

@media only screen and (max-width: 480px) {
  .faq__main-heading {
    font-size: 22px;
  }

  .faq-item__header {
    padding: 0.75em 0.625em 0.75em 1em;
  }

  .faq-item__title {
    font-size: 13px;
  }
}