.steps {
  padding: 32px 16px 36px;
}

.steps ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
}

.steps li {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.steps li i {
  position: absolute;
  top: -9px;
  left: 10px;
  z-index: 0;
  color: #e6f7ef;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
}

.steps .step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
  border: 4px solid #00b368;
  border-radius: 50%;
  background: #fff;
}

.steps .step-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.steps li b {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: #00b368;
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

@media (max-width: 340px) {
  .steps ol {
    column-gap: 18px;
  }

  .steps li i {
    left: 4px;
  }
}
