.n-steps {
  max-width: var(--n-max-width, 1360px);
  margin: clamp(1.6rem, 4vw, 3.2rem) auto;
}
.n-steps__title {
  margin: 0;
  text-align: center;
  line-height: 1.12;
  font-weight: 700;
}
.n-steps__introduction {
  max-width: 44rem;
  margin: clamp(0.8rem, 1.8vw, 1.3rem) auto 0;
  text-align: center;
  color: var(--n-color-text, #252525);
  line-height: 1.55;
  font-weight: 400;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.n-steps__introduction p {
  margin: 0;
}
.n-steps__list {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding: 100px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  background: var(--n-color-cream);
  border-top-right-radius: clamp(22px, 2.8vw, 34px);
  border-bottom-left-radius: clamp(22px, 2.8vw, 34px);
}
@media (max-width: 728px) {
  .n-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .n-steps {
    margin: 1.2rem 0.8rem;
  }
  .n-steps__list {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }
}

.n-step {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.n-step__content {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 0 auto;
}
.n-step__number {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5f46f6;
  color: #fff;
  font-size: clamp(1.3rem, 1.6vw, 1.1rem);
  font-weight: 500;
  line-height: 1;
}
.n-step__title {
  margin: 0;
  color: var(--n-color-dark, #242323);
  font-size: clamp(1.2rem, 2vw, 1.2rem);
  line-height: 1.23;
  font-weight: 500;
}
.n-step__description {
  color: var(--n-color-dark, #242323);
  line-height: 1.5;
  font-weight: 400;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.n-step__description p {
  margin: 0;
}

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