/*========================

    NUESTRO PROCESO

=========================*/

.process {
  background: #ffffff;
}

.timeline {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  position: relative;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 45px;

  left: 10%;

  width: 80%;

  height: 3px;

  background: #ddd;

  z-index: 0;
}

.timeline-item {
  position: relative;

  text-align: center;

  z-index: 1;
}

.timeline-number {
  width: 90px;

  height: 90px;

  margin: auto;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 25px;

  box-shadow: 0 15px 35px rgba(75, 31, 111, 0.25);
}

.timeline-item h4 {
  font-weight: 600;

  margin-bottom: 15px;
}

.timeline-item p {
  color: var(--gray);

  line-height: 1.8;
}

/*========================

    RESPONSIVE

=========================*/

@media (max-width: 992px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-bottom: 40px;
  }
}
