.faq-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.faq-section:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(236, 237, 236, 0.83) 0%, rgba(236, 237, 236, 0.83) 100%);
  z-index: -1;
}
.toggle-item {
  margin-bottom: 5px;
  border-bottom: 1px solid var(--color-1);
  padding: 20px 0;
}
.toggle-item .toggle-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
}
.toggle-item .icon {
  transition: transform ease-in-out 0.4s;
  font-size: 22px;
}
.toggle-item>.toggle-content {
  display: none;
  padding: 5px 0;
  font-size: 14px;
}
.toggle-item.active>.toggle-content {
  display: block;
}
.toggle-item .toggle-content p {
  margin: 10px 0;
}
.toggle-item .icon.active {
  transform: rotate(90deg);
}
.toggle-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}