@media (min-width: 1024px) {

/* Fold 1 - Animation */
.animate.fold-1 .fold-1-content-inner {
  transform: translateX(-1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.fold-1 .fold-1-content-inner {
  transform: translateX(0);
}

/* Fold 2 - Animations */
.animate.content-fold-c .cfc-img-left {
  transform: translateX(-1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.content-fold-c .cfc-img-left {
  transform: translateX(0);
}

.animate.content-fold-c .cfc-f2 {
  transform: translateX(1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.content-fold-c .cfc-f2 {
  transform: translateX(0);
}

/* Fold 3 - Animations */
.animate.content-fold-c .cfc-img-right {
  transform: translateX(1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.content-fold-c .cfc-img-right {
  transform: translateX(0);
}

.animate.content-fold-c .cfc-f3 {
  transform: translateX(-1500px);
  transition: all 0.5s ease;
}

.animate.animate-complete.content-fold-c .cfc-f3 {
  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);
}

}