@media (max-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);
}

/* EBOOK - Animation */
.animate#ebook-fold .ebook-image {
  transition: all 0.5s ease;
  transform: translateX(-2000px);
}

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

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

.animate#ebook-fold .ebook-form {
  transition: all 0.5s ease;
  transform: translateX(2000px);
}

.ebook-flip .animate#ebook-fold .ebook-form {
  transition: all 0.5s ease;
  transform: translateX(-2000px);
}

.animate.animate-complete#ebook-fold .ebook-form {
  transform: translateX(0);
	}
	
	/*TEAM FOLD*/
	
	.animate .team-fold-wrapper .team-fold-item:nth-of-type(0n+1) {
		transform: translatex(-200%);
		opacity: 0;
		transition: all 500ms ease;
	}

	.animate.animate-complete .team-fold-wrapper .team-fold-item:nth-of-type(0n+1) {
		transform: translatex(0%);
		opacity: 1;
		transition: all 500ms ease;
	}

	.animate .team-fold-wrapper .team-fold-item:nth-of-type(2n) {
		transform: translatex(200%);
		opacity: 0;
		transition: all 500ms ease;
	}

	.animate.animate-complete .team-fold-wrapper .team-fold-item:nth-of-type(2n) {
		transform: translatex(0%);
		opacity: 1;
		transition: all 500ms ease 500ms;
	}
	
}