/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.timeline-block {
  background-color: #EBEDE9;
}
.timeline-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
.timeline-block .heading-pill-container {
  margin: 0 0 3.2rem;
}
.timeline-block .heading {
  margin: 0 0 3.2rem;
}
.timeline-block .sparkle {
  width: 25rem;
  height: 25rem;
}
.timeline-block .sparkle .big {
  animation: sparkle 2s ease-in-out infinite;
}
.timeline-block .sparkle .medium {
  animation: sparkle 1.8s ease-in-out 0.4s infinite;
}
.timeline-block .sparkle .small {
  animation: sparkle 1s ease-in-out 0.5s infinite;
}
.timeline-block .timeline {
  max-width: 67.5rem;
  margin-left: auto;
}
.timeline-block .timeline .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  width: 100%;
  position: relative;
}
.timeline-block .timeline .timeline-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.4rem;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}
.timeline-block .timeline .timeline-item {
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 2.4rem;
  display: grid;
  grid-template-columns: 12.2rem auto;
  align-items: center;
  gap: 2.4rem;
  position: relative;
  z-index: 2;
}
.timeline-block .timeline .timeline-item:first-child::before {
  content: none;
}
.timeline-block .timeline .timeline-item:last-child::after {
  content: none;
}
.timeline-block .timeline .timeline-item::before, .timeline-block .timeline .timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border-radius: 50%;
}
.timeline-block .timeline .timeline-item::before {
  top: -0.8rem;
}
.timeline-block .timeline .timeline-item::after {
  bottom: -0.8rem;
}
.timeline-block .timeline .timeline-item .timeline-item-date {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.2rem 2.4rem;
  border-radius: 2.4rem;
  background-color: #A1BAA7;
  color: #fff;
}
.timeline-block .timeline .timeline-item .timeline-item-description {
  font-weight: 600;
}
.timeline-block .timeline .sparkle {
  display: none;
}

@media (max-width: 768px) {
  .timeline-block .container {
    grid-template-columns: 1fr;
  }
  .timeline-block .heading-pill-container {
    margin: 0 0 2.4rem;
    display: flex;
    justify-content: center;
  }
  .timeline-block .heading {
    margin: 0 0 1.6rem;
    text-align: center;
  }
  .timeline-block .content .sparkle {
    display: none;
  }
  .timeline-block .timeline {
    max-width: 100%;
    margin: 0;
  }
  .timeline-block .timeline .timeline-list {
    gap: 1.6rem;
  }
  .timeline-block .timeline .timeline-list::after {
    width: 1px;
  }
  .timeline-block .timeline .timeline-item {
    padding: 1.6rem;
    border-radius: 1.6rem;
    display: grid;
    grid-template-columns: 8rem auto;
  }
  .timeline-block .timeline .timeline-item::before, .timeline-block .timeline .timeline-item::after {
    width: 0.6rem;
    height: 0.6rem;
  }
  .timeline-block .timeline .timeline-item::before {
    top: -0.3rem;
  }
  .timeline-block .timeline .timeline-item::after {
    bottom: -0.3rem;
  }
  .timeline-block .timeline .timeline-item .timeline-item-date {
    padding: 1.8rem 0.8rem;
    border-radius: 1.6rem;
  }
  .timeline-block .timeline .sparkle {
    display: block;
    width: 19rem;
    height: 19rem;
    margin: 2.4rem auto 0;
  }
}