.progress-markers-section {
  max-width: var(--max-screen-width);
  margin: 16.25rem auto 0 auto;
}

.sevio-progress-markers {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.progress-top {
  font-weight: var(--font-weight-bolder);
  font-size: var(--font-size-extra-large);
  line-height: 6rem;
  color: var(--blue);
  text-align: center;
}

.progress-marker {
  padding: 3rem;
}

.progress-bottom {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xxm);
  line-height: 1.6875rem;
  letter-spacing: 0.25rem;
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
}

.progress-markers-heading {
  font-weight: var(--font-weight-bold);
  line-height: 4.0625rem;
  font-size: var(--font-size-xxxxl);
  margin-block: 2rem;
  text-align: center;
}

.progress-markers-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xxxl);
  text-align: center;
  line-height: 3.125rem;
  color: var(--blue);
}

/* Responsive */
@media only screen and (max-width: 1366px) {
  .progress-markers-section {
    margin-inline: 3rem;
  }
  .sevio-progress-markers {
    gap: 2rem;
  }
}

@media only screen and (max-width: 1200px) {
  .progress-markers-section {
    margin-inline: 1.5rem;
  }
  .sevio-progress-markers {
    gap: unset;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 1080px) {
  .progress-marker {
    padding-inline: 0.5rem;
  }

  .sevio-progress-markers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }
}

@media only screen and (max-width: 960px) {
  .progress-markers-section {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .progress-markers-heading {
    font-size: var(--font-size-40);
    line-height: 3rem;
  }
}

@media only screen and (max-width: 480px) {
  .progress-markers-heading {
    font-size: var(--font-size-40);
    line-height: 3rem;
  }

  .progress-marker {
    padding-block: 1.5rem;
  }

  .progress-markers-section {
    margin-top: 4rem;
    margin-inline: 1rem;
  }

  .sevio-progress-markers {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
