/**
 * Swiper 14.0.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.page--lN1ZIjLO {
  width: 100%;
  overflow-x: hidden;
}
.heroSection--bletnqeP {
  min-height: 606px;
  padding: 125px 0 0;
  background-color: #fde134;
  background-image: url(/assets/d1e731dca4a3214c93ff.jpg);
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  border-style: solid;
  border-color: transparent;
  border-radius: 0 0 50px 50px;
  box-sizing: border-box;
}
.heroInner--bJnbeuZJ {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.heroTitle--nCIsUTmb {
  margin: 0;
  font-family: 'enbold', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  color: #000000;
}
.heroSubtitle--PF3vEbJj {
  margin: 18px 0 0;
  font-family: 'enlight', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #000000;
}
.videoSection--yNZxwV4t {
  background: transparent;
}
.videoInner--n5RIiuL4 {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
}
.video--Fmgv6r7o {
  display: block;
  width: 100%;
  max-width: 1260px;
  height: auto;
  margin: -300px auto 0;
  background: transparent;
}
.sectionInner--Vyh3YqUy {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 22px;
}
.sectionTitle--cNQumqfH {
  margin: 0 0 40px;
  font-family: 'en', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1px;
  color: #000000;
  text-align: center;
}
.timelineBanner--OBl0BNxo {
  background: #fde134;
  padding: 80px 0 80px;
  margin: 40px 0;
}
.timelinePc--P2AAMyr9 {
  display: block;
}
.timelinePcTop--vLPnN3g7 {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  padding: 10px 0 22px;
  animation: timelinePcEnter--v9bUpbB3 0.65s ease;
}
@keyframes timelinePcEnter--v9bUpbB3 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.timelinePcText--eiTtZxQY {
  padding-left: 120px;
}
.timelinePcDate--it4o9ZhO {
  font-family: 'en', sans-serif;
  color: #000000;
}
.timelinePcYear--ZmOtatOL {
  font-family: 'enbold', sans-serif;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 1px;
}
.timelinePcMonth--wLJSFHWl {
  font-family: 'enlight', sans-serif;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 1px;
}
.timelinePcDash--_uzwAczL {
  width: 16px;
  height: 2px;
  background: #000000;
  margin-top: 10px;
}
.timelinePcDesc--JIrLjk1R {
  margin-top: 18px;
  font-family: 'enlight', sans-serif;
  font-size: 11px;
  line-height: 16px;
  color: #000000;
  max-width: 220px;
}
.timelinePcImage--FxXjEdah {
  display: flex;
  justify-content: flex-start;
}
.timelinePcImage--FxXjEdah img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 2px;
}
.timelinePcAxis--BMyBwOLo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  margin-top: 8px;
}
.timelinePcPoint--SkPxNQuR {
  position: relative;
  font-family: 'en', sans-serif;
  font-size: 11px;
  line-height: 14px;
  color: #000000;
  text-align: center;
  padding: 0;
  cursor: pointer;
}
.timelinePcPoint--SkPxNQuR::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: rgba(0, 0, 0, 0.6);
}
.timelinePcPoint--SkPxNQuR[data-active='true'] {
  font-family: 'enbold', sans-serif;
}
.timelineMobile--HbH2_SMG {
  display: none;
}
.timelineBody--bQT3ajVW {
  position: relative;
  padding: 20px 0;
}
.timelineBody--bQT3ajVW::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 4px;
  background: #000000;
}
.timelinePost--X0qbYUsj {
  position: relative;
  padding: 0 0 25px 51px;
}
.timelinePost--X0qbYUsj:last-child {
  padding-bottom: 0;
}
.timelineIcon--Y06RVPNw {
  position: absolute;
  top: 39.5px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  box-shadow: 0 0 0 4px #ffffff, inset 0 0 0 2px rgba(0, 0, 0, 0.05), 0 0 0 8px #eaeaea;
  overflow: visible;
  z-index: 1;
}
.timelineIcon--Y06RVPNw img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.timelineContent--CjfmSRm_ {
  width: 100%;
}
.timelineMeta--jsErt61e {
  margin: 0 40px 0 0;
  font-family: 'cn', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  color: #000000;
}
.timelineTitle--jxDHUHnL {
  margin: 0;
  padding: 20px;
  font-family: 'en', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  color: #000000;
  text-transform: capitalize;
}
.timelineImage--ZWJX6u6u {
  width: 100%;
  padding: 0 15px 15px;
  background: transparent;
  border: none;
}
.timelineImage--ZWJX6u6u img {
  display: block;
  width: calc(100% - 12px);
  margin: 6px;
  padding: 3px;
  background: #ffffff;
  box-sizing: border-box;
  height: auto;
}
.bannerSection--GHSqX5fO {
  background: #ffffff;
  padding: 0 0 80px;
  margin: 100px 0;
}
.bannerSection--GHSqX5fO .sectionTitle--cNQumqfH {
  margin-bottom: 24px;
}
.goldenDesc--SzSqxhpZ {
  max-width: none;
  margin: 0 0 60px;
  font-family: 'enlight', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #656b6f;
  text-align: center;
}
.bannerWrap--l6KuTjUU {
  width: 100%;
  margin: 0 auto;
}
.banner--sU2RitUT {
  position: relative;
  width: 100%;
  height: 766px;
  overflow: hidden;
  background: #000000;
}
.banner--sU2RitUT:hover .bannerImg--mq4zAE9S,
.banner--sU2RitUT:focus-within .bannerImg--mq4zAE9S {
  transform: scale(1.1);
}
.bannerSwiper--q6092AOG {
  width: 100%;
  height: 100%;
}
.bannerSwiper--q6092AOG .swiper-wrapper {
  height: 100%;
}
.bannerSwiper--q6092AOG .swiper-slide {
  height: 100%;
}
.bannerControls--B04SzHLp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 24px 6px 0;
}
.bannerProgress--FdExdU49 {
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.bannerProgressActive--k2qMsBS4 {
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  transition: width 0.35s ease;
}
.bannerArrows--oGBr8sMR {
  display: flex;
  gap: 12px;
}
.bannerArrowBtn--VsYQkMfR {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.bannerArrowBtn--VsYQkMfR:hover .bannerArrowIcon--vcMDWnTg {
  border-color: #000000;
}
.bannerArrowIcon--vcMDWnTg {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.45);
  border-left: 1.5px solid rgba(0, 0, 0, 0.45);
  transform: rotate(-45deg);
}
.bannerArrowIconNext--gefKSqha {
  transform: rotate(135deg);
}
.bannerImg--mq4zAE9S {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .heroSection--bletnqeP {
    min-height: 0;
    padding: 175px 0 110px;
    border-radius: 0;
    box-sizing: border-box;
  }
  .heroTitle--nCIsUTmb {
    font-size: 34px;
    line-height: 38px;
  }
  .heroSubtitle--PF3vEbJj {
    margin-top: 15px;
    font-size: 15px;
    line-height: 22px;
  }
  .videoSection--yNZxwV4t {
    margin-top: 0;
    box-sizing: border-box;
  }
  .videoInner--n5RIiuL4 {
    padding: 0;
  }
  .video--Fmgv6r7o {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }
  .sectionTitle--cNQumqfH {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 26px;
  }
  .timelineBanner--OBl0BNxo,
  .bannerSection--GHSqX5fO {
    margin: 20px 0;
  }
  .bannerSection--GHSqX5fO .sectionTitle--cNQumqfH {
    margin-bottom: 18px;
  }
  .goldenDesc--SzSqxhpZ {
    margin-bottom: 36px;
    line-height: 26px;
  }
  .timelinePc--P2AAMyr9 {
    display: none;
  }
  .timelineMobile--HbH2_SMG {
    display: block;
  }
  .timelineTitle--jxDHUHnL {
    font-size: 20px;
    line-height: normal;
  }
  .banner--sU2RitUT {
    height: 360px;
  }
  .bannerControls--B04SzHLp {
    gap: 14px;
    padding-top: 18px;
  }
}
/*# sourceMappingURL=style.module.css.map */
