.accordion {
  margin: 0 auto;
  margin-top: 70px;
}
.accordion__item {
  padding-block: 30px;
  border-bottom: 1px solid #256400;
  cursor: pointer;
  transition: all 0.3s;
}

.accordion__item.active .accordion__label {
  color: #256400;
}
.accordion__item.active > .accordion__content {
  padding-top: 30px;
  max-height: 150px;
}
.accordion__item.active > .accordion__label:after {
  transition: all 0.3s;
  background-image: url("/img/arrow-down-active.svg");
  transform: rotate(90deg) flip-horizontal;
}
.accordion__label {
  color: #256400;
  font-family: Inter;
  font-size: 25px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  span {
    font-weight: 700;
  }
}
.accordion__label:after {
  display: block;
  content: "";
  background-image: url("/img/arrow-down.svg");
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  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: #6e6e6e;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  span {
    font-weight: 700;
  }
}
.list-style-none {
  list-style: none;
}
