.faq-section {
  /* padding: 80px 0px; */
  background-color: var(--black);
}
.faq-section.bg-white {
  background-color: var(--white);
}

.faq-section.bg-white .faq-content h2:after {
  content: url("/assets/img/curly-arrow-right-green.svg");
}
.faq-section.bg-white.coral .faq-content h2:after, .faq-section.coral .faq-content h2:after {
  content: url("/assets/img/curly-arrow-right-coral.svg");
}

.faq-section .faq-content {
}

.faq-section .faq-content .accordion {
  width: 100%;
}

.faq-section .faq-content .accordion button:not(:first-of-type) {
  margin-top: 24px;
}

.faq-section.bg-white button.accordion {
  background-color: var(--white);
  color: var(--black);
}

.faq-section.bg-white button.accordion:before {
  border-color: var(--black);
}

.faq-section.bg-white button.accordion.is-open:before {
  border-color: #85C9BD;
}

/* .faq-section.bg-white .accordion-content{
    border-bottom: 1px solid #aeaeae;
} */

.faq-section.bg-white .accordion-content {
  background-color: var(--white);
  border-bottom: 1px solid #aeaeae;
}

.faq-section.bg-white .accordion-content p, .faq-section.bg-white .accordion-content ul li{
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.faq-section.bg-white .accordion-content p, .faq-section.bg-white .accordion-content ul{
  margin-bottom: 0;
}
.faq-section .faq-content h2 {
  margin: 0;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: -0.04em;
  position: relative;
}

.faq-section .faq-content h2:after {
  content: url("/assets/img/curly-arrow-right.svg");
  position: absolute;
  left: -70px;
  bottom: -280px;
}
.faq-section.bg-white .faq-content h2 {
  color: var(--black);
}


button.accordion {
  width: 100%;
  background-color: var(--black);
  border: none;
  outline: none;
  text-align: left;
  padding-bottom: 32px;
  color: var(--white);
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 16px;
  /* border-bottom: 1px solid #AEAEAE; */
}

button.accordion:before {
  content: " ";
  border: 2px solid var(--white);
  width: 8px;
  display: block;
  transform: rotate(90deg);
  transition: transform .2s ease-out;
}

button.accordion.is-open:before {
  transform: rotate(0);
  border-color: var(--coral);
}

button.new-accordion {
  padding-bottom: 24px;
}

button.new-accordion.is-open {
  border-bottom: 0px solid var(--peach) !important;
  padding-bottom: 24px;
}

.accordion-content {
  background-color: var(--black);
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-content p {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.faq-section.bg-white .accordion-content p {
    margin-bottom: 24px;
}
@media all and (max-width: 1024px){
    .faq-section .faq-content h2:after {
      content: "";
      display: none;
    }
}
@media all and (max-width: 820px){
    .faq-section {
    /* padding: 56px 32px; */
    }
    .faq-section .faq-content {
    /* flex-direction: column;
    gap: 40px; */
    }
    .faq-section .faq-content h2:after {
      content: "";
      display: none;
    }
}