@media (min-width: 1024px){
    
/* EBOOK FOLD B*/
div#ebook-fold-b.animate .ebook-image{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
}

div#ebook-fold-b.animate.animate-complete  .ebook-image{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

div#ebook-fold-b.animate .ebook-form{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

div#ebook-fold-b.animate.animate-complete .ebook-form{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}
	
	/*== == CASE STUDIES == ==*/
	
	.animate .case-studies-wrapper-content {
		opacity: 0;
		transition: all .3s ease;
	}
	
	
	.animate.animate-complete .case-studies-wrapper-content {
		opacity: 1;
		transition: all .3s ease;
	}
		/*== == CASE STUDIES END == ==*/

}