.faq-section {
  position: relative;
  z-index: 1;
}
.faq-section table {
  margin-bottom: 0;
}
.faq-section .faq-title {
  text-align: center;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 40px;
}
.faq-section .faq-title span {
  color: #57631d;
}
.faq-section .tabs-content {
  width: 100%;
}
.faq-section .tabs {
  background: none;
}
.faq-section .faq-tabs {
  width: fit-content;
  margin: auto;
  padding: 6px;
  display: flex;
  gap: 35px;
  border: 1px solid #acd2ff;
  border-radius: 50px;
  background: #eef7ff;
  margin-bottom: 35px;
}
.faq-section .faq-tabs .tab-btn {
  background: #fff;
  border-radius: 30px;
  padding: 12px 28px;
}
.faq-section .faq-tabs .tab-btn.active {
  background: #0080C5;
  color: #fff;
}
.faq-section .tab-content {
  display: none;
}
.faq-section .tab-content.active {
  display: block;
}
.faq-section .faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-section .faq-item.active .faq-header .faq-toggle {
  transform: rotate(90deg);
}
.faq-section .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 10px 25px;
  cursor: pointer;
}
.faq-section .faq-item .faq-header h4 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  text-align: left;
  margin-bottom: 0;
}
.faq-section .faq-item .faq-header .faq-toggle {
  width: 37px;
  height: 36px;
  background-color: #FF6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border-color: #ff6600;
  cursor: pointer;
  border: 0;
}
.faq-section .faq-item .faq-header .faq-toggle span {
  position: absolute;
  top: 10%;
  left: 28%;
}
.faq-section .faq-item .faq-body {
  display: none;
  color: #575757;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  padding: 5px 20px 20px 25px;
}
.faq-section .faq-item .faq-body p {
  margin-top: 0;
  margin-bottom: 12px;
}
.faq-section .faq-item .faq-body p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item .faq-body ul,
.faq-section .faq-item .faq-body ol {
  padding-left: 20px;
  margin: 10px 0 15px 0;
  list-style-position: outside;
}
.faq-section .faq-item .faq-body ul {
  list-style-type: disc;
}
.faq-section .faq-item .faq-body ol {
  list-style-type: decimal;
}
.faq-section .faq-item .faq-body li {
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 4px;
}
.faq-section .faq-item .faq-body li:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item .faq-body a {
  color: #666;
}
.faq-section .faq-item.active .faq-body {
  display: block;
}
.faq-section .faq-item.active .faq-toggle span {
  transform: rotate(180deg);
  display: inline-block;
}
.faq-section .hidden-faq {
  display: none;
}
.faq-section .hidden-faq.show {
  display: block;
}
.faq-section .read-more {
  text-align: center;
  margin-top: 35px;
}
.faq-section .btn-read-more,
.faq-section .btn-read-more:hover,
.faq-section .btn-read-more:focus,
.faq-section .btn-read-more:active {
  color: #000000;
}

/*Start Responsive css */
@media (min-width: 1024px) and (max-width: 1280px) {
  .faq-section .faq-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .faq-section .faq-tabs {
    gap: 20px;
    padding: 5px;
    margin-bottom: 28px;
  }
  .faq-section .faq-tabs .tab-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
  .faq-section .faq-item .faq-header {
    padding: 10px 18px 10px 22px;
  }
  .faq-section .faq-item .faq-header h4 {
    font-size: 16px;
  }
  .faq-section .faq-item .faq-body {
    font-size: 15px;
    padding: 5px 18px 18px 22px;
  }
  .faq-section .faq-item .faq-body p,
  .faq-section .faq-item .faq-body li {
    font-size: 15px;
  }
  .faq-section .btn-read-more {
    font-size: 13px;
    padding: 6px 6px 6px 18px;
    letter-spacing: -0.5px;
  }
  .faq-section .btn-read-more .arrow-icon {
    width: 26px;
    height: 26px;
  }
  .faq-section .btn-read-more .arrow-icon img {
    width: 20px;
  }
}
@media (max-width: 992px) {
  .faq-section .tabs {
    padding: 0;
    background: none;
  }
  .faq-section .read-more {
    margin-top: 0;
  }
  .faq-section .faq-tabs {
    gap: 13px;
    max-width: 100%;
    width: max-content;
    overflow-x: auto;
    white-space: nowrap;
  }
  .faq-section .faq-tabs::-webkit-scrollbar {
    display: none;
  }
  .faq-section .faq-item .faq-header {
    padding: 12px 12px 6px 12px;
    gap: 8px;
  }
  .faq-section .faq-item .faq-header h4 {
    font-size: 16px;
    text-align: left;
  }
  .faq-section .faq-item .faq-header .faq-toggle {
    width: 31px;
    height: 31px;
  }
  .faq-section .faq-item .faq-body {
    font-size: 14px;
    padding: 0 12px 12px 12px;
  }
  .faq-section .faq-item .faq-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    max-width: 100%;
    border-collapse: collapse;
  }
  .faq-section .faq-item .faq-body p:last-child,
  .faq-section .faq-item .faq-body ul:last-child,
  .faq-section .faq-item .faq-body ol:last-child {
    margin-bottom: 0 !important;
  }
  .faq-section .faq-item .faq-body ul,
  .faq-section .faq-item .faq-body ol {
    padding-left: 18px;
  }
}/*# sourceMappingURL=faq.css.map */