.timeline_image-wrapper img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.blogPageHeading {
  font-size: 35px;
  background: var(--accent-color);
  background: -webkit-linear-gradient(to right, var(--accent-color), var(--primary-color));
  background: linear-gradient(to right, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inline-block {
  max-width: 100%;
  display: inline-block;
}

.blog-page-wrapper {
  z-index: 0;
  position: relative;
}

.blog-container {
  width: 90vw;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.blog-paragraph-large {
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--background-color);
}

.section-timeline-heading {
  background-color: var(--text-color);

}

.padding-vertical-xlarge {
  padding-top: 120px;
  padding-bottom: 120px;
}

.timeline-main_heading-wrapper {
  color: #fff;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.timeline_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.timeline_item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
}

.timeline_centre {
  justify-content: center;
  display: flex;
}

.timeline_date-text {
  color: var(--background-color);
  letter-spacing: -0.03em;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
}

.timeline_text {
  color: var(--background-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.timeline_circle {
  background-color: var(--accent-color);
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px #0a0a0a;
}

.timeline_progress {
  z-index: -2;
  background-color: var(--neutral-color);
  width: 3px;
  height: 100%;
  position: absolute;
}

.timeline_progress-bar {
  z-index: -1;
  background: var(--accent-color);
  background: -webkit-linear-gradient(to bottom, var(--accent-color), var(--primary-color));
  background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));

  width: 3px;
/*  height: 50vh;*/
/*  position: fixed;*/
  inset: 0 auto 50vh;
}

.section-timeline {
  z-index: -3;
  background-color: var(--text-color);
  position: relative;
  padding-bottom: 120px;
}

.margin-bottom-xlarge {
  margin-bottom: 56px;
}

.timeline_link {
  opacity: 0.6;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
}

.timeline_link:hover {
  opacity: 1;
}

.link-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.inline-block {
  display: inline-block;
}

.text-colour-lightgrey {
  color: #ffffffa6;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }

  .blog-paragraph-large {
    font-size: 18px;
  }

  .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .timeline_item {
    grid-template-columns: 64px 1fr;
    width: 100%;
  }

  .timeline_left {
    text-align: left;
    grid-area: 1 / 2 / 2 / 3;
  }

  .timeline_centre {
    justify-content: flex-start;
    grid-area: 1 / 1 / 3 / 2;
  }

  .timeline_right {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  .timeline_date-text {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .timeline_text {
    font-size: 20px;
  }

  .timeline_progress {
    left: 6px;
  }

  .margin-bottom-xlarge {
    margin-bottom: 48px;
  }
}

.timeline_item a{
  display: inline-block;
  margin-top: 10px;
  color: var(--background-color);
  font-size: 20px;
}