@media(min-width: 1024px){
    /**EBOOK**/
  .animate .contact-fold-left{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
  }

  .animate.animate-complete .contact-fold-left{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

  .animate .contact-fold-right{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
  }

  .animate.animate-complete .contact-fold-right {
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}