.faq {
  position: relative;
}

.faq__content-grid {
  padding: 0 40px;
}

@media (max-width: 767px) {
  .faq__content-grid {
    padding: 0 24px;
  }
}

.faq__title-container {
  padding-bottom: 20px
}

@media (max-width: 767px) {
  .faq__title-container {
    padding-bottom:24px
  }
}

.faq__title {
  margin-bottom: 24px
}

.faq__description {
  margin-bottom: 64px
}

@media (max-width: 767px) {
  .faq__title {
    margin-bottom: 0;
  }

  .faq__description {
    margin-bottom: 32px
  }
}

.faq__subtitle {
  font-size: clamp(18px,3vw,22px);
  line-height: 1.5;
  margin-bottom: 34px;
  max-width: 35.5em
}

@media (max-width: 767px) {
  .faq__subtitle {
    margin-bottom:0;
    margin-top: 16px
  }
}

.faq__list {
  background-color: var(--white-color);
  list-style-type: none;
  padding: 0
}


.circular-toggle path {
  fill: currentColor;
}

.faq-item {
  position: relative;
  z-index: 0
}

.faq-item:first-of-type:before {
  background-color: transparent;
  border-top: 1px solid var(--border-color);;
  top: 0;
  z-index: 1;
}

.faq-item:after,.faq-item:first-of-type:before {
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 100vw
}

.faq-item:after {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);;
  bottom: 0;
  height: 100%;
  z-index: -1
}

.faq-item__question-block {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  min-height: 96px;
  padding: 32px 0;
  position: relative;
  width: 100%;
}

.faq-item__question-block:hover .faq-item__toggle-icon circle {
  fill: var(--primary-green-color); !important;
  color: var(--primary-green-color);
}

@media (max-width: 767px) {
  .faq-item__question-block {
    padding: 24px 0
  }
}

.faq-item__question {
  color: var(--primary-text-color);
  font-family: Rouben;
  font-size: clamp(20px,3.5vw,24px);
  line-height: 1.3;
  max-width: 80%
}

.faq-item__toggle {
  color: var(--primary-text-color);
  height: 28px;
  right: 26px;
  width: 28px
}

.faq-item__toggle circle,.faq-item__toggle path {
  transform-origin: 50% 50%;
  transition: .33s ease-in-out
}

.faq-item__content-block {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease;
  width: 100%;
}

.faq-item.is-active .faq-item__content-block {
  opacity: 1;
  height: auto;
  padding: 0 0 var(--space-l);
}

.faq-item.is-active circle {
  fill: var(--primary-green-color); !important;
  color: var(--primary-green-color);
}

.faq-item.is-active path:first-of-type {
  transform: scaleY(0)
}

.faq-item__answer {
  color: var(--secondary-text-color);
  font-size: clamp(16px,2.5vw,18px);
  line-height: 1.5;
  max-width: 915px;
  width: 75%
}

.faq-item__answer a {
  font-family: Geogrotesque-Medium,sans-serif
}

.faq-item__answer p+p {
  margin-top: 1em
}

.faq-item__answer a {
  color: var(--primary-text-color);
  text-decoration: underline;
}

.faq-item__answer ol {
  list-style-position: inside;
  padding-left: 0
}

.faq-item__answer ol ::marker {
  font-family: Geogrotesque-Medium,sans-serif;
}

.faq-item__answer ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.faq-item__answer ::marker {
  color: var(--primary-green-color);
}

.faq-item__answer b,.faq-item__answer strong {
  color: var(--primary-text-color);
  font-family: Geogrotesque-Medium,sans-serif;
}

@media (max-width: 767px) {
  .faq-item__answer {
    width:100%;
  }
}
