@media(min-width: 1024px){

  .animate.gallery-fold {
    opacity: 0;
    transition: all 0s ease;
  }
  .animate-complete.gallery-fold {
    opacity: 1;
    transition: all 0.5s ease;
  }
  .animate .gallery-title {
    opacity: 0;
    transition: all 0s ease;
  }
  .animate-complete .gallery-title {
    opacity: 1;
    transition: all 0.5s ease;
    transition-delay: 0.5s;
  }

	/* ==== CONTENT FOLD-B ==== */

  .animate .ebook-image {
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
  }

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

  .animate .ebook-form {
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
  }

  .animate.animate-complete .ebook-form {
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
	
	/**FOOTER**/
	.animate .footer-block-item{
    transition: all 0s ease;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
  }

  .animate.animate-complete .footer-block-item {
    transition: all 0.5s ease 0s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

	.animate.animate-complete .footer-block-item:nth-child(2){
		transition: all .5s ease .25s;
	}
	
	.animate.animate-complete .footer-block-item:nth-child(3){
		transition: all .5s ease .5s;
	}
}