* { box-sizing: border-box; }
html { height: 100%; }
body {
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
  background-color: #002b5b;
  color: #ffffff;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}
h2 {
  font-size: 50px;
  background: linear-gradient(to right, #33ccff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inline-block { display: inline-block; }
.page-wrapper { position: relative; }
.container {
  width: 90vw;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.margin-bottom-medium { margin-bottom: 32px; }
.paragraph-large {
  letter-spacing: -0.02em;
  font-size: 20px;
}
.section-timeline-heading { background-color: #002b5b; }
.padding-vertical-xlarge {
  padding-top: 120px;
  padding-bottom: 120px;
}
.timeline-main_heading-wrapper {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.timeline_component {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.timeline_item {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  padding: 80px 0;
}
.timeline_left { text-align: right; }
.timeline_centre { display: flex; justify-content: center; }
.timeline_right {}
.timeline_date-text {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
  color: #33ccff;
}
.timeline_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}
.timeline_circle {
  width: 15px;
  height: 15px;
  background-color: #00aaff;
  border-radius: 50%;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px #002b5b;
}
.timeline_progress {
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #003b75;
  z-index: -2;
}
.timeline_progress-bar {
  position: fixed;
  inset: 0 auto 50vh;
  width: 3px;
  height: 50vh;
  background: linear-gradient(to bottom, #33ccff, #00aaff);
  z-index: -1;
}
.overlay-fade-top {
  background-image: linear-gradient(#002b5b, #002b5b00);
  height: 80px;
  position: absolute;
  inset: 0 0 auto;
}
.overlay-fade-bottom {
  background-image: linear-gradient(to top, #002b5b, #002b5b00);
  height: 80px;
  position: absolute;
  inset: auto 0 0;
}

@media screen and (max-width: 767px) {
  h2 { font-size: 40px; }
  .paragraph-large { font-size: 18px; }
  .timeline_item { grid-template-columns: 64px 1fr; }
  .timeline_date-text { font-size: 28px; margin-bottom: 16px; }
  .timeline_text { font-size: 18px; }
  .timeline_progress { left: 6px; }
}


@media screen and (max-width: 480px) {
  .timeline_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px;
    gap: 8px;
    text-align: center;
  }

  .timeline_left,
  .timeline_centre,
  .timeline_right {
    width: 100%;
    text-align: center;
  }

  .timeline_date-text {
    position: relative;
    top: unset;
    font-size: 16px;
    margin-bottom: 4px;
    color: #33ccff;
  }

  .timeline_text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .timeline_circle {
    display: none;
  }

  .timeline_progress,
  .timeline_progress-bar,
  .overlay-fade-top,
  .overlay-fade-bottom {
    display: none;
  }

  h2 {
    font-size: 24px;
  }

  .paragraph-large {
    font-size: 14px;
    line-height: 1.5;
  }

  .padding-vertical-xlarge {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container {
    width: 92vw;
    margin: 0 auto;
  }
}

