.steps {
  padding: 20px 0;
  background: #FFF;
  color: #1b1a1a;
}
@media (max-width: 500px) {
  .steps {
    padding: 0 10px;
  }
}
.steps .wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}
.steps .wrapper .title {
  font-size: 3rem;
  max-width: 500px;
}
.steps .wrapper .introduction {
  font-size: 2rem;
  max-width: 500px;
}
.steps .wrapper .steps-list {
  display: flex;
  flex-direction: column;
}
.steps .wrapper .steps-list .step {
  border-bottom: 1px solid #706a6a;
  padding: 50px 0;
}
.steps .wrapper .steps-list .step:last-child {
  border-bottom: none;
}
.steps .wrapper .steps-list .step .step-wrapper {
  max-width: 500px;
  display: flex;
  gap: 50px;
}
.steps .wrapper .steps-list .step .step-wrapper .step-number {
  font-size: 2rem;
  color: #706a6a;
  margin: 0;
  text-wrap: nowrap;
}
.steps .wrapper .steps-list .step .step-wrapper .step-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps .wrapper .steps-list .step .step-wrapper .step-content .step-title {
  font-size: 2.5rem;
  color: #1b1a1a;
  margin: 0;
}
.steps .wrapper .steps-list .step .step-wrapper .step-content .step-description {
  font-weight: bold;
}
.steps .wrapper .steps-list .step .step-wrapper .step-content .step-description p {
  margin: 0;
}

.paragraph--theme-dark .steps {
  background: #1b1a1a;
  color: #FFF;
}
.paragraph--theme-dark .steps .step {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.paragraph--theme-dark .steps .step-number {
  color: rgba(255, 255, 255, 0.62);
}
.paragraph--theme-dark .steps .step-title,
.paragraph--theme-dark .steps .step-description {
  color: #FFF;
}

.paragraph--theme-light .steps {
  box-shadow: inset 0 0 0 1px rgba(27, 26, 26, 0.08);
}

/*# sourceMappingURL=steps.css.map */
