
/* Style global */

.timeline-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
}

.timeline-title .dot {
  color: #e53935;
}

/* Timeline container */
.timeline {
    border-radius: 24px;
    padding: 60px 10px;
    width: var(--rn-width1);
   margin: 40px auto;
  position: relative;
  background-color: #f5f5f5;
}

.timeline-container {
  position: relative;
  padding: 20px 0;
}

/* Ligne centrale */
.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ddd;
  transform: translateX(-50%);
}

/* Item */
.timeline-item {
  width: 50%;
  position: relative;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Point rouge */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: #e53935;
  border-radius: 50%;
  border: 3px solid #f5f5f5;
  box-shadow: 0 0 0 2px #f5f5f5;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -11px;
}

/* Contenu */
.timeline-content {
  padding: 20px;
  border-radius: 10px;
  margin-top: -12px;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.timeline-content .step {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: 0;
  }
}



        /* end section3 */
