@media(min-width: 1024px){
    .animate .product-folda-item-img-container-outer{
        opacity: 0;
        transform: translateX(-50px);
    }

    .animate.animate-complete .product-folda-item-img-container-outer{
        opacity: 1;
        transform: translateX(0px);
        transition: all 0.75s ease;
    }

    .animate .product-folda-content{
        opacity: 0;
        transform: translateX(50px);
    }

    .animate.animate-complete .product-folda-content{
        opacity: 1;
        transform: translateX(0px);
        transition: all 0.75s ease .5s;
    }

    .animate .product-long-desc{
        opacity: 0;
        transform: translateY(50px);
    }

    .animate.animate-complete .product-long-desc{
        opacity: 1;
        transform: translateY(0px);
        transition: all 0.75s ease 0s;
    }

    .animate .home-fold2-slide
    {
        opacity: 0;
        transform: translateY(50px);
    }

      .animate.animate-complete .home-fold2-slide {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.75s ease;
  }

  .animate.animate-complete li:nth-child(4n + 1) .home-fold2-slide {
    transition-delay: 0s;
  }

  .animate.animate-complete li:nth-child(4n + 2) .home-fold2-slide {
    transition-delay: 0.25s;
  }

  .animate.animate-complete li:nth-child(4n + 3) .home-fold2-slide {
    transition-delay: 0.5s;
  }

  .animate.animate-complete li:nth-child(4n) .home-fold2-slide {
    transition-delay: 0.75s;
  }
}