@media(min-width: 1024px){
  .animate .hero-banner {
        transition: all 0s ease;
        opacity: 0;
        transform: translatey(-100px);
        -webkit-transform: translateY(-100px);
      }
      
      .animate.animate-complete .hero-banner {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

    .animate .breadcrumbs-header {
        transition: all 0s ease;
        opacity: 0;
        transform: translatey(-100px);
        -webkit-transform: translateY(-100px);
      }
      
      .animate.animate-complete .breadcrumbs-header {
        transition: all 0.5s ease 0.5s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

    .animate .product-image {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
      }
      
      .animate.animate-complete .product-image {
        transition: all 0.5s ease 1s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }
      
      .animate .product-content {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(100px);
        -webkit-transform: translateX(100px);
      }
      
      .animate.animate-complete .product-content {
        transition: all 0.5s ease 1.5s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

      .animate .product-desc-column {
        transition: all 0s ease;
        opacity: 0;
        transform: translatey(100px);
        -webkit-transform: translateY(100px);
      }
      
      .animate.animate-complete .product-desc-column {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

      .animate.animate-complete .product-desc-column:nth-child(2){
        transition: all .5s ease .25s;
      }

      .animate.animate-complete .product-desc-column:nth-child(3){
        transition: all .5s ease .5s;
      }
}

@media (min-width: 1024px) {
  .animate.module-fold-a li {
    transition: all 0s ease;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
  }

  .animate.animate-complete.module-fold-a li {
    transition: all 0.75s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

  .animate.animate-complete.module-fold-a li:nth-child(3n - 2) {
    transition: all 0.75s ease 0.5s;
  }

  .animate.animate-complete.module-fold-a li:nth-child(3n - 1) {
    transition: all 0.75s ease 0.25s;
  }
  .animate.animate-complete.module-fold-a li:nth-child(3n - 0) {
    transition: all 0.75s ease 0s;
  }

  .animate .products-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.75s ease 0s;
  }

  .animate.animate.animate-complete .products-content {
    opacity: 1;
    transform: translateX(0px);
    transition: all 0.75s ease 1s;
  }

  .animate.flipped .products-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.75s ease 0s;
  }

  .animate.animate.animate-complete.flipped .products-content {
    opacity: 1;
    transform: translateX(0px);
    transition: all 0.75s ease 1s;
  }
}