@media (min-width: 1024px) {
	
	/*=== == CONTENT FOLD C == ==*/
	
	.animate-on-load .fold1c-content {
		transition: all 300ms ease;
		opacity: 0;
	}
	
	.animate-on-load.active .fold1c-content{
		transition: all 500ms ease 500ms;
		opacity: 1;		
	}
	
		/*== == CONTENT FOLD C END == ==*/
	
	/*== == CONTENT FOLD I == ==*/
	
	.animate .content-fold-i-img {
		transform: 
			translatex(-200%);
		-webkit-transform:
			translatex(-200%);
		opacity: 0;
		transition: all 300ms ease;
	}
	
	.animate.animate-complete .content-fold-i-img {
		transform: 
			translatex(0%);
		-webkit-transform:
			translatex(0%);
		opacity: 1;
		transition: all 300ms ease;
	}
	
	
	.animate .content-fold-i-content {
		transform: 
			translatex(200%);
		-webkit-transform:
			translatex(200%);
		opacity: 0;
		transition: all 300ms ease;
	}
	
	.animate.animate-complete .content-fold-i-content {
		transform: 
			translatex(0%);
		-webkit-transform:
			translatex(0%);
		opacity: 1;
		transition: all 300ms ease 500ms;
	}
	
		/*== == CONTENT FOLD I END == ==*/
	
	/*== == BREAK FOLD J == ==*/
	
	.animate .break-fold-j-wrapper {
		opacity: 0;
		transition: all 300ms ease;
	}
	
	.animate.animate-complete .break-fold-j-wrapper {
		opacity: 1;
		transition: all 300ms ease;
	}
	
		/*== ==  BREAK FOLD J END == ==*/
	
	/*== == MODULE FOLD H == ==*/
	
	.animate .module-fold-h-title {
		opacity: 0;
		transition: all 300ms ease;
	}
	
	.animate.animate-complete .module-fold-h-title {
		opacity: 1;
		transition: all 300ms ease;
	}
	
	.animate .module-fold-h-modules {
		opacity: 0;
		transition: all 300ms ease;
	}
	
	.animate.animate-complete .module-fold-h-modules {
		opacity: 1;
		transition: all 300ms ease 500ms;
	}
	
		/*=== ==  MODULE FOLD H END == ==*/
	
	.animate .content-fold-c-img {
    transform: 
        translatex(-200%);
    -webkit-transform: 
        translatex(-200%);
    opacity: 0;
    transition: all 300ms ease;
}

.animate.animate-complete .content-fold-c-img {
    transform: 
        translatex(0%);
    -webkit-transform: 
        translatex(0%);
    opacity: 1;
    transition: all 300ms ease;
}

.animate .content-fold-c-content {
    transform: 
        translatex(200%);
    -webkit-transform: 
        translatex(200%);
    opacity: 0;
    transition: all 300ms ease;
}

.animate.animate-complete .content-fold-c-content {
    transform: 
        translatex(0%);
    -webkit-transform: 
        translatex(0%);
    opacity: 1;
    transition: all 300ms ease 500ms;
}

.animate .content-fold-a-img {
    transform: 
        translatex(200%);
    -webkit-transform: 
        translatex(200%);
    opacity: 0;
    transition: all 300ms ease;
}

.animate.animate-complete .content-fold-a-img {
    transform: 
        translatex(0%);
    -webkit-transform: 
        translatex(0%);
    opacity: 1;
    transition: all 300ms ease;
}

.animate .content-fold-a-content {
    transform: 
        translatex(-200%);
    -webkit-transform: 
        translatex(-200%);
    opacity: 0;
    transition: all 300ms ease;
}

.animate.animate-complete .content-fold-a-content {
    transform: 
        translatex(0%);
    -webkit-transform: 
        translatex(0%);
    opacity: 1;
    transition: all 300ms ease 500ms;
}

	
}