.faq-bg {
  position: relative;
  background-image: url(../../assets/images/flexi-cap/darkbluebanner.jpg);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  padding-block: clamp(7rem, 9vw, 11rem);
  padding-inline: clamp(0rem, 9vw, 0rem);
}
.faq-bg h2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  line-height: clamp(3.2rem, 2.5vw, 5rem);
  color: #fff;
}
@media (max-width: 320px) {
  .faq-bg h2 {
    text-align: center;
  }
}

.faqSection {
  margin: 56px 0;
  @media (max-width: 768px) {
    margin: 41px 0;
  }
}

.tab_content {
  margin-top: 56px;
}

.homeBanner .bannerContent .tab-nav .bannerTabLink {
  background-color: #f2f2f2;
  border-radius: 16px;
}

.tab-toggler ul li span {
  background-color: #000000;
}

.tab-toggler ul {
  flex-wrap: nowrap;
}

.homeBanner {
  position: relative;
  z-index: 0;
}

.homeBanner .headToggler {
  position: relative;
}

.homeBanner .banner-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  margin: 0 0 2rem;
  position: absolute;
  top: 25px;
  right: 25px;
}

.homeBanner .banner-toggle P {
  margin: 0;
  color: #fff;
  cursor: pointer;
}

.homeBanner .banner-toggle input[type=checkbox] {
  position: relative;
  width: 32px;
  height: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #9ab5ff;
  outline: none;
  border-radius: 2rem;
  cursor: pointer;
}

.homeBanner .banner-toggle input[type=checkbox]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e1b1b;
  position: absolute;
  top: 3px;
  left: 6px;
  transition: 0.5s;
}

.homeBanner .banner-toggle input[type=checkbox]:checked::before {
  transform: translateX(100%);
  background: #1e1b1b;
}

.homeBanner .banner-toggle input[type=checkbox]:checked {
  background: #9ab5ff;
}

.homeBanner .banner-toggle .active {
  color: #9ab5ff;
}

.homeBanner .bannerContent {
  position: relative;
}

.homeBanner .bannerContent .bannerHead {
  margin-bottom: 2.4rem;
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 400;
}

.homeBanner .bannerContent .bannerTabHead {
  margin: 2.4rem 0 2.4rem;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
  font-weight: 400;
}

.homeBanner .bannerContent .tab-nav {
  position: relative;
}

.homeBanner .bannerContent .tab-nav .bannerTabLink {
  position: relative;
  justify-content: space-between;
  gap: 0;
  text-align: center;
  padding: 0;
  overflow-x: scroll;
}
@media (max-width: 1399px) {
  .homeBanner .bannerContent .tab-nav .bannerTabLink {
    justify-content: start;
    overflow-x: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  }
  .homeBanner .bannerContent .tab-nav .bannerTabLink::-webkit-scrollbar {
    display: none;
  }
}
.homeBanner .bannerContent .tab-nav .bannerTabLink li {
  z-index: 2;
}

.homeBanner .bannerContent .tab-nav .bannerTabLink li span {
  min-width: 14.1rem;
  display: block;
  border-radius: 16px;
  border: none;
  color: #ffffff;
  padding: 1.2rem 1rem;
  font-size: 14px;
}

.faq_accordian .accordion {
  cursor: pointer;
  padding: 17px 0;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-bottom: 1px solid #eeeeee;
}
.faq_accordian .accordion h4 {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
@media (max-width: 767px) {
  .faq_accordian .accordion h4 {
    font-size: 12px;
  }
}
.faq_accordian .accordion img {
  transform: rotate(0deg);
  transition: all 0.6s;
  display: block;
}
.faq_accordian .accordion.active {
  border-bottom: none;
}
.faq_accordian .accordion.active h4 {
  font-weight: 600;
}
.faq_accordian .accordion.active img {
  transform: rotate(90deg);
}
.faq_accordian .panel {
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  display: none;
  margin-top: 0px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 40px;
}
.faq_accordian .panel p {
  font-size: 14px;
  line-height: 22px;
  color: #1e1b1b;
}
@media (max-width: 767px) {
  .faq_accordian .panel p {
    font-size: 12px;
  }
}