.accordion {
  margin: 0 auto 32px auto;
  max-width: 90%;
}
.accordion__item {
  border-radius: 20px;
  border: 1px solid #a5c3ff;
  padding: 20px 32px;
  background: #0a131b;
  cursor: pointer;
  transition: all 0.3s;
  list-style-type: none;
}
.accordion__item:not(:last-of-type) {
  margin-bottom: 24px;
}
.accordion__item.active > .accordion__content {
  padding-top: 18px;
  max-height: 250px;
}
.accordion__item.active > .accordion__label:after {
  transition: all 0.3s;
  transform: rotate(180deg);
}
.accordion__label {
  position: relative;
  cursor: pointer;
  font-family: "Sofia Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.accordion__label:after {
  display: block;
  content: "";
  background-image: url("/img/faq-arrow.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
  right: 0;
  transition: all 0.3s;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #a5c3ff;
  font-family: "Mulish";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1440px) {
  .accordion {
    max-width: 100%;
  }
}
