/* faqSec */
.faqSec {
  background-color: white;
}
.faqSec .headingXL {
  color: #1e1f1f;
  margin-bottom: 56px;
  text-align: center;
}

.faqSec .faqListing {
  width: 720px;
  max-width: 100%;
  margin: 0px auto;
}

/* FAQ Item */
.faqWrapper {
  padding: 20px 12px;
  border-bottom: 1px solid var(--neutral400);
}

.faqWrapper .faqHeader {
  position: relative;
  cursor: pointer;
  padding-right: 32px;
}

.faqWrapper .faqHeader::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0px;
  width: 24px;
  height: 24px;
  background-image: url(../images/chevronUp.png);
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: 0.4s;
}

.faqWrapper .faqHeader .paragraphXL {
  font-weight: 500;
}

/* FAQ Body */
.faqWrapper .faqBody {
  color: #505152;
  display: none;
}

.faqWrapper .faqBody .innerWrapper {
  padding-top: 16px;
}

.faqWrapper .faqBody p {
  margin-bottom: 24px;
}

.faqBody ul {
  margin-left: 30px;
  margin-bottom: 24px;
}

.faqWrapper .faqBody p:last-child {
  margin-bottom: 0px;
}
.faqWrapper .faqBody p a {
  color: var(--primaryBrand);
}

/* Active State */
.faqWrapper.active .faqHeader::before {
  transform: rotate(0deg);
}

/* Responsive - 767px */
@media (max-width: 767px) {
  .faqSec .headingXL {
    margin-bottom: 32px;
  }
}

/* Responsive - 575px */
@media (max-width: 575px) {
  .faqSec .headingXL {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 46px;
  }

  .faqWrapper {
    padding: 12px 0px;
  }
}
