html {
  scroll-behavior: smooth;
}
#50-anniversary-page {
  overflow-x: hidden;
  touch-action: pan-y pinch-zoom;
}
#50-anniversary-page img:not(.image-slider) {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}
.sticky-header-bar {
  position: fixed;
  top: 155px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
}
.sticky-header-bar .sticky-logo-container {
  position: relative;
  padding: 15px 30px;
  width: 260px;
  height: auto;
}
.sticky-header-bar .sticky-logo-container .sticky-logo {
  width: 100%;
  height: auto;
  display: block;
}
.desktop-only {
  display: block;
}
@media (max-width: 576px) {
  .desktop-only {
    display: none;
  }
}
.section {
  position: relative;
}
.section .sticky {
  position: sticky;
  top: 25vh;
  left: 20vw;
  z-index: 1;
  /* can adjust per section if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  gap: 15px;
  padding: 20px 0px;
  width: 60%;
  text-align: center;
}
@media (max-width: 799px) {
  .section .sticky {
    width: auto;
  }
}
.section .sticky img {
  width: 200px;
  height: 100px;
}
@media (max-width: 480px) {
  .section .sticky img {
    width: 150px;
    height: 70px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section .sticky img {
    width: 200px;
    height: 90px;
  }
}
.section .sticky .sticky-center {
  z-index: 2;
  line-height: 5vw;
  font-size: 5vw;
}
@media (max-width: 480px) and (max-width: 768px) {
  .section .sticky .sticky-center {
    line-height: 8vw;
    font-size: 8vw;
  }
}
.section .sticky .bottom-text {
  font-size: 18px;
  line-height: 30px;
  color: black;
  width: 78%;
  letter-spacing: 1.1px;
}
@media (max-width: 480px) {
  .section .sticky .bottom-text {
    font-size: 13px;
    line-height: 20px;
    width: 90%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section .sticky .bottom-text {
    font-size: 16px;
    line-height: 20px;
    width: 90%;
  }
}
.section.header {
  background-color: #FFFFFF;
  height: 3525px;
  /* how much foreground scroll height do you want to expend on this image*/
  z-index: 1;
  margin: 100px 30px;
  touch-action: pan-y pinch-zoom;
}
.section.header .scrolling-images {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 260px;
  width: 95%;
}
.section.header .scrolling-images .image-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.section.header .scrolling-images .image-container:nth-child(even) {
  justify-content: flex-start;
}
.section.header .scrolling-images .image-container img {
  margin: 0 70px;
  width: 25%;
  opacity: 0.8;
  border-radius: 30px;
  aspect-ratio: 1.5;
  object-fit: cover;
}
@media (max-width: 480px) {
  .section.header {
    height: 3100px;
    margin: 15px;
  }
  .section.header .scrolling-images {
    gap: 300px;
    width: 100%;
  }
  .section.header .scrolling-images .image-container img {
    margin: 0 20px;
    width: 60%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.header {
    height: 3600px;
    margin: 15px;
  }
  .section.header .scrolling-images {
    gap: 360px;
    width: 100%;
  }
  .section.header .scrolling-images .image-container img {
    margin: 0 20px;
    width: 50%;
  }
}
.section.timeline {
  position: relative;
  margin-top: -100vh;
  /* overlap first section */
  z-index: 3;
  padding-left: 150px;
  box-sizing: border-box;
  touch-action: pan-y pinch-zoom;
}
@media (max-width: 480px) {
  .section.timeline {
    padding-left: 75px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline {
    padding-left: 90px;
  }
}
.section.timeline .timeline-year {
  position: sticky;
  top: 80px;
  color: white;
  font-size: 490px;
  transform-origin: top center;
  transition: transform 0.1s linear;
  text-align: center;
}
@media (max-width: 480px) {
  .section.timeline .timeline-year {
    font-size: 100px;
    top: 95px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .timeline-year {
    font-size: 130px;
    top: 95px;
  }
}
@media (min-width: 769px) and (max-width: 1536px) {
  .section.timeline .timeline-year {
    font-size: 380px;
    top: 80px;
  }
}
.section.timeline .timeline-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 140px;
  color: white;
  text-align: left;
  padding-bottom: 8rem;
  align-items: center;
}
.section.timeline .timeline-content .timeline-content-title {
  font-size: 40px;
  font-family: 'Museo Slab';
  padding-bottom: 30px;
}
.section.timeline .timeline-content > * {
  width: 40%;
}
.section.timeline .timeline-content p {
  color: white;
  font-size: 18px;
  line-height: 30px;
}
.section.timeline .timeline-content p sup {
  font-size: 0.6em;
  vertical-align: middle;
  line-height: 0;
}
.section.timeline .timeline-content img {
  border-radius: 30px;
  max-width: 100%;
  max-height: 80vh;
}
@media (max-width: 480px) {
  .section.timeline .timeline-content {
    flex-direction: column;
    gap: 30px;
  }
  .section.timeline .timeline-content > * {
    width: 90%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .timeline-content {
    flex-direction: column;
    gap: 30px;
  }
  .section.timeline .timeline-content > * {
    width: 90%;
  }
}
.section.timeline .timeline-section {
  position: relative;
  min-height: 100vh;
}
.section.timeline .timeline-section .section-description {
  font-size: 24px;
  margin: 20px 0 50px;
  width: calc(56vw);
  line-height: 30px;
  font-weight: 100;
}
@media (max-width: 480px) {
  .section.timeline .timeline-section .section-description {
    font-size: 18px;
    margin: 20px 0 40px;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .timeline-section .section-description {
    font-size: 20px;
    margin: 20px 0 40px;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1536px) {
  .section.timeline .timeline-section .section-description {
    font-size: 22px;
    margin: 20px 0 40px;
  }
}
.section.timeline .year-wrapper {
  position: sticky;
  top: 0;
  height: 550px;
  /* reserved vertical space */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .section.timeline .year-wrapper {
    height: 330px;
    align-items: baseline;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .year-wrapper {
    height: 330px;
    align-items: baseline;
  }
}
@media (min-width: 769px) and (max-width: 1536px) {
  .section.timeline .year-wrapper {
    height: 450px;
    align-items: baseline;
  }
}
.section.timeline .then-vs-now {
  padding: 30px 105.3px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now {
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .then-vs-now {
    padding: 20px 30px;
  }
}
.section.timeline .then-vs-now .title {
  font-family: Museo Slab;
  font-size: 60px;
  margin-bottom: 10px;
  width: calc(56vw);
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now .title {
    font-size: 40px;
    margin: 20px 0 10px;
    width: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .then-vs-now .title {
    font-size: 50px;
    margin: 10px 0;
    width: auto;
  }
}
@media (min-width: 769px) and (max-width: 1536px) {
  .section.timeline .then-vs-now .title {
    font-size: 50px;
    margin: 10px 0;
  }
}
.section.timeline .then-vs-now .then-vs-now-content {
  margin-bottom: 60px;
  width: calc(56vw);
}
.section.timeline .then-vs-now .then-vs-now-content .img-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-family: Museo Slab;
}
.section.timeline .then-vs-now .then-vs-now-content .img-description {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 100;
}
.section.timeline .then-vs-now .then-vs-now-content .Then-now-text {
  font-size: 18px;
  line-height: 20px;
  margin-top: 20px;
  font-weight: 100;
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now .then-vs-now-content {
    width: 100%;
  }
  .section.timeline .then-vs-now .then-vs-now-content .img-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .img-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 14px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .Then-now-text {
    font-size: 12px;
    line-height: 14px;
    margin-top: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .then-vs-now .then-vs-now-content {
    width: 100%;
  }
  .section.timeline .then-vs-now .then-vs-now-content .img-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .img-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .Then-now-text {
    font-size: 14px;
    line-height: 16px;
    margin-top: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1536px) {
  .section.timeline .then-vs-now .then-vs-now-content .img-description {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .Then-now-text {
    font-size: 18px;
    line-height: 20px;
    margin-top: 16px;
  }
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare {
  position: relative;
  width: 82%;
  aspect-ratio: 1.619;
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare {
    width: 98%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare {
    width: 98%;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare {
    width: 98%;
  }
}
@media (min-width: 1281px) and (max-width: 1536px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare {
    width: 80%;
  }
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container,
.section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container {
  position: absolute;
  height: 100%;
  overflow: hidden;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container img,
.section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container img {
  height: 100%;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container.border,
.section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container.border {
  border: 2px solid white;
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container .then-container.border,
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container .then-container.border,
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container .now-container.border,
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container .now-container.border {
    border: 1px solid white;
  }
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container {
  width: 50%;
  z-index: 1;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container.border-left-radius {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .then-container.border-right-radius {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container {
  width: 100%;
  border-radius: 20px;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .now-container img {
  width: 100%;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider-container {
  position: absolute;
  width: 110%;
  top: 50%;
  left: -5%;
  z-index: 2;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 0px;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  touch-action: pan-x;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider:hover {
  opacity: 1;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  background: white;
  cursor: pointer;
  background-image: url('../../_images/Anniversary/50/then-vs-now/image-slider.png');
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: center;
}
.section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-moz-range-thumb {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  background-image: url('../../_images/Anniversary/50/then-vs-now/image-slider.png');
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    background-size: 25px 25px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background-size: 25px 25px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-webkit-slider-thumb {
    width: 35px;
    height: 35px;
    background-size: 30px 30px;
  }
  .section.timeline .then-vs-now .then-vs-now-content .image-compare .image-slider::-moz-range-thumb {
    width: 35px;
    height: 35px;
    background-size: 30px 30px;
  }
}
.section.legacy {
  position: relative;
  background-color: white;
  z-index: 4;
  padding-left: 150px;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  .section.legacy {
    padding-left: 75px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy {
    padding-left: 90px;
  }
}
.section.legacy #now {
  position: relative;
  background-color: white;
  min-height: 100vh;
}
.section.legacy #now .now-title {
  text-align: center;
  font-size: 30px;
  color: #212C65;
  z-index: 1;
  position: relative;
  padding: 15px;
}
@media (max-width: 480px) {
  .section.legacy #now .now-title {
    font-size: 20px;
    padding: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy #now .now-title {
    font-size: 25px;
  }
}
.section.legacy #now .now-content {
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  color: #212C65;
  min-height: 80vh;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .section.legacy #now .now-content {
    gap: 20px;
    flex-direction: column;
    padding: 30px 0;
  }
}
.section.legacy #now .now-content .now-text {
  width: 40%;
}
.section.legacy #now .now-content .now-text .now-heading {
  font-family: 'Museo Slab';
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.01em;
  color: #212C65;
}
.section.legacy #now .now-content .now-text p {
  color: #212C65;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin: 10px 0;
}
@media (max-width: 480px) {
  .section.legacy #now .now-content .now-text {
    width: 90%;
  }
  .section.legacy #now .now-content .now-text .now-heading {
    line-height: 40px;
    font-size: 30px;
  }
  .section.legacy #now .now-content .now-text p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy #now .now-content .now-text {
    width: 90%;
  }
  .section.legacy #now .now-content .now-text .now-heading {
    line-height: 44px;
    font-size: 35px;
  }
  .section.legacy #now .now-content .now-text p {
    line-height: 25px;
  }
}
.section.legacy #now .now-content .now-image-wrapper {
  width: 40%;
}
@media (max-width: 480px) {
  .section.legacy #now .now-content .now-image-wrapper {
    width: 90%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy #now .now-content .now-image-wrapper {
    width: 90%;
  }
}
.section.legacy #now .now-content .now-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.section.legacy #stats {
  padding: 50px 0 50px 100px;
}
.section.legacy #stats .title {
  font-family: Museo Slab;
  font-size: 60px;
  margin: 40px 0 70px;
}
@media (max-width: 480px) {
  .section.legacy #stats {
    padding: 30px 15px;
  }
  .section.legacy #stats .title {
    font-size: 40px;
    margin: 30px 0 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy #stats {
    padding: 30px 20px;
  }
  .section.legacy #stats .title {
    font-size: 45px;
    margin: 30px 0 50px;
  }
}
.section.legacy .map-image {
  position: relative;
  width: 90%;
}
.section.legacy .map-image img {
  width: 100%;
}
@media (max-width: 768px) {
  .section.legacy .map-image {
    width: 100%;
  }
}
.section.legacy .home-count {
  position: absolute;
  font-size: 53px;
  font-weight: 900;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -70%);
}
.section.legacy .home-count #home-counter {
  font-size: 190px;
}
@media (max-width: 480px) {
  .section.legacy .home-count {
    font-size: 10px;
  }
  .section.legacy .home-count #home-counter {
    font-size: 35px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy .home-count {
    font-size: 3vw;
  }
  .section.legacy .home-count #home-counter {
    font-size: 10.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .section.legacy .home-count {
    font-size: 3vw;
  }
  .section.legacy .home-count #home-counter {
    font-size: 10.5vw;
  }
}
@media (min-width: 1281px) and (max-width: 1536px) {
  .section.legacy .home-count {
    font-size: 3vw;
    width: 55%;
  }
  .section.legacy .home-count #home-counter {
    font-size: 10.5vw;
  }
}
.section.legacy .counts {
  display: flex;
  font-weight: 900;
  padding: 80px 0;
  text-align: center;
  width: 90%;
  justify-content: space-between;
}
.section.legacy .counts .separator {
  border-right: 2px solid rgba(0, 0, 0, 0.1);
}
.section.legacy .counts > div {
  padding: 20px 0;
}
.section.legacy .counts > div:not(.separator) {
  flex-basis: 30%;
}
.section.legacy .counts > div .number {
  font-size: 110px;
  line-height: 1;
}
.section.legacy .counts > div span:last-child {
  font-size: 30px;
}
.section.legacy .counts > div sub {
  font-size: 40px;
  vertical-align: -0.1em;
  position: relative;
  bottom: 4px;
}
.section.legacy .counts > div sup {
  font-size: 40px;
  top: -50px;
}
@media (max-width: 480px) {
  .section.legacy .counts {
    padding: 45px 0;
    width: 100%;
  }
  .section.legacy .counts .separator {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .section.legacy .counts > div {
    padding: 10px 0;
  }
  .section.legacy .counts > div:not(.separator) {
    flex-basis: 30%;
  }
  .section.legacy .counts > div .number {
    font-size: 20px;
    line-height: 1;
  }
  .section.legacy .counts > div span:last-child {
    font-size: 10px;
  }
  .section.legacy .counts > div sub {
    font-size: 14px;
    vertical-align: -0.1em;
    position: relative;
    bottom: 1px;
  }
  .section.legacy .counts > div sup {
    font-size: 14px;
    top: -8px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy .counts {
    padding: 45px 0;
    width: 100%;
  }
  .section.legacy .counts .separator {
    border-right: 1.5px solid rgba(0, 0, 0, 0.1);
  }
  .section.legacy .counts > div {
    padding: 15px 0;
  }
  .section.legacy .counts > div:not(.separator) {
    flex-basis: 30%;
  }
  .section.legacy .counts > div .number {
    font-size: 30px;
  }
  .section.legacy .counts > div span:last-child {
    font-size: 14px;
  }
  .section.legacy .counts > div sub {
    font-size: 20px;
  }
  .section.legacy .counts > div sup {
    font-size: 20px;
    top: -10px;
  }
}
.section.legacy .legacy-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
}
.section.legacy .legacy-bottom-container .heading {
  font-size: 40px;
  font-family: 'Museo Slab';
  padding: 30px 0;
}
.section.legacy .legacy-bottom-container .text-above-image {
  width: 50%;
  font-size: 18px;
  line-height: 30px;
}
.section.legacy .legacy-bottom-container .image-container {
  position: relative;
  width: 100%;
  margin: 60px 0 120px;
}
.section.legacy .legacy-bottom-container .image-container .big-img-top {
  border-radius: 30px;
  width: 85%;
}
.section.legacy .legacy-bottom-container .image-container .small-img-bottom {
  border-radius: 10px;
  position: absolute;
  width: 22%;
  aspect-ratio: 0.83;
  bottom: -8%;
  right: 2%;
}
.section.legacy .legacy-bottom-container .text-below-image {
  width: 50%;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 480px) {
  .section.legacy .legacy-bottom-container {
    width: 95%;
  }
  .section.legacy .legacy-bottom-container .heading {
    font-size: 30px;
    padding: 20px 0;
  }
  .section.legacy .legacy-bottom-container .text-above-image {
    width: auto;
    font-size: 14px;
    line-height: 20px;
  }
  .section.legacy .legacy-bottom-container .image-container {
    margin: 40px 0 60px;
  }
  .section.legacy .legacy-bottom-container .text-below-image {
    width: auto;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.legacy .legacy-bottom-container {
    width: 100%;
  }
  .section.legacy .legacy-bottom-container .heading {
    font-size: 35px;
    padding: 25px 0;
  }
  .section.legacy .legacy-bottom-container .text-above-image {
    width: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .section.legacy .legacy-bottom-container .image-container {
    margin: 50px 0 70px;
  }
  .section.legacy .legacy-bottom-container .text-below-image {
    width: auto;
    font-size: 16px;
    line-height: 24px;
  }
}
.section.customer-reviews {
  padding: 60px 30px;
  z-index: 5;
  padding-left: 250px;
  box-sizing: border-box;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  .section.customer-reviews {
    padding: 30px 15px;
    padding-left: 105px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.customer-reviews {
    padding: 30px 15px;
    padding-left: 115px;
  }
}
.section.customer-reviews .review-title {
  font-size: 90px;
  font-family: sans-serif;
  font-family: Museo Slab;
  font-weight: 900;
}
@media (max-width: 480px) {
  .section.customer-reviews .review-title {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.customer-reviews .review-title {
    font-size: 60px;
    margin-bottom: 60px;
  }
}
.section.customer-reviews .swiper-button-prev,
.section.customer-reviews .swiper-button-next {
  position: relative;
  float: right;
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  width: 56px;
  height: 56px;
  margin-bottom: 50px;
}
.section.customer-reviews .swiper-button-prev::after,
.section.customer-reviews .swiper-button-next::after {
  font-size: 20px;
  color: white;
}
.section.customer-reviews .swiper-button-prev {
  left: -150px;
}
@media (max-width: 480px) {
  .section.customer-reviews .swiper-button-prev,
  .section.customer-reviews .swiper-button-next {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
  }
  .section.customer-reviews .swiper-button-prev::after,
  .section.customer-reviews .swiper-button-next::after {
    font-size: 12px;
  }
  .section.customer-reviews .swiper-button-prev {
    left: -90px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.customer-reviews .swiper-button-prev,
  .section.customer-reviews .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-bottom: 25px;
  }
  .section.customer-reviews .swiper-button-prev::after,
  .section.customer-reviews .swiper-button-next::after {
    font-size: 14px;
  }
  .section.customer-reviews .swiper-button-prev {
    left: -110px;
  }
}
.section.customer-reviews .swiper-wrapper {
  touch-action: pan-x pan-y;
}
.section.customer-reviews .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .section.customer-reviews .swiper-slide {
    font-size: 13px;
    width: 240px;
    border-radius: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.customer-reviews .swiper-slide {
    font-size: 16px;
    width: 280px;
    border-radius: 18px;
  }
}
.section.customer-reviews .swiper-slide:nth-child(odd) {
  background: #E58E5B;
}
.section.customer-reviews .swiper-slide:nth-child(odd) .card-text,
.section.customer-reviews .swiper-slide:nth-child(odd) .card-bottom {
  color: white;
}
.section.customer-reviews .swiper-slide:nth-child(odd) i {
  color: #212C65;
}
.section.customer-reviews .swiper-slide:nth-child(even) {
  background: white;
}
.section.customer-reviews .swiper-slide:nth-child(even) .card-text,
.section.customer-reviews .swiper-slide:nth-child(even) .card-title,
.section.customer-reviews .swiper-slide:nth-child(even) .card-bottom {
  color: #212C65;
}
.section.customer-reviews .swiper-slide .card {
  height: 100%;
  height: 480px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: default;
}
.section.customer-reviews .swiper-slide .card img {
  height: 200px;
  border-radius: 50%;
  width: 200px;
  align-self: center;
  object-fit: cover;
  object-position: bottom;
  margin-bottom: 30px;
}
.section.customer-reviews .swiper-slide .card .img-pos-center {
  object-position: center;
}
.section.customer-reviews .swiper-slide .card .card-title {
  font-weight: bold;
  margin: 10px;
  font-size: 95%;
}
.section.customer-reviews .swiper-slide .card .white-title {
  color: white;
}
.section.customer-reviews .swiper-slide .card .card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 30px;
  font-family: Museo Slab;
  font-weight: 500;
  text-align: left;
  flex: 1;
  overflow: hidden;
}
.section.customer-reviews .swiper-slide .card .card-bottom {
  width: 80%;
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .section.customer-reviews .swiper-slide .card {
    height: 380px;
    padding: 20px;
  }
  .section.customer-reviews .swiper-slide .card img {
    height: 120px;
    width: 120px;
    margin-bottom: 15px;
  }
  .section.customer-reviews .swiper-slide .card .card-title {
    font-size: 85%;
    margin: 8px;
  }
  .section.customer-reviews .swiper-slide .card .card-text {
    font-size: 14px;
    line-height: 20px;
  }
  .section.customer-reviews .swiper-slide .card .card-bottom {
    width: 90%;
    bottom: 15px;
  }
  .section.customer-reviews .swiper-slide .card .card-bottom .rating i {
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.customer-reviews .swiper-slide .card {
    height: 420px;
    padding: 25px;
  }
  .section.customer-reviews .swiper-slide .card img {
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
  }
  .section.customer-reviews .swiper-slide .card .card-title {
    font-size: 90%;
  }
  .section.customer-reviews .swiper-slide .card .card-text {
    font-size: 15px;
    line-height: 22px;
  }
  .section.customer-reviews .swiper-slide .card .card-bottom {
    width: 85%;
    bottom: 20px;
  }
  .section.customer-reviews .swiper-slide .card .card-bottom .rating i {
    font-size: 16px;
  }
}
.section.future {
  z-index: 6;
  box-sizing: border-box;
  background-color: white;
  padding-left: 150px;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
@media (max-width: 480px) {
  .section.future {
    padding-left: 75px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future {
    padding-left: 90px;
  }
}
.section.future .future-bg-image {
  width: calc(250%);
  height: 100vh;
  position: absolute;
  top: 0;
  left: -150px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .section.future .future-bg-image {
    width: calc(175%);
    object-position: 77%;
    left: -75px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future .future-bg-image {
    width: calc(190%);
    object-position: 75%;
    left: -90px;
  }
}
.section.future .future-overlay {
  position: absolute;
  width: calc(250%);
  height: 100vh;
  background-color: black;
  opacity: 0.7;
  top: 0;
  left: -150px;
}
@media (max-width: 480px) {
  .section.future .future-overlay {
    width: calc(175%);
    left: -75px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future .future-overlay {
    width: calc(190%);
    left: -90px;
  }
}
.section.future .section-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("banner-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section.future .section-banner {
    width: auto;
    padding: 30px 15px;
  }
}
.section.future .banner-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.section.future .banner-title {
  font-family: 'Museo Slab';
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .section.future .banner-title {
    font-size: 25px;
    line-height: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future .banner-title {
    font-size: 40px;
    line-height: 40px;
  }
}
.section.future .search-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 8px solid #E58E5B;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 10px auto;
}
@media (max-width: 480px) {
  .section.future .search-box {
    padding: 10px;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future .search-box {
    padding: 20px;
    width: 100%;
  }
}
.section.future .search-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .section.future .search-grid {
    flex-wrap: wrap;
  }
}
.section.future .search-title {
  font-family: 'Museo Slab';
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 36px;
  color: #000;
  flex-shrink: 0;
}
.section.future .search-title span {
  color: #E58E5B;
}
@media (max-width: 480px) {
  .section.future .search-title {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section.future .search-title {
    font-size: 4vw;
  }
}
.section.future .select-wrapper {
  flex: 0 1 320px;
  min-width: 220px;
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0;
  gap: 10px;
  cursor: pointer;
}
.section.future .select-wrapper .fa-location-dot {
  color: #E58E5B;
  font-size: 1.2rem;
  margin-left: 15px;
}
.section.future .select-wrapper .fa-chevron-down {
  color: #000;
  font-size: 0.875rem;
  pointer-events: none;
  margin-left: auto;
  margin-right: 15px;
}
.section.future .select-wrapper .market-label {
  flex: 1;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  text-align: left;
  padding-right: 10px;
}
.section.future .select-wrapper:hover {
  border-color: #999;
}
.section.future .select-wrapper:focus-visible {
  outline: 2px solid #212C65;
  outline-offset: 2px;
}
.section.future .market-dropdown-wrapper {
  position: relative;
  flex: 0 1 320px;
  min-width: 220px;
}
.section.future .dropdown-options {
  display: none;
  position: absolute;
  top: calc(110%);
  left: 0;
  right: 0;
  max-height: 300px;
  background-color: white;
  border: 1px solid #000;
  overflow-y: auto;
  z-index: 1000;
  cursor: pointer;
  width: 391px;
  max-width: 100%;
  text-align: left;
}
.section.future .dropdown-options.open {
  display: block;
}
.section.future .dropdown-options .dropdown-option {
  font-size: 15px;
  line-height: 1.3;
  padding: 8px 40px 8px 10px;
  margin: 1px;
  position: relative;
  color: #000;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.section.future .dropdown-options .dropdown-option:hover,
.section.future .dropdown-options .dropdown-option:focus-visible {
  font-weight: bold;
  background-color: #f5f5f5;
}
.section.future .dropdown-options .dropdown-option:focus-visible {
  outline: 2px solid #212C65;
  outline-offset: -2px;
}
.section.future .dropdown-options .dropdown-option:first-of-type {
  margin-top: 2px;
}
.section.future .dropdown-options .dropdown-option .selected-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}
@media (max-width: 768px) {
  .section.future .dropdown-options {
    width: auto;
  }
}
@media (max-width: 768px) {
  .section.future .dropdown-options .dropdown-option .selected-icon {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.section.future .search-select {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.section.future .search-btn {
  height: 56px;
  width: 150px;
  flex-shrink: 0;
  background-color: #E58E5B;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.section.future .search-btn:hover {
  background-color: #df7638;
}
@media (max-width: 768px) {
  .section.future .search-btn {
    flex-basis: 25%;
    min-width: 130px;
  }
}
.timestamps-container {
  position: relative;
}
.timestamps-container .timestamps {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 100vh;
  font-family: Museo Sans;
  border-right: 1.5px solid rgba(255, 255, 255, 0.2);
}
.timestamps-container .timestamps .mains {
  font-size: 14px;
}
.timestamps-container .timestamps a {
  color: white;
  font-weight: 300;
  font-size: 21px;
  width: 100%;
  text-align: center;
  padding: 13px 0;
}
.timestamps-container .timestamps a.active {
  font-weight: 500;
  border-right: 2px solid #E58E5B;
}
.timestamps-container .timestamps.black {
  border-right: 1.5px solid rgba(0, 0, 0, 0.2);
}
.timestamps-container .timestamps.black a {
  color: black;
}
.timestamps-container .timestamps.fixed {
  position: fixed;
}
.timestamps-container .timestamps.scrolled-past {
  position: absolute;
  top: auto;
  bottom: 0;
}
@media (max-width: 480px) {
  .timestamps-container .timestamps {
    width: 75px;
  }
  .timestamps-container .timestamps .mains {
    font-size: 12px;
  }
  .timestamps-container .timestamps a {
    font-size: 18px;
    padding: 10px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .timestamps-container .timestamps {
    width: 90px;
  }
  .timestamps-container .timestamps .mains {
    font-size: 13px;
  }
  .timestamps-container .timestamps a {
    font-size: 20px;
    padding: 12px 0;
  }
}
.blue {
  color: #212C65 !important;
}
.bg-blue {
  background-color: #212C65 !important;
}
.orange {
  color: #E58E5B !important;
}
.bg-orange {
  background-color: #E58E5B !important;
}
.white {
  color: white !important;
}
.bg-white {
  background-color: white !important;
}
.bold-700 {
  font-weight: 700 !important;
}
.bold-900 {
  font-weight: 900 !important;
}
.square {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.5rem;
}
.square-text {
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
  font-family: Museo Sans;
}
@font-face {
  font-family: Museo Slab;
  src: local("MuseoSlab-900"), url(/_content/fonts/Museo/museoslab_900_macroman/Museo_Slab_900-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museoslab_900_macroman/Museo_Slab_900-webfont.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Museo Sans;
  /*src: local("MuseoSansCyrl-900"),url(../fonts/MuseoSansCyrl-900.woff2) format("woff2"),url(../fonts/MuseoSansCyrl-900.woff) format("woff");*/
  src: local("MuseoSansCyrl-900"), url(/_content/fonts/Museo/museosans_900_macroman/MuseoSans_900-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museosans_900_macroman/MuseoSans_900-webfont.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Museo Sans;
  src: local("MuseoSansCyrl-700"), url(/_content/fonts/Museo/museosans_700_macroman/MuseoSans_700-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museosans_700_macroman/MuseoSans_700-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Museo Slab;
  src: local("MuseoSlab-700"), url(/_content/fonts/Museo/museoslab_700_macroman/Museo_Slab_700-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museoslab_700_macroman/Museo_Slab_700-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Museo Slab;
  src: local("MuseoSlab-300"), url(/_content/fonts/Museo/museoslab_300_macroman/Museo_Slab_300-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museoslab_300_macroman/Museo_Slab_300-webfont.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Museo Sans;
  src: local("MuseoSansCyrl-300"), url(/_content/fonts/Museo/museosans_300_macroman/MuseoSans_300-webfont.woff2) format("woff2"), url(/_content/fonts/Museo/museosans_300_macroman/MuseoSans_300-webfont.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Styles for screens wider not more than 1200px (tablets, laptop, etc.) */

@media (max-width: 799px) {
  #content-wrap {
    overflow: visible;
  }
}
.kk-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}
.kk-modal.visible {
  display: flex;
}
.kk-modal .kk-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 1.777777778;
}
.kk-modal .kk-modal__content iframe {
  width: 100%;
  height: 100%;
  display: none;
}
