@media (min-width: 1024px){

/* Fold 1 - Animation */
.animate.fold-1 .subtitle {
  transform:
    translateY(-200%);
  transition:
    all 0.5s ease;
  opacity: 0;
}

.animate.animate-complete.fold-1 .subtitle {
  transform:
    translateY(0);
  transition:
    all 500ms ease 250ms;
  opacity: 1;
}

.animate .fold-1-content-readmore {
    transform:
      translatey(200%);
    opacity: 0;
    transition:
      all 500ms ease;
}

.animate.animate-complete .fold-1-content-readmore {
    transform:
      translatey(0%);
    opacity: 1;
    transition:
      all 500ms ease 500ms;
}

.animate .fold-1-clock {
    transform:
        scale(0.9)
        rotate(5deg);
    transition:
      all 500ms ease;
    opacity: 0;
}

.animate.animate-complete .fold-1-clock {
    transform:
        scale(1)
        rotate(0deg);
    transition:
      all 500ms ease;
    opacity: 1;
}

/* Fold 2 - Animation */
.animate.fold-2 .products {
  transform: translateX(-1000px);
  transition: all 0.5s ease;
}

.animate.fold-2 .systems {
  transform: translateX(1000px);
  transition: all 0.5s ease;
}

.animate.animate-complete.fold-2 .products {
  transform: translateX(0);
}

.animate.animate-complete.fold-2 .systems {
  transform: translateX(0);
}

/* Fold 3 - Animation */
.animate.fold-3 .f3-left-item-01 {
  transform: translateX(-1000px);
  transition: all 0.3s ease;
}
.animate.fold-3 .f3-left-item-02 {
  transform: translateX(-1000px);
  transition: all 0.4s ease;
}
.animate.fold-3 .f3-left-item-03 {
  transform: translateX(-1000px);
  transition: all 0.5s ease;
}
.animate.fold-3 .f3-left-item-04 {
  transform: translateX(-1000px);
  transition: all 0.6s ease;
}

.animate.animate-complete.fold-3 .f3-left-item-01 {
  transform: translateX(0);
}
.animate.animate-complete.fold-3 .f3-left-item-02 {
  transform: translateX(0);
}
.animate.animate-complete.fold-3 .f3-left-item-03 {
  transform: translateX(0);
}
.animate.animate-complete.fold-3 .f3-left-item-04 {
  transform: translateX(0);
}

.animate.fold-3 .f3-right-inner {
  transform: translateX(2000px);
  transition: all 0.7s ease;
}

.animate.animate-complete.fold-3 .f3-right-inner {
  transform: translateX(0);
}

/* Fold 4 - Animation */
.animate.fold-4 {
  transform: translateX(2500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.fold-4 {
  transform: translateX(0);
}

/* Fold 5 - Animation */
.animate.fold-5 .f5-content-top {
  transform: translateX(-1500px);
  transition: all 0.5s ease;
  opacity: 0;
}

.animate.animate-complete.fold-5 .f5-content-top {
  transform: translateX(0);
  opacity: 1;
}

.animate.sector-slider {
  transform: translateX(2500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.sector-slider {
  transform: translateX(0);
}

/* E-Book Animation */
.animate.ebook-fold-inner .ebook-form {
  transform: translateX(1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.ebook-fold-inner .ebook-form {
  transform: translateX(0);
}

.animate.ebook-fold-inner .ebook-image {
  transform: translateX(-1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.ebook-fold-inner .ebook-image {
  transform: translateX(0);
}

}