/* ||||||||||||||||||||||||||||||||||||||||||||||||*/
/* ESB Section FAQ  */
/* ||||||||||||||||||||||||||||||||||||||||||||||||*/
.sec-esb-faq:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.sec-esb-faq.esb-bottom-divider:last-child::after {
  opacity: 0;
}
.esb-faq__accordion {
  border-bottom: 0.35px solid var(--BlueDark);
  position: relative;
}

.esb-faq__accordion::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80%;
  opacity: 0;
  background-color: var(--BluePrimary);
  height: 2px;
  pointer-events: none;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.esb-faq__accordion.is-open:hover::before {
  opacity: 0;
}

.esb-faq__accordion:hover::before {
  width: 100%;
  opacity: 1;
}

.esb-faq__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  cursor: pointer;
}

.esb-faq__accordion-trigger-arrow {
  flex-shrink: 0;
  margin-left: auto;
}

.esb-faq__accordion-trigger p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.esb-faq__accordion-content-inner {
  padding: 0 20px 20px 24px;
  max-width: 1120px;
  width: 100%;
}
.esb-faq__accordion-content-inner p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
}

.esb-faq__inner {
  /* height: 625px; */
  /* overflow: hidden; */
}

.esb-faq__inner::before {
  /* background: linear-gradient(
    180deg,
    rgba(248, 248, 248, 0.2) -21.63%,
    #ffffff 66.31%
  ); */
}

/* ------------------------------------------------ */
/* Desktop Smaller and Down */
/* ------------------------------------------------ */

@media (max-width: 1439px) {
  .esb-faq__accordion-trigger {
    padding: 15px 0;
  }
}

/* ------------------------------------------------ */
/* Tablet L and Down */
/* ------------------------------------------------ */

@media (max-width: 1199px) {
  .esb-faq__accordion-trigger {
    font-size: 18px;
    line-height: 1;
  }
}

/* ------------------------------------------------ */
/* Tablet P and Down */
/* ------------------------------------------------ */

@media (max-width: 1023px) {
  .esb-faq__accordion-trigger {
    font-size: 17px;
    padding: 12px 0;
  }
}

/* ------------------------------------------------ */
/* Mobile */
/* ------------------------------------------------ */

@media (max-width: 767px) {
  .esb-faq__accordion-trigger {
    line-height: 1.5;
  }
  .esb-faq__accordion-trigger p {
    font-size: 16px;
  }
}
