.timeline {
  margin: 0 auto;
  position: relative;
  left: 120px;
  width: 100%;
  max-width: 700px;
  margin-top: 16px;
  margin-left: 5%;
}

.timeline-item {
  color: #ffffff;
  font-family: "Inter";
  text-align: left;
  font-size: 1.4rem;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border-left: 4px solid #fff;
  border-bottom: 1px solid #ffffff;
  position: relative;
  list-style-type: none;
  --item-width: calc(100%);
}

.timeline-item::after {
  content: attr(data-date);
  position: absolute;
  right: calc(var(--item-width) + 40px);
  top: 16px;
  float: right;
  font-weight: bold;
  white-space: nowrap;
}

.timeline-item::before {
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  left: -10px;
  top: 21px;
}

.timeline-item:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 800px) {
  .timeline {
    margin: 0 auto;
    position: relative;
    left: 85px;
  }

  .timeline .timeline-item {
    font-size: 1.1rem;
  }

  .timeline .timeline-item::after {
    right: calc(var(--item-width) + 30px);
  }
}

@media only screen and (max-width: 800px) {
  .timeline-item {
    padding: 1rem 1.5rem 1rem 0.5rem;
  }

  .timeline-item::after {
    right: calc(var(--item-width) + 20px);
  }
}
/* TIMELINE end */

.timeline-sublist {
  list-style: none;
  padding: 0.5rem 0 0.25rem 0;
  margin: 0;
}

.timeline-subitem {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter";
  font-size: 1.05rem;
  padding: 0.45rem 0.5rem 0.45rem 1.6rem;
  position: relative;
  text-align: left;
  border-left: 2px rgba(255, 255, 255, 0.35);
  margin-left: 0.5rem;
  margin-bottom: 0.15rem;
}

.timeline-subitem::before {
  content: "";
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-subitem[data-date]::after {
  content: attr(data-date);
  font-size: 0.82rem;
  opacity: 0.65;
  margin-left: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
}