.service__badge-color {
  padding: 8px 16px;
  width: fit-content;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(
    14px,
    calc(14px + (16 - 14) * (100cqw - 1280px) / (1600 - 1280)),
    16px
  );
  font-weight: 600;
  line-height: 150%;
  background-color: var(--pink-color);
  color: var(--white-color);
  border-radius: 12px;
  margin-bottom: 20px;
  margin-top: 80px;
}

@media(max-width: 992px) {
  .service__badge-color {
    font-size: 12px;
    margin-top: 60px;
    margin-bottom: 16px;
    line-height: 135%;
  }
}