.timeline {
  --rail-size: 2px;
  --dot-size: 42px;
  position: relative;
  display: block;
  padding: 1px 0 var(--header-height);
  max-width: 1200px;
  margin: calc(var(--font-size-xxl) * 1.5) auto 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .timeline {
    --dot-size: 30px;
  }
}
.timeline .anchor {
  margin-top: calc(var(--header-height) * -0.8);
}
.timeline .intro {
  position: relative;
  z-index: 2;
  margin: 0 auto -5em;
  padding: 0 var(--container-padding);
}
@media (max-width: 999px) {
  .timeline .intro {
    max-width: 680px;
  }
}
@media (max-width: 999px) and (min-width: 568px) {
  .timeline .intro {
    text-align: center;
  }
}
@media (min-width: 1000px) {
  .timeline .intro {
    padding-left: calc(50% + 10px + 1.5em);
    margin-bottom: -11em;
    font-size: var(--font-size-sm);
  }
}
@media (min-width: 1200px) {
  .timeline .intro {
    padding-left: 56%;
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .timeline .intro {
    padding-right: 0;
  }
}
.timeline .intro h2 {
  font-size: var(--font-size-xxl);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 -0.05em 0.5em;
}
@media (min-width: 1480px) {
  .timeline .intro h2 {
    margin-right: -10%;
  }
}
.timeline .timeline-items {
  position: relative;
  display: block;
  counter-reset: timeline;
  padding: 6em 0 4em;
}
@media (max-width: 1199px) {
  .timeline .timeline-items {
    padding-bottom: 2em;
  }
}
.timeline .timeline-items::before, .timeline .timeline-items::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--rail-size);
  background-color: var(--primary-color-lighter);
  margin: 0 calc(var(--rail-size) / -2);
}
@media (max-width: 767px) and (orientation: portrait) {
  .timeline .timeline-items::before, .timeline .timeline-items::after {
    left: calc(var(--container-padding) + 2px);
  }
}
.timeline .timeline-items::after {
  height: calc(var(--scroll) * 100%);
  background-color: var(--primary-color);
}
.timeline .item {
  position: relative;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  counter-increment: timeline;
  margin: 20px var(--container-padding);
}
@media (min-width: 768px), (orientation: landscape) {
  .timeline .item {
    margin: -6em var(--container-padding);
    min-height: 16em;
  }
  .timeline .item:nth-child(odd) {
    justify-content: flex-end;
  }
}
@media (min-width: 1360px) {
  .timeline .item {
    margin: -6em 0;
    min-height: 18em;
  }
}
.timeline .item:first-child, .timeline .item[data-index="0"] {
  margin-top: 0;
}
.timeline .item:last-child {
  margin-bottom: 0;
}
.timeline .item::after {
  content: "0" counter(timeline);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: var(--dot-size);
  aspect-ratio: 1;
  margin: calc(var(--dot-size) / -2);
  background-color: var(--primary-color-lighter);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0);
  font-weight: 800;
  z-index: 1;
  transition: 0.3s ease;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0), 0 5px 12px 4px rgba(var(--dark-color-rgb), 0);
  transform: scale(0.4);
}
@media (max-width: 767px) and (orientation: portrait) {
  .timeline .item::after {
    left: 2px;
    font-size: var(--font-size-xs);
  }
}
.timeline .item[data-index="0"] .overlay, .timeline .item:last-child .overlay {
  position: absolute;
  top: -6em;
  bottom: 45%;
  width: calc(var(--rail-size) + 2px);
  left: 50%;
  margin-left: calc(var(--rail-size) / -2 - 1px);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), var(--white));
}
@media (max-width: 767px) and (orientation: portrait) {
  .timeline .item[data-index="0"] .overlay, .timeline .item:last-child .overlay {
    left: 2px;
  }
}
.timeline .item:last-child .overlay {
  top: 45%;
  bottom: -4em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}
@media (max-width: 1199px) {
  .timeline .item:last-child .overlay {
    bottom: -2em;
  }
}
.timeline .item[data-visible=true]::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 4px var(--white), 0 5px 12px 4px rgba(var(--dark-color-rgb), 0.2);
  background-color: var(--dark-color);
  color: var(--white);
}
.timeline .item[data-visible=true] .item-content {
  margin: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .timeline .item[data-visible=true] .item-content {
    margin: 0 -0.5em;
  }
}
.timeline .item-content {
  max-width: 45%;
  background-color: var(--white);
  box-shadow: 0 10px 50px -10px rgba(var(--dark-color-rgb), 0.1);
  padding: 2em 3em;
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s var(--ease-out-quad);
  margin: 0 calc(var(--container-padding) * -1);
}
.timeline .item-content h3 {
  font-size: var(--font-size-sm);
  font-weight: 800;
  margin: 0.7em 0;
}
.timeline .item-content p {
  margin: 0.8em 0;
}
@media (max-width: 1199px) {
  .timeline .item-content {
    padding: 1em 1.6em;
    max-width: calc(50% - 10px);
  }
  .timeline .item-content h3 {
    margin: 0.5em 0;
  }
  .timeline .item-content p {
    margin: 0.6em 0 0.7em;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .timeline .item-content {
    max-width: none;
    position: relative;
    left: 10px;
    margin: 0;
    transform: translate3d(0, 50px, 0);
  }
}
.timeline .scroll-tracker {
  position: absolute;
  top: 30vh;
  height: 100%;
  width: 20px;
  right: 0;
  pointer-events: none;
}
.timeline .observable {
  position: absolute;
  top: calc(50% + 30vh);
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px;
  pointer-events: none;
}
.timeline .button-wrapper {
  text-align: center;
  margin-top: 1em;
  transition: 0.3s ease;
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}
.timeline[style="--scroll: 1;"] .button-wrapper {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.timeline .button {
  margin-left: 0;
  margin-right: 0;
}

/*# sourceMappingURL=timeline.css.map */
