.faq__content {
  display: flex;
  flex-flow: column;
  gap: 10px;
  width: 100%;
}
.faq__item {
  background: rgba(137, 141, 144, 0.1019607843);
  border-radius: 12px;
  width: 100%;
  transition: 0.3s ease;
}
.faq__item.active {
  background: #0d499c;
}
.faq__item.active .faq__item-title {
  color: #fff;
}
.faq__item.active .faq__digits {
  color: #33ccff;
}
.faq__item.active .faq__item-button {
  background: #fff;
}
.faq__item.active .faq__item-button svg {
  transform: rotate(180deg);
}
.faq__item.active .faq__item-button svg path {
  stroke: #0d499c;
}
.faq__item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
}
.faq__item-question-text {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__digits {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -1%;
  color: #898d90;
  transition: 0.3s ease;
}
.faq__item-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -1%;
  color: #4d525a;
  max-width: 80%;
  width: 100%;
  transition: 0.3s ease;
}
.faq__item-answer {
  max-height: 0px;
  max-width: 69%;
  width: 100%;
  justify-self: flex-end;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq__item-text {
  padding-right: 140px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #fff;
}
.faq__item-button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d499c;
  border-radius: 100px;
  transition: 0.3s ease;
}
.faq__item-button svg {
  transition: 0.3s ease;
}
.faq__item-button svg path {
  transition: 0.3s ease;
}

@media (max-width: 1024px) {
  .faq__digits {
    display: none;
  }
  .faq__item-question {
    padding: 18px;
  }
  .faq__item-question-text {
    width: 100%;
  }
  .faq__item-button {
    width: 26px;
    height: 26px;
  }
  .faq__item-answer {
    padding: 0 18px;
    max-width: 100%;
  }
  .faq__item-text {
    padding: 0;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #FFFFFF;
    opacity: 0.7;
  }
  .faq__item-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #4D525A;
  }
}/*# sourceMappingURL=style.css.map */