.faq-section .base-container-2 {
  width: 100%;
}

.faq-section .faq-border,
.faq-section .faq.w-dropdown,
.faq-section .faq-title.w-dropdown-toggle,
.faq-section .faq-title-wrapper,
.faq-section .faq-content.w-dropdown-list {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.faq-section .faq.w-dropdown {
  display: block;
}

.faq-section .faq-title.w-dropdown-toggle {
  display: flex;
  white-space: normal;
}

.faq-section .faq-content.w-dropdown-list {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: height .4s cubic-bezier(.25, .46, .45, .94), opacity .4s cubic-bezier(.25, .46, .45, .94), visibility 0s linear .4s;
  visibility: hidden;
}

.faq-section .faq-content.w-dropdown-list.w--open {
  opacity: 1;
  transition: height .4s cubic-bezier(.25, .46, .45, .94), opacity .4s cubic-bezier(.25, .46, .45, .94);
  visibility: visible;
}

.faq-section .faq-tab {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
}

.faq-section .faq-content.w--open .faq-tab {
  opacity: 1;
  transform: translateY(0);
}

.faq-section .icon-x-small-3 {
  transform: rotate(0deg);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

.faq-section .faq-title.w--open .icon-x-small-3 {
  transform: rotate(-180deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-section .faq-content.w-dropdown-list,
  .faq-section .faq-tab,
  .faq-section .icon-x-small-3 {
    transition: none;
  }
}
