.steps-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--spacing-vertical-block);
  list-style: none;
  padding: 0;
  padding-top: var(--spacing-vertical-block);
  padding-bottom: var(--spacing-vertical-block-double);
}

.steps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  border: 1px solid white;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  margin: auto;
  margin-bottom: -70px;
  padding: var(--spacing-vertical-block);
}

.steps-item::before {
  content: attr(data-step-number) ".";
  /* display: block;
  position: absolute;
  top: 1em; */
  margin-bottom: 1em;
}

.steps-list li:nth-child(odd) {
  grid-column: span 6;
}

.steps-list li:nth-child(even) {
  grid-column: span 6;
}

.steps-list li:nth-child(3n) {
  grid-column: span 12;
}

.steps-list li:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .steps-item {
    width: 350px;
    height: 350px;
    margin-bottom: 1rem;
  }
  .steps-list li:nth-child(odd) {
    grid-column: span 12;
  }

  .steps-list li:nth-child(even) {
    grid-column: span 12;
  }

  .steps-list li:nth-last-child(-n + 2) {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .steps-item {
    width: 350px;
    height: 350px;
    margin-bottom: -70px;
  }
}
