.faq-section {
  width: 100%;
/*   padding: 70px 0px 70px; */
/*   background: #fbfbf8; */
	
}

.faq-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

/* TITLE */

.faq-title {
  color: #08085d;
   font-size: 2.6rem ;
  font-weight: 800 ;
  line-height: 3.2rem ;
  margin-bottom: 36px;
}
/* TABS */
.faq-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 42px;
}

.faq-tab {
  height: 60px;
  border: 1px solid #08085d;
  border-radius: 3px;
  background: transparent;
  color: #08085d;
  font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}
.faq-tab:hover {
	background-color: #00b4a7;
	color: #fff;
}
.faq-tab.active {
  background: #43b9ae;
  border-color: #43b9ae;
  color: #fff;
}

/* TAB CONTENT */

.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

/* ACCORDION */

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #d9d3b6;
  background: transparent;
  border-radius: 0 !important;
}

.faq-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 24px 0;
  color: #08085d;
  font-size: 1.1rem;
    font-weight: 500;
    line-height: 2.4rem;
  text-wrap: auto;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #35b9ad;
}

/* DEFAULT BOOTSTRAP ICON */

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
  padding: 0 0 20px;
  color: #656565;
  max-width: 1300px;
	font-size: 1rem;
    font-weight: 500;
    line-height: 1.8rem;
}

.accordion-body span {
  font-weight: 700 !important;
}

.faq-accordion sup {
  font-size: 9px;
  position: relative;
  top: -5px;
}

/* CONTACT */

.faq-contact {
  display: inline-block;
  margin-top: 48px;
  color: #35b9ad !important;
  font-size: 18px;
  text-decoration: underline !important;
  font-weight: 600;
}

/* MOBILE */

@media (max-width: 767px) {
  .faq-section {
    padding: 45px 20px 50px;
  }

  .faq-title {
    font-size: 38px;
  }

  .faq-tabs {
    grid-template-columns: 1fr;
  }

  .faq-accordion .accordion-button {
    font-size: 16px;
  }

  .faq-accordion .accordion-body {
    font-size: 13px;
  }
}
