.service__page-content-adv-list {
  background-color: var(--white-color);
  border: 1px solid var(--blue-white-color);
  border-radius: clamp(
    36px,
    calc(36px + (48 - 36) * (100cqw - 1280px) / (1600 - 1280)),
    48px
  );
}

.service__page-content-adv-list-item {
  padding: clamp(
      26px,
      calc(26px + (30 - 26) * (100cqw - 1280px) / (1600 - 1280)),
      30px
    )
    clamp(
      30px,
      calc(30px + (34 - 30) * (100cqw - 1280px) / (1600 - 1280)),
      34px
    );
}

.service__page-content-adv-list-item:not(:first-child) {
  border-top: 1px solid var(--blue-white-color);
}

.service__page-content-adv-list-item {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service__page-content-adv-list-item-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray-light-color-second);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.service__page-content-adv-list-item-top::before {
  content: "";
  display: block;
  min-width: 22px;
  height: 22px;
  background-image: url(../../assets/svg/dark-blue-yes.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.service__page-content-adv-list-item-top::after {
  content: "";
  display: block;
  min-width: 16px;
  width: 16px;
  height: 1px;
  background-color: var(--gray-light-color-second);
}

.service__page-content-adv-list-item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service__page-content-adv-list-item-body-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(
    18px,
    calc(18px + (19 - 18) * (100cqw - 1280px) / (1600 - 1280)),
    19px
  );
  font-weight: 600;
  line-height: 136%;
}

.service__page-content-adv-list-item-body-text *:first-child {
  margin-top: 0;
}

.service__page-content-adv-list-item-body-text *:last-child {
  margin-bottom: 0;
}

.service__page-content-adv-list-item-body-text {
  font-size: clamp(
    17px,
    calc(17px + (18 - 17) * (100cqw - 1280px) / (1600 - 1280)),
    18px
  );
  color: var(--gray-color);
  line-height: 137%;
  letter-spacing: -0.034px;
}

@media(max-width: 1366px) {
  .service__page-content-adv-list-item-body-title {
    line-height: 137%;
  }
  .service__page-content-adv-list-item-body-text {
    line-height: 138%;
  }
}

@media(max-width: 992px) {
  .service__page-content-adv-list-item {
    padding: 22px 24px;
    gap: 20px;
  }
  .service__page-content-adv-list-item-body-title {
    font-size: 17px;
    line-height: 123%;
  }
  .service__page-content-adv-list-item-body-text {
    font-size: 15px;
    line-height: 144%;
  }

}