.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  background-color: #d3d6eb;

  border-radius: 4px;
  cursor: pointer;
  color: #012b69;
  text-align: start;
  border: none;
  outline: none;
  font-size: 18px;
  line-height: 28px;
  font-style: normal;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  background: linear-gradient(
      0deg,
      rgba(1, 47, 115, 0.15) 0%,
      rgba(1, 47, 115, 0.15) 100%
    ),
    #cfdbec;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  /* padding-left: 40px !important; */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #f2f3fb;
}

.acc-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 15px;
  background-color: #f2f3fb;
}

@media screen and (min-width: 1024px) {
  .faq-answer.open {
    max-height: 200px;
    padding: 24px 40px;
  }
}

.acc-answer.open {
  max-height: 1000px;
}

.faq-answer p {
  color: #012b69;
}

.faq-question > img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.acc-question > img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-question.active > img {
  transform: rotate(0deg);
}

.acc-question.active > img {
  transform: rotate(0deg);
}
