.steps-wrapper {
  width: 100%;
  margin-top: 80px;
}

.steps-grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 32px;
}

.step-card {
  position: relative;

  text-align: center;
}

.step-line {
  position: absolute;

  top: 40px;
  left: 60%;

  width: 80%;
  height: 2px;

  background: rgb(255 228 230);
}

.step-card:last-child .step-line {
  display: none;
}

/* ICON */

.step-icon {
  position: relative;
  z-index: 2;

  width: 80px;
  height: 80px;

  margin: 0 auto 24px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgb(244 63 94);

  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.25);
}

.step-icon .material-icons {
  color: #ffffff;
  font-size: 34px;
}

/* NUMBER */

.step-number {
  width: fit-content;

  margin: 0 auto 20px auto;

  padding: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgb(255 228 230);

  color: rgb(244 63 94);

  font-size: 14px;
  font-weight: 700;

  min-width: 48px;
  min-height: 48px;
}

/* TITLE */

.step-title {
  font-size: 24px;
  font-weight: 700;

  margin-bottom: 16px;

  line-height: 1.3;
}

/* DESCRIPTION */

.step-description {
  font-size: 16px;

  line-height: 1.8;
}

/* COLORS */

.dark {
  color: rgba(54, 54, 54, 0.8);
}

.dark-light {
  color: rgba(107, 107, 107, 0.8);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;

    gap: 56px;
  }

  .step-icon {
    width: 72px;
    height: 72px;
  }

  .step-icon .material-icons {
    font-size: 30px;
  }

  .step-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .steps-wrapper {
    margin-top: 56px;
  }

  .step-description {
    font-size: 15px;
  }
}
