/* Timeline container */
.timeline {
  position: relative;
  padding: 10px 0;
}

/* Style for each timeline item */
.timeline-item {
  position: relative;
  margin: 20px 0;
  padding-left: 50px;
}

/* Timeline icons */
.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: red;
  color: white;
  border-radius: 10%;
  display: flex;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Timeline content */
.timeline-content {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  position: relative;
}

/* Connecting line between the items */
.timeline-item:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ddd;
  z-index: 0;
}

/* Customizing the titles */
.timeline-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

/* Styling the text under each title */
.timeline-content p {
  font-size: 14px;
  color: #555;
}

/* Style the icons using Font Awesome */
.fas.fa-check {
  font-size: 20px;
}

.timeline-fechas {
  color: white;
  font-size: small;
}

/* Make the timeline more responsive */
@media (max-width: 768px) {
  .timeline-content {
    width: 250px;
  }

  .timeline-item {
    padding-left: 35px;
  }

  .timeline-icon {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
}
