.services {
  position: relative;
  padding: var(--sp) 0;
  z-index: 2;
}

.services__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
}

.services__title {
  text-align: center;
}

.services__questions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  counter-reset: faq;
  transition: var(--tr);
  overflow: hidden;
}

.services__more {
  cursor: pointer;
  margin: 5.5rem auto 0;
}

.services .services__questions-col {
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services .item {
  padding: 30px 20px;
  counter-increment: faq;
  transition: var(--tr);
  background: var(--bej-20);
}

.services .item._active .item__title:after {
  transform: rotate(135deg);
  background: center/contain no-repeat url("../../img/plus-dark.svg");
}

.services .item._active .item__title {
  padding-bottom: 20px;
}

.services .item._active .item__answer {
  opacity: 1;
}

.services .item__title {
  font: 400 var(--h4)/1.1 var(--heading-font-family);
  letter-spacing: -0.03em;
  padding-bottom: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
  padding-right: 40px;
  transition: var(--tr);
}

.services .item__title:before {
  content: counter(faq, decimal-leading-zero);
  font-weight: 200;
}

.services .item__title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1/1;
  width: 4rem;
  background: center/contain no-repeat url("../../img/plus-dark.svg");
  transition: var(--tr);
}

.services .item__answer-wrap {
  height: 0;
  overflow: hidden;
  transition: var(--tr);
}

.services .item__answer {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0;
  transition: var(--tr);
}

.services .item__answer p {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 20px;
}

.services .item__answer p strong {
  font-weight: 600;
}

.services .item__answer p:first-child {
  text-indent: 4.5rem;
}

.services .item__answer ul,
.services .item__answer ol {
  margin: 20px 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  padding-left: 20px;
}

.services .item__answer ul li strong,
.services .item__answer ol li strong {
  font-weight: 500;
}

.services .item__answer ol {
  list-style: decimal;
}

.services .item__answer ol li::marker {
  font-variant-numeric: lining-nums proportional-nums;
}

.services .item__answer ul li {
  position: relative;
}

.services .item__answer ul li:before {
  position: absolute;
  top: 10px;
  left: -12px;
  content: "";
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 1260px) {
  .services__title br {
    display: none;
  }

  .services .services__questions-col {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .services .item {
    padding: 20px 20px 0px 20px;
  }

  .services .item__title {
    font-family: var(--heading-font-family);
    font-weight: 400;
    font-size: var(--h5);
    line-height: 1.1;
    letter-spacing: -0.03em;
    padding-right: 20px;
    gap: 10px;
  }

  .services .item__title:after {
    left: calc(100% - 20px);
  }

  .services .item__answer ul li:before {
    top: 8px;
  }

  .services .item__answer {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    text-indent: 27px;
  }
}