 /* faq */
      .faq-item p {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.35s ease,
          margin-top 0.35s ease;
      }
      .faq-item.active p {
        max-height: 220px;
        margin-top: 10px;
      }
      .faq-item.active .caret {
        transform: rotate(45deg);
      }