@media(min-width: 1024px){
    /* ==== CONTENT FOLD-A ==== */
  
  .animate .product-image {
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
  }
  
  .animate.animate-complete .product-image  {
    transition: all 0.75s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  
  .animate .product-content {
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
  }
  
  .animate.animate-complete .product-content  {
    transition: all 0.75s ease 0.75s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  }