.vt-faq {
  max-width: 100%;
  margin: 1rem auto;
}

.vt-faq-item {
  border-bottom: 1px solid #D5F1F1;
}

.vt-faq-question {
  padding: 1.5rem 0;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 1.5rem;

  margin: 0rem 3rem;
  font-size: 1.75rem;
}

.vt-icon {
  position: relative;

  width: 20px;
  min-width: 20px;

  height: 18px;

  flex-shrink: 0;
}

.vt-icon::before,
.vt-icon::after {
  content: "";
  position: absolute;
  background: #2CB9BB;
  transition: transform 0.3s ease;
}

.vt-icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.vt-icon::after {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}

.vt-faq-question.active .vt-icon::after {
  transform: scaleY(0);
}

.vt-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding-bottom: 0;
  padding: 0rem 3rem;
}

.vt-faq-content p {
  margin: 0 0 1.75rem 0;
}

@media (max-width: 768px) {

  .vt-faq-question {
    font-size: 1.5rem;
    margin: 0rem 1rem;
    padding: 1.25rem 0;
    gap: 1rem;
  }

  .vt-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
  }

  .vt-icon::before {
    width: 18px;
  }

  .vt-icon::after {
    left: 8px;
  }

  .vt-faq-content {
    padding: 0rem 1rem;
  }

}