.elementor-25729 .elementor-element.elementor-element-a9569e2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-25729:not(.elementor-motion-effects-element-type-background), body.elementor-page-25729 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS */.timeline-wrapper {
  position: relative;
}

/* FIXED BACKGROUND (IMPORTANT FIX) */
.timeline-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;

  z-index: 999999 !important;
  opacity: 1 !important;

  transition: opacity 0.5s ease;
  pointer-events: none;
}

.timeline-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* LINE */
.timeline-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.25);
  z-index: 2;
}

/* ITEMS */
.timeline-item {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 3;
}

.timeline-item.active {
  opacity: 1;
}

/* LAYOUT */
.timeline-inner {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  width: 100%;
  align-items: center;
}

/* YEAR */
.timeline-left {
  text-align: right;
  padding-right: 40px;
}

.year {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
}

/* DOT */
.timeline-middle {
  display: flex;
  justify-content: center;
}

.dot {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}

/* RIGHT */
.timeline-right {
  padding-left: 40px;
  color: #fff;
  max-width: 520px;
}

/* MOBILE */
@media (max-width: 768px) {

  .timeline-wrapper::before {
    left: 30px;
    transform: none;
  }

  .timeline-inner {
    grid-template-columns: 60px 1fr;
  }

  .timeline-left {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }

  .timeline-middle {
    grid-column: 1;
  }

  .timeline-right {
    grid-column: 2;
    padding-left: 0;
  }

  .year {
    font-size: 42px;
  }
}/* End custom CSS */