.accordion {
  margin: 0 auto;
}
.accordion__item {
  padding-block: 30px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #575757 0%, #0f1115 100%);

  border-image-slice: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.list-style-none {
  list-style: none;
}
.accordion__item:hover .accordion__label {
  background: linear-gradient(90deg, #bd5dbf 0%, #97cfff 57.55%, #2964ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accordion__item.active .accordion__label {
  background: linear-gradient(90deg, #bd5dbf 0%, #97cfff 57.55%, #2964ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accordion__item.active > .accordion__content {
  padding-top: 24px;
  max-height: 150px;
  color: #9ca3af;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
}
.accordion__item.active > .accordion__label:after {
  transition: all 0.3s;

  background-image: url("/img/arrow-down-active.svg");
}
.accordion__label {
  padding-right: 44px;
  color: #c5c5c5;
  font-family: Inter;
  font-size: 25px;
  font-weight: 800;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion__label:after {
  display: block;
  content: "";
  background-image: url("/img/arrow-down.svg");
  background-size: 48px 48px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
  right: 0;
  transition: all 0.3s;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 27px;
  color: gray;
}
