.container-faq {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px;
  padding-top: 100px;
}

.container-faq h1 {
  color: white;
  font-size: 74px;
  font-weight: 400;
  line-height: 89px;
  margin: 0px;
}

.subtitle {
  color: white;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 45px;
}

.faq-container {
  margin-top: 20px;
}

.faq-item {
  border-top: 1px solid #a2a7ad;
  padding: 26px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #a2a7ad;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  color: white;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.icon-plus {
  opacity: 1;
  transform: scale(1);
}

.icon-minus {
  opacity: 0;
  transform: scale(0.8);
}

.faq-question.active .icon-plus {
  opacity: 0;
  transform: scale(0.8);
}

.faq-question.active .icon-minus {
  opacity: 1;
  transform: scale(1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.7s ease,
    padding 0.7s ease;
}

.faq-answer p {
  color: #a2a7ad;
  margin: 0px;
}

.faq-answer.show {
  max-height: 200px;
  padding-top: 48px;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 26px 24px;
  }

  .container-faq h1 {
    font-size: 28px;
    line-height: 150%;
    font-weight: 600;
  }

  .subtitle {
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    color: #999999;
    margin-top: 6px;
    margin-bottom: 40px;
  }

  .faq-question h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .faq-answer.show {
    padding-top: 18px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    color: #999999;
  }
}
