html,
body,
.container {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  flex-direction: column;
}

.title {
  font-size: 38px;
  color: #616161;
  font-style: italic;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  html,
body,
.container {
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto;
  }
}
.timeline {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.timeline .timeline-spine {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 100px;
  width: 2px;
  background-color: #d4a024;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .timeline .timeline-spine {
    display: none;
  }
}
.timeline .byline {
  font-size: 10px;
  font-style: italic;
  color: #ccc;
  margin-top: 30px;
}
.timeline .swiper-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow-y: hidden;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.timeline .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
.timeline .swiper-slide {
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  color: #fff;
  overflow: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  scroll-snap-align: start;
  isolation: isolate;
  overflow: hidden;
}
.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
}
.timeline .swiper-slide-content {
  position: absolute;
  text-align: right;
  width: 80%;
  max-width: 310px;
  right: 160px;
  top: 13%;
  transform: none;
  font-size: 12px;
  z-index: 2;
}
.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 40px;
  margin-bottom: 50px;
  color: #d4a024;
  font-weight: 300;
  opacity: 0;
  position: relative;
}
.timeline .swiper-slide .timeline-year::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: calc(100px - 10px);
  height: 2px;
  background-color: #d4a024;
  transform: translateY(-50%);
}
.timeline .swiper-slide .timeline-year::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100px;
  width: 10px;
  height: 10px;
  background-color: #d4a024;
  border-radius: 50%;
  transform: translateY(-50%) translateX(40%);
}
.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
}
.timeline .swiper-slide .timeline-text {
  transition-delay: 0.2s;
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  padding-right: 65px;
}
.timeline .swiper-slide-active .timeline-year,
.timeline .swiper-slide-active .timeline-title,
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 3s ease;
}
.timeline .swiper-pagination,
.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 768px) {
  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
  }
  .timeline .swiper-slide-content {
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    font-size: 11px;
    text-align: right;
  }
  .timeline .swiper-slide .timeline-year {
    margin-bottom: 15px;
    font-size: 20px;
    padding-right: 15px;
  }
  .timeline .swiper-slide .timeline-year::before {
    width: 50px;
    right: -50px;
  }
  .timeline .swiper-slide .timeline-year::after {
    right: -60px;
  }
  .timeline .swiper-slide .timeline-title {
    font-size: 20px;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  }
  .timeline .swiper-slide-content {
    right: 160px;
  }
}
.timeline .wide-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 2;
}
.timeline .slide-image {
  flex: 2;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.timeline .slide-video-box {
  flex: 2;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}
.timeline .slide-video-box .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .slide-video-box .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}
.timeline .slide-text-box {
  flex: 1;
  background: #fff;
  color: #000;
  padding: 40px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.timeline .slide-text-box .timeline-year {
  position: relative;
  padding-right: 50px;
  font-size: 28px;
  margin-bottom: 30px;
  white-space: normal;
  word-break: break-word;
  display: inline-block;
  max-width: 80%;
}
.timeline .slide-text-box .timeline-year::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 70px;
  height: 2px;
  background-color: #d4a024;
  transform: translateY(-50%);
}
.timeline .slide-text-box .timeline-year::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: #d4a024;
  border-radius: 50%;
  transform: translateY(-50%);
}
.timeline .swiper-slide.first-slide .timeline-text {
  padding-right: 0px;
}
.timeline .swiper-slide.first-slide .timeline-year {
  padding-right: 10px;
  margin-bottom: 20px;
}
.timeline .swiper-slide.first-slide .timeline-year::before {
  right: -60px;
  width: 55px;
}
.timeline .swiper-slide.first-slide .timeline-year::after {
  right: -60px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::before {
  right: 20px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2012"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2012"] .timeline-year::before {
  right: 10px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2012"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 50px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::before {
  right: 20px;
  width: 109px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2014"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2014"] .timeline-year::before {
  right: 10px;
  width: 90px;
}
.timeline .swiper-slide[data-year="2014"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2015"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2015"] .timeline-year::before {
  right: 10px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2015"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2016"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2016"] .timeline-year::before {
  right: 10px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2016"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2017"] .slide-text-box .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2017"] .slide-text-box .timeline-year::before {
  right: -20px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2017"] .slide-text-box .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year {
  padding-right: 45px;
  margin-bottom: 40px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::before {
  right: 20px;
  width: 85px;
}
.timeline .swiper-slide[data-year="2013"] .timeline-year::after {
  right: 10px;
}
.timeline .swiper-slide[data-year="2019"] .slide-text-box .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2019"] .slide-text-box .timeline-year::before {
  right: -20px;
  width: 150px;
}
.timeline .swiper-slide[data-year="2019"] .slide-text-box .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2018"] .slide-text-box .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2018"] .slide-text-box .timeline-year::before {
  right: -20px;
  width: 25px;
}
.timeline .swiper-slide[data-year="2018"] .slide-text-box .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2020"] .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2020"] .timeline-year::before {
  right: -20px;
  width: 20px;
}
.timeline .swiper-slide[data-year="2020"] .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2021"] .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2021"] .timeline-year::before {
  right: -20px;
  width: 20px;
}
.timeline .swiper-slide[data-year="2021"] .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2022"] .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2022"] .timeline-year::before {
  right: -25px;
  width: 55px;
}
.timeline .swiper-slide[data-year="2022"] .timeline-year::after {
  right: -25px;
}
.timeline .swiper-slide[data-year="2023"] .timeline-year {
  padding-right: 10px;
  font-size: 28px;
  margin-bottom: 30px;
}
.timeline .swiper-slide[data-year="2023"] .timeline-year::before {
  right: -25px;
  width: 60px;
}
.timeline .swiper-slide[data-year="2023"] .timeline-year::after {
  right: -25px;
}
.timeline .video-bg-slide {
  position: relative;
  background: #000;
  overflow: hidden;
}
.timeline .video-bg-slide .video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.timeline .video-bg-slide .video-background-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.timeline .video-bg-slide .swiper-slide-content {
  position: absolute;
  right: 160px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: auto;
  max-width: 310px;
  color: #fff;
  text-align: right;
  z-index: 2;
}
.timeline .video-bg-slide .swiper-slide-content .timeline-year {
  font-size: 28px;
  padding-right: 20px;
  margin-bottom: 20px;
}
.timeline .video-bg-slide .swiper-slide-content .timeline-year::before {
  right: 10px;
  width: 50px;
}
.timeline .video-bg-slide .swiper-slide-content .timeline-year::after {
  right: 0;
}
.timeline .video-bg-slide .swiper-slide-content .timeline-title,
.timeline .video-bg-slide .swiper-slide-content .timeline-text {
  transform: none !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
}
.timeline .video-bg-slide .video-bg-slide,
.timeline .video-bg-slide .video-bg-slide * {
  overflow: hidden !important;
}

