.steps_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  width: 80%;
  max-width: 1400px;
  margin: 0 auto !important;
}

@media (max-width: 1200px) {
  .steps_grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
    margin: 0 auto !important;
  }
}

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