@media (min-width: 1024px) {

/*== == FOLD1 == ==*/

.animate-on-load .fold1-background {
	transition: all .3s ease;
	filter: grayscale(1);
}
.animate-on-load.active .fold1-background {
	transition: all .3s ease;
	filter: grayscale(0);
}

.fold1.animate-on-load h1, .fold1.animate-on-load p {
	transition: all .3s ease;
	opacity: 0;
}
.fold1.animate-on-load.active h1, .fold1.animate-on-load.active p {
	transition: all .3s ease .3s;
	opacity: 1;
}

	/*== == FOLD1 END == ==*/

	/*== == CONTENT FOLDJ == ==*/
	
	.animate-on-load .content-fold-j-img {
		transform: translatex(200%);
		-webkit-transform: translatex(200%);
		opacity: 0;
		transition: all .3s ease;
	}
	
	.animate-on-load.active .content-fold-j-img {
		transform: translatex(0%);
		-webkit-transform: translatex(0%);
		opacity: 1;
		transition: all .3s ease .6s;
	}
	
	.animate-on-load .content-fold-j-content {
		transform: translatex(-200%);
		-webkit-transform: translatex(-200%);
		opacity: 0;
		transition: all .3s ease;
	}
	.animate-on-load.active .content-fold-j-content {
		transform: translatex(0%);
		-webkit-transform: translatex(0%);
		opacity: 1;
		transition: all .3s ease .9s;
	}
	
	
		/*== == CONTENT FOLDJ END === ==*/
	
	/*== == CONTENT FOLDC == ==*/
	
	.animate .content-fold-c-img {
		transform: translatex(-200%);
		-webkit-transform: translatex(-200%);
		opacity: 0;
		transition: all .3s ease;
	}
	
	.animate.animate-complete .content-fold-c-img {
		transform: translatex(0%);
		-webkit-transform: translatex(0%);
		opacity: 1;
		transition: all .3s ease;
	}
	
	.animate .content-fold-c-content {
		transform: translatex(200%);
		-webkit-transform: translatex(200%);
		opacity: 0;
		transition: all .3s ease;
	}
	
	.animate.animate-complete .content-fold-c-content {
		transform: translatex(0%);
		-webkit-transform: translatex(0%);
		opacity: 1;
		transition: all .3s ease .5s;
	}
	
		/*=== == CONTENT FOLDC END == ==*/
	
}