/* ==========================================================
   TIMELINE
========================================================== */

.timeline-section {
  padding: 120px 0;

  background: #ffffff;
}

.timeline {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-top: 80px;

  position: relative;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 32px;

  left: 15%;

  width: 70%;

  height: 2px;

  background: #d9e2ec;

  z-index: 0;
}

.timeline-item {
  position: relative;

  z-index: 2;

  width: 30%;

  text-align: center;
}

.timeline-number {
  width: 64px;

  height: 64px;

  margin: 0 auto 28px;

  border-radius: 50%;

  background: #143a5a;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.4rem;

  font-weight: 700;

  box-shadow: 0 12px 30px rgba(20, 58, 90, 0.2);
}

.timeline-item h3 {
  margin-bottom: 16px;

  color: #143a5a;

  font-size: 1.35rem;
}

.timeline-item p {
  color: #666;

  line-height: 1.8;
}
