.service__page-fit-checks-root-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service__page-fit-checks-item-box {
  display: flex;
  align-items: flex-start;
  gap: clamp(
    16px,
    calc(16px + (30 - 16) * (100cqw - 1280px) / (1600 - 1280)),
    30px
  );
  border: 3px solid var(--blue-white-color);
  border-radius: 30px;
  background: var(--white-color);
  padding: clamp(
      18px,
      calc(18px + (22 - 18) * (100cqw - 1280px) / (1600 - 1280)),
      22px
    )
    clamp(
      24px,
      calc(24px + (28 - 24) * (100cqw - 1280px) / (1600 - 1280)),
      28px
    );
}
.service__page-fit-checks-check-box {
  display: inline-flex;
  width: clamp(
    26px,
    calc(26px + (32 - 26) * (100cqw - 1280px) / (1600 - 1280)),
    32px
  );
  height: clamp(
    26px,
    calc(26px + (32 - 26) * (100cqw - 1280px) / (1600 - 1280)),
    32px
  );
  flex: 0 0
    clamp(
      26px,
      calc(26px + (32 - 26) * (100cqw - 1280px) / (1600 - 1280)),
      32px
    );
  margin-top: 2px;
}

.service__page-fit-checks-check-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/svg/check-big.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service__page-fit-checks-content-column {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: clamp(
    10px,
    calc(10px + (16 - 10) * (100cqw - 1280px) / (1600 - 1280)),
    16px
  );
  min-width: 0;
}
.service__page-fit-checks-item-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(
    21px,
    calc(21px + (24 - 21) * (100cqw - 1280px) / (1600 - 1280)),
    24px
  );
  line-height: 126%;
  font-weight: 600;
}
.service__page-fit-checks-item-text {
  line-height: 146%;
  font-weight: 400;
  color: var(--gray-color-second);
}

@media(max-width: 992px){
  .service__page-fit-checks-root-column {
    gap: 10px;
  }
  .service__page-fit-checks-item-box {
    padding: 19px 20px;
    gap: 14px;
  }
  .service__page-fit-checks-check-box {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }
  .service__page-fit-checks-content-column {
    gap: 8px;
  }
  .service__page-fit-checks-item-title {
    font-size: 18px;
    line-height: 126%;
  }
  .service__page-fit-checks-item-text {
    font-size: 16px;
    line-height: 138%;
  }
}