.service-process {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--c-text);
  font-family: "IBM Plex Mono", monospace;
  margin-top: clamp(6.4rem, 9.722vw, 37.333rem);
}
.service-process__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(3.2rem, 3.611vw, 13.867rem);
  width: 100%;
}
.service-process__heading {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(2.4rem, 1.667vw, 6.4rem);
  line-height: 1.1;
  letter-spacing: -0.1em;
  text-transform: uppercase;
}
.service-process__steps {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .service-process__steps {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: clamp(2.4rem, 2.778vw, 10.667rem);
  }
}
.service-process__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.6rem, 5.333vw, 2rem);
}
@media only screen and (min-width: 768px) {
  .service-process__step {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.2rem, 0.833vw, 3.2rem);
    flex: 0 1 calc((100% - clamp(2.4rem, 2.778vw, 10.667rem)) / 2);
    min-width: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .service-process__step {
    flex-basis: calc((100% - 2 * clamp(2.4rem, 2.778vw, 10.667rem)) / 3);
  }
}
@media only screen and (min-width: 1440px) {
  .service-process__step {
    flex-basis: calc((100% - 4 * clamp(2.4rem, 2.778vw, 10.667rem)) / 5);
  }
}
.service-process__step-body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 0.833vw, 3.2rem);
  flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .service-process__step-body {
    flex: 0 1 auto;
  }
}
.service-process__step-num {
  font-weight: 400;
  font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.service-process__step-text {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--c-text-muted);
}
.service-process__step-payment {
  font-weight: 400;
  font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767.98px) {
  .service-process__step-payment {
    order: -1;
    flex: 0 0 auto;
    width: clamp(4.9rem, 13.07vw, 6rem);
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .service-process__step-payment {
    display: flex;
    flex-direction: row;
    gap: 0.35em;
    margin-top: auto;
    padding-top: clamp(2.4rem, 3.611vw, 13.867rem);
    min-height: 1em;
  }
}
@media only screen and (min-width: 768px) {
  .service-process__step-payment-label::after {
    content: ":";
  }
}
.service-process__note {
  max-width: clamp(51.9rem, 36.042vw, 138.4rem);
  margin-inline: auto;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.12rem + 0.333vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--c-text-muted);
}