@media (min-width: 1024px) {
	
	/*== == FOLD1 == ==*/
	
	.animate-on-load .fold1b-img {
    transform:
        translatex(200%);
    opacity: 0;
    transition:
        all 300ms ease;
}

.animate-on-load.active .fold1b-img {
    transform:
        translatex(0px);
    opacity: 1;
    transition:
        opacity 500ms ease,
        transform 300ms ease;
}

.animate-on-load .fold1b-content {
    transform: 
        translatex(-200%);
    opacity: 0;
    transition:
        all 300ms ease;
}

.animate-on-load.active .fold1b-content {
    transform: translatex(0%);
    opacity: 1;
    transition: 
        opacity 500ms ease 300ms,
        transform 300ms ease 300ms;
}
	
		/*== == FOLD1 END == ==*/
	
	/*== == BANNER == ==*/
	
	.animate-on-load .banner-slider {
    transform:
        translatey(200%);
    opacity: 0;
    transition:
        all 300ms ease;
}

.animate-on-load.active .banner-slider {
    transform: 
        translatex(0%);
    opacity: 1;
    transition:
        opacity 500ms ease 600ms,
        translate 300ms ease 600ms;
}
	
		/*== == BANNER END === ==*/
	
	/*=== == FOLD1 == ==*/

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

.animate.animate-complete .fold1b-img {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        opacity 500ms ease,
        transform 300ms ease;
}

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

.animate.animate-complete .fold1b-content {
    transform:
        translatex(0%);
    opacity: 1;
    transition:
        opacity 500ms ease 500ms,
        transform 300ms ease 500ms;
}

		/*== == FOLD1 END == ==*/
	
	/*== = SERVICES MODULE === ==*/	
	
.animate .fold3-services {
    transform: translatey(200%)
        scale(0);
    opacity: 0;
    transition:
        all 300ms ease;
}

.animate.animate-complete .fold3-services {
    transform: translatey(0%)
        scale(1);
    opacity: 1;
    transition:
        opacity 700ms ease,
        transform 500ms ease;
    transform-origin: center bottom;
}
		/*== == SERVICES MODULE END == ==*/
	
	/*== == REVIEWS == ==*/

.animate .reviews-slider {
    transform: 
        scale(0);
    opacity: 0;
    transition:
        all 300ms ease;
}

.animate.animate-complete .reviews-slider {
    transform:
        scale(1);
    opacity: 1;
    transform-origin: center;
    transition: 
        opacity 700ms ease,
        transform 500ms ease;
}

		/*== == REVIEWS END == ==*/
	

	
}