/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/* Font weight START */
/* Font weight END */
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
/*@import "../base/typography";
*/
.timeline {
  font-family: "Inter", sans-serif;
  background: linear-gradient(90deg, #086aca, #0554a2);
  color: #fff;
  padding: 70px 0;
  overflow: unset;
}
@media (min-width: 1024px) {
  .timeline {
    padding: 0;
    background-color: #114980;
    background-image: url("/SiteFiles/dist/images/timeline/blur-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.timeline:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 100%;
  background-image: url("/SiteFiles/dist/images/timeline/bg-pattern--mobile.svg");
  z-index: 1;
}
@media (min-width: 1024px) {
  .timeline:after {
    display: none;
  }
}
.timeline__outer {
  display: flex;
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) {
  .timeline__outer {
    margin-right: calc(0.5 * (100vw - (100% - 40px)));
  }
}
@media (min-width: 640px) {
  .timeline__outer {
    margin-right: calc(0.5 * (100vw - 544px));
  }
}
@media (min-width: 768px) {
  .timeline__outer {
    margin-right: calc(0.5 * (100vw - 672px));
  }
}
@media (min-width: 1024px) {
  .timeline__outer {
    margin-right: 0;
  }
}
.timeline__wrap {
  width: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  .timeline__wrap {
    padding: 15vh 0 0 45px;
    margin-left: 10px;
    width: 40%;
    min-width: 450px;
    /*max-height: calc(100vh - 101px);*/
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.timeline-blip {
  display: block;
  width: 1px;
  height: 100px;
  background: linear-gradient(rgba(109, 207, 246, 0), #6dcff6, rgba(109, 207, 246, 0));
  position: relative;
}
.timeline-blip:before, .timeline-blip:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
}
.timeline-blip:before {
  left: -2px;
  width: 5px;
  height: 5px;
  background: #6dcff6;
  z-index: 2;
}
.timeline-blip:after {
  left: -5px;
  width: 11px;
  height: 11px;
  background: #6dcff6;
  opacity: 0.6;
  z-index: 1;
  animation: 2s infinite blink;
  animation-delay: 500ms;
}

@keyframes blink {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}
.timeline-intro {
  padding-bottom: 80px;
}
@media (min-width: 1024px) {
  .timeline-intro {
    padding-right: 30px;
  }
}
.timeline-intro__icon-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .timeline-intro__icon-wrap {
    margin-bottom: 22px;
  }
}
.timeline-intro__icon {
  width: 20px;
}
@media (min-width: 1024px) {
  .timeline-intro__icon {
    width: 25px;
  }
}
.timeline-intro__main-heading {
  font-size: 34px;
}
@media (min-width: 1024px) {
  .timeline-intro__main-heading {
    font-size: 60px;
  }
}
.timeline-intro__info {
  font-size: 18px;
  margin-top: 15px;
}

.timeline__year-selection {
  margin-bottom: 40px;
  display: block;
}
@media (min-width: 1024px) {
  .timeline__year-selection {
    display: none;
  }
}
.timeline__year-selection label {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 10px;
}
.timeline__year-selection.field-container .field-select select {
  background: transparent;
  border-bottom-color: white;
  border-bottom-width: 1px;
  padding-left: 0;
}
.timeline__year-selection.field-container .field-select:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}

.timeline__main {
  position: relative;
  /*scrollbar-width: none;
  -ms-overflow-style: none;*/
}
@media (min-width: 1024px) {
  .timeline__main {
    padding-right: 20px;
    /*scroll-snap-type: y mandatory;
    overflow: scroll;*/
  }
}
.timeline__main::-webkit-scrollbar {
  display: none;
}

.timeline-item {
  scroll-snap-align: start;
  padding-bottom: 25px;
}
@media (min-width: 1024px) {
  .timeline-item {
    padding-bottom: 50px;
    opacity: 0.5;
    transition: 250ms;
  }
}
.timeline-item__date {
  font-size: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (min-width: 1024px) {
  .timeline-item__date {
    flex-direction: column;
    align-items: flex-start;
  }
}
.timeline-item__blip {
  height: 50px;
  background: linear-gradient(rgba(109, 207, 246, 0), #6dcff6);
}
.timeline-item__blip:before {
  top: unset;
  bottom: 0;
}
.timeline-item__blip:after {
  top: unset;
  bottom: -3px;
}
@media (min-width: 1024px) {
  .timeline-item__blip {
    margin-left: 5px;
  }
}
.timeline-item__heading {
  margin: 14px 0;
  font-size: 24px;
}
.timeline-item__image {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .timeline-item__image {
    display: none;
  }
}

.timeline-item--active {
  opacity: 1;
}

.timeline-dates {
  display: none;
  font-size: 12px;
  font-weight: 500;
  width: 30px;
}
@media (min-width: 1024px) {
  .timeline-dates {
    display: block;
  }
}
.timeline-dates__wrap {
  position: relative;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  .timeline-dates__wrap {
    position: sticky;
    top: 0;
    padding-top: 15vh;
    margin-top: 100px;
  }
}
.timeline-dates__list {
  --dateIndex: 0;
}
.timeline-dates__date {
  padding-bottom: 20px;
  opacity: 0;
  transition: 250ms ease-in-out;
  transform: translateY(calc(-100% * var(--dateIndex)));
}
.timeline-dates__date--two-from-active {
  opacity: 0.25;
}
.timeline-dates__date--one-from-active {
  opacity: 0.5;
}
.timeline-dates__date--active {
  opacity: 1;
}
.timeline-dates__blip {
  position: absolute;
  top: -44px;
  right: -11px;
}

.timeline-images {
  display: none;
  width: calc(60% - 30px);
  position: relative;
}
.timeline-images:after {
  content: "";
  display: block;
  position: absolute;
  left: -40px;
  top: 0;
  width: 100px;
  height: 100%;
  background-image: url("/SiteFiles/dist/images/timeline/bg-pattern--desktop.svg");
}
@media (min-width: 1280px) {
  .timeline-images:after {
    left: 0;
  }
}
@media (min-width: 1024px) {
  .timeline-images {
    display: block;
  }
}
.timeline-images__inner {
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
}
.timeline-images__image {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  padding-left: 60px;
  opacity: 0;
  transition: 400ms;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.timeline-images__image--active {
  opacity: 1;
}
@media (min-width: 1280px) {
  .timeline-images__image {
    padding-left: 100px;
  }
}