@media screen and (max-width: 767px) {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden !important;
    width: 100vw;
    margin: 0;
    padding: 0;
  }

  .container,
.swiper-container {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .swiper-container {
    height: auto !important;
    min-height: 100vh !important;
    overflow-y: visible !important;
  }

  .swiper-slide,
.video-bg-slide {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .swiper-slide::after,
.video-bg-slide::after {
    background: none !important;
    box-shadow: none !important;
  }

  .swiper-slide-content,
.slide-text-box {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 20px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #000 !important;
    text-align: left !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .timeline-year {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    color: #d4a024 !important;
    display: block;
  }
  .timeline-year::before, .timeline-year::after {
    display: none !important;
  }

  .timeline-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
  }

  .timeline-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  .swiper-slide.first-slide .timeline-year,
.swiper-slide.first-slide .timeline-title,
.swiper-slide.first-slide .timeline-text,
.swiper-slide.first-slide .byline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .slide-video-box .video-wrapper {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    /* allow natural height */
    padding-top: 56.25% !important;
    /* 16:9 aspect ratio */
  }

  .slide-video-box .video-wrapper iframe {
    position: absolute !important;
    /* fill the wrapper */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: auto !important;
    /* remove huge min-width */
    min-height: auto !important;
    /* remove huge min-height */
    transform: none !important;
    pointer-events: auto !important;
    /* allow interaction */
  }

  /* Prevent horizontal scrolling */
  .slide-image,
.video-background-wrapper,
.slide-instagram-box {
    order: 2 !important;
    width: 100% !important;
    max-height: 50vh !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .timeline-spine {
    display: none !important;
  }

  /* === STACK TEXT ABOVE MEDIA ON MOBILE === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 9 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 2 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 3 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 2 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 3 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 3 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 9 === */

  /* === CUSTOM MOBILE FONT SIZE FIX FOR SLIDE 9 and 10 === */

  /* === Slide 4 (2014) mobile: taller image === */
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* First slide only */
  .swiper-slide.first-slide {
    position: relative !important;
    overflow: hidden !important;
    /* Remove any existing vignette from desktop */
    /* Add mobile vignette as a child div for reliability */
  }
  .swiper-slide.first-slide::after {
    content: none !important;
  }
  .swiper-slide.first-slide .mobile-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* adjust for text readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 1;
  }
  .swiper-slide.first-slide .swiper-slide-content {
    position: absolute !important;
    bottom: 5% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 90% !important;
    width: 90% !important;
    text-align: center !important;
    z-index: 2 !important;
    /* above vignette */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .swiper-slide.first-slide .timeline-year,
.swiper-slide.first-slide .timeline-title,
.swiper-slide.first-slide .timeline-text,
.swiper-slide.first-slide .byline {
    text-align: center !important;
    color: #fff !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .wide-layout {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: 100vh !important;
  }
}
@media screen and (max-width: 767px) {
  .slide-text-box {
    order: 1 !important;
    flex: 1 1 50% !important;
    width: 100% !important;
    padding: 20px !important;
    background-color: #fff !important;
    color: #000 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2020"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2020"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2020"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2020"] .swiper-slide-content,
.swiper-slide[data-year="2020"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2012"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2012"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2012"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2012"] .swiper-slide-content,
.swiper-slide[data-year="2012"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2013"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2013"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2013"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2013"] .swiper-slide-content,
.swiper-slide[data-year="2013"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2014"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2014"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2014"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2014"] .swiper-slide-content,
.swiper-slide[data-year="2014"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2015"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2015"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2015"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2015"] .swiper-slide-content,
.swiper-slide[data-year="2015"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2017"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2017"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2017"] .timeline-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2017"] .swiper-slide-content,
.swiper-slide[data-year="2017"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .timeline-text {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .swiper-slide-content,
.swiper-slide[data-year="2019"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .timeline-year {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2019"] .timeline-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2021"] .timeline-text {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2021"] .swiper-slide-content,
.swiper-slide[data-year="2021"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2021"] .timeline-text {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide[data-year="2021"] .swiper-slide-content,
.swiper-slide[data-year="2021"] .slide-text-box {
    padding: 16px !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide[data-year="2014"] .slide-image {
    height: 70vh !important;
    /* image takes up 70% of viewport */
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Adjust text area beneath image */
  .swiper-slide[data-year="2014"] .slide-text-box {
    height: auto !important;
    padding: 16px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* First slide: move text to bottom center, stacked */
  .swiper-slide.first-slide .swiper-slide-content {
    top: auto;
    /* remove top positioning */
    bottom: 5%;
    /* stick near bottom */
    left: 50%;
    /* center horizontally */
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    /* stack + center text */
    width: 90%;
    /* wider for small screens */
    max-width: 100%;
  }

  .swiper-slide.first-slide .timeline-year,
.swiper-slide.first-slide .timeline-title,
.swiper-slide.first-slide .timeline-text,
.swiper-slide.first-slide .byline {
    text-align: center;
    /* ensure all pieces stack */
    padding-right: 0;
    /* remove desktop spacing */
    margin-left: auto;
    margin-right: auto;
  }

  /* Flip vignette so it fades upward from bottom */
  .swiper-slide.first-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    /* adjust to cover text area */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    box-shadow: none;
    border-radius: 0;
    z-index: 1;
  }

  /* Mobile: push video to bottom half without extra black space */
}
@media screen and (max-width: 767px) and (max-width: 767px) and (max-width: 767px) {
  /* Slide 4 (2014): image stays on bottom and scales proportionally */
  .swiper-slide[data-year="2014"] .wide-layout {
    flex-direction: column !important;
    /* stack text above image */
  }

  .swiper-slide[data-year="2014"] .slide-text-box {
    order: 1 !important;
    /* text first */
    padding: 16px !important;
  }

  .swiper-slide[data-year="2014"] .slide-image {
    order: 2 !important;
    /* keep image on bottom */
    height: 70vh !important;
    /* taller than default */
    max-height: none !important;
    background-size: contain !important;
    /* scale proportionally */
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
    /* fill gaps with black */
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide .wide-layout {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide .slide-text-box {
    order: 1 !important;
    flex: 1 1 50% !important;
    /* top half */
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide .slide-video-box {
    order: 2 !important;
    flex: 1 1 50% !important;
    /* bottom half */
    display: flex !important;
    align-items: flex-end !important;
    /* push video-wrapper to bottom */
    justify-content: center !important;
    background: transparent !important;
    /* remove black background */
    height: auto !important;
    /* let iframe define height */
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide .slide-video-box .video-wrapper {
    width: 100% !important;
    padding-top: 56.25% !important;
    /* 16:9 aspect ratio */
    position: relative !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .swiper-slide .slide-video-box .video-wrapper iframe {
    position: absolute !important;
    bottom: 0 !important;
    /* stick to bottom */
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}