/* Apply styles to the details element */
.faqSec .accordion {
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--grey-20, #f9f9f9);
  padding: 10px 50px 10px 22px;
  position: relative;
}
.faqSec .accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 26px;
  list-style: none;
}
.faqSec .accordion .accordion-content {
  transition: all 0.5s ease-in-out; /* Add transition for max-height */
  max-height: 0; /* Start with max-height as 0 (hidden) */
  overflow: hidden;
  margin-top: 10px;
}
.faqSec .accordion[open] .accordion-content {
  max-height: 500px; /* Change max-height to show the content */
}
.faqSec .accordion::after {
  position: absolute;
  content: "+";
  font-size: 22px;
  font-weight: 700;
  left: auto;
  right: 30px;
  top: 12px;
}
.faqSec .accordion[open]::after {
  content: "-";
}

.faqBannerSec {
  min-height: 90vh;
  padding: 180px 0 70px;
  background: url("../../images/faq/top_banner.webp") no-repeat bottom var(--orange-75) !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .faqBannerSec {
    background: url("../../images/faq/top_banner_mobile.webp") no-repeat bottom var(--orange-75) !important;
    background-size: 100% !important;
  }
}
.afterBnrBar {
  background: var(--95-black, #020202);
  padding: 38px 0;
}
.afterBnrBar a {
  -webkit-text-fill-color: #e37231;
  text-decoration: underline;
}

.faqSec {
  padding: 56px 0;
}
.faqSec .secType {
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .accordion summary {
    font-size: 18px;
  }
}
@media (max-width: 786px) {
  .accordion::after {
    top: 8px;
  }
}

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