/**
 * File structure for SASS partials
 */
/**
 * main.scss - Main file that imports all partials
 */
/**
 * abstracts/_variables.scss
 * Contains all variables for the theme
 */
/**
 * abstracts/_functions.scss
 * Contains all SASS functions
 */
/**
 * abstracts/_mixins.scss
 * Contains all mixins for the theme
 */
/**
 * abstracts/_placeholders.scss
 * Contains all placeholders for @extend
 */
@import url("https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One");
.timeline {
  display: flex;
  flex-wrap: wrap;
}

.demo-footer, .timeline-header {
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
}

.background-overlay, .fallback-background, .background-video-container, .background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.timeline__content-desc {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/**
 * base/_reset.scss
 * Contains reset/normalize styles
 */
body {
  background: #000;
  overflow-x: hidden;
  height: 100%;
}

html {
  height: 100%;
}

/**
 * base/_typography.scss
 * Typography rules
 */
.timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 10px 0;
  transition: 0.3s ease;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .timeline__content-title {
    font-size: 46px;
    margin: 0 0 10px 0;
  }
}

.timeline__content-desc {
  margin: 0;
  font-size: 16px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 5px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .timeline__content-desc {
    font-size: 14px;
    padding: 10px;
  }
}

.timeline-header__title {
  color: #fff;
  font-size: 46px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 5;
}

.timeline-header__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 5;
}

.demo-footer a {
  color: silver;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
}

/**
 * layout/_containers.scss
 * Layout containers styles
 */
.timeline-container {
  width: 100%;
  position: relative;
  padding: 0;
  transition: 0.3s ease;
  overflow: hidden;
  background-color: #000;
  min-height: 100vh;
}

.timeline__content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1024px) {
  .timeline__content {
    max-width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .timeline__content {
    max-width: 100%;
    padding: 10px;
  }
}

.timeline-header__content {
  padding: 70px 0 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .timeline-header__content {
    padding: 40px 0 0;
  }
}

/**
 * components/_timeline.scss
 * Timeline component styles
 */
.timeline {
  margin: 0 auto;
  flex-direction: column;
  max-width: 1000px;
  position: relative;
  padding-top: 200px;
  clip-path: inset(200px 0 0 0);
  z-index: 2;
}
.timeline:before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: transparent;
  z-index: 500;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .timeline {
    padding-top: 150px;
    clip-path: inset(150px 0 0 0);
  }
  .timeline:before {
    top: -150px;
    height: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  .timeline {
    max-width: 100%;
    padding: 200px 20px 0;
  }
}

.timeline-line {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  z-index: 10;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .timeline-line {
    left: 40px;
  }
}

/**
 * components/_timeline-item.scss
 * Timeline item styles
 */
.timeline-item {
  padding: 50px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}
.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-family: Arial, sans-serif;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
}
.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  padding-right: 15px;
}
.timeline-item:first-child {
  margin-top: 30px;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .timeline-item:first-child {
    margin-top: 20px;
    padding-top: 10px;
  }
}
.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .timeline-item {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}

.timeline-item--active .timeline__content-title {
  margin: -20px 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .timeline-item--active .timeline__content-title {
    margin: -10px 0 15px 0;
  }
}

.timeline__img {
  width: 100%;
  height: auto;
  max-width: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border-radius: 8px;
  margin-bottom: 15px;
}
.timeline__img:hover {
  transform: scale(1.03);
}
@media only screen and (max-width: 767px) {
  .timeline__img {
    width: 100%;
    margin-bottom: 10px;
  }
}

/**
 * components/_timeline-header.scss
 * Timeline header styles
 */
.timeline-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0) 100%);
  padding: 20px 0 30px;
  height: 200px;
  box-sizing: border-box;
  box-shadow: none;
  backdrop-filter: blur(3px);
}
.timeline-header:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .timeline-header {
    top: 0;
    padding: 15px 0 25px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  }
}

/**
 * components/_timeline-footer.scss
 * Timeline footer styles
 */
.demo-footer {
  padding: 60px 0;
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.9);
}

/**
 * media/_video-background.scss
 * Video background styles
 */
.background-video {
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
}
@media only screen and (max-width: 767px) {
  .background-video {
    height: 100vh;
  }
}

.background-video-container {
  z-index: 0;
}

.fallback-background {
  background: #1a1a2e;
  z-index: -1;
}

.background-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
