@media (min-width: 980px){
/* ==== FOLD 1-A ==== */
.animate-on-load .fold1a-content{
    transition: all 0s ease;
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
}

.animate-on-load.active .fold1a-content{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

/*== FOLD1A BANNER ==*/

.fold1-banner.animate-on-load .owl-item:nth-of-type(1n) {
	opacity: 0;
	transition: all .3s ease;
}

.fold1-banner.animate-on-load.active .owl-item:nth-of-type(1n) {
	opacity: 1;
	transition: all .3s ease;
}

.fold1-banner.animate-on-load .owl-item:nth-of-type(2n) {
	opacity: 0;
	transition: all .3s ease;
}

.fold1-banner.animate-on-load.active .owl-item:nth-of-type(2n) {
	opacity: 1;
	transition: all .3s ease .25s;
}

.fold1-banner.animate-on-load .owl-item:nth-of-type(3n) {
	opacity: 0;
	transition: all .3s ease;
}

.fold1-banner.animate-on-load.active .owl-item:nth-of-type(3n) {
	opacity: 1;
	transition: all .3s ease .5s;
}

	/*== FOLD1A BANNER END ==*/

/* ==== CONTENT FOLD-C ==== */

.animate .content-fold-c-img{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
}

.animate.animate-complete .content-fold-c-img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.animate .content-fold-c-content{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

.animate.animate-complete .content-fold-c-content{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}
}