
/* ==== MAIN-FOLD-C ==== */


  @media (min-width: 1024px) {
    .animate .main-fold-c-background{
      transition: all 0s ease;
      opacity: 0;
    }
    
    .animate.animate-complete .main-fold-c-background{
      transition: all 0.5s ease;
      opacity: 1;
    }


    .animate .main-fold-c-content{
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
      }
      
      .animate.animate-complete .main-fold-c-content{
        transition: all 0.5s ease 0.5s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

    .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.5s ease;
      opacity: 1;
      transform: translateY(0px);
      -webkit-transform: translateY(0px);
    }
  .animate.animate-complete.module-fold-a li:nth-child(5n - 4) {
      transition: all 0.5s ease 0s;
    }

    .animate.animate-complete.module-fold-a li:nth-child(5n - 3) {
      transition: all 0.5s ease 0.25s;
    }
  
    .animate.animate-complete.module-fold-a li:nth-child(5n - 2) {
      transition: all 0.5s ease 0.5s;
    }
  
    .animate.animate-complete.module-fold-a li:nth-child(5n - 1) {
      transition: all 0.5s ease 0.75s;
    }
    .animate.animate-complete.module-fold-a li:nth-child(5n - 0) {
      transition: all 0.5s ease 1s;
    }
  }
  

  /* ==== CONTENT FOLD-B ==== */

@media(min-width: 1024px){
    .animate .content-fold-b-img {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
      }
      
      .animate.animate-complete .content-fold-b-img {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }
      
      .animate .content-fold-b-content {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(100px);
        -webkit-transform: translateX(100px);
      }
      
      .animate.animate-complete .content-fold-b-content {
        transition: all 0.5s ease 0.5s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }
      
      /* ==== CONTENT FOLD-B FLIPPED==== */
      
      .animate.flipped .content-fold-b-img {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(100px);
        -webkit-transform: translateX(100px);
      }
      
      .animate.animate-complete.flipped .content-fold-b-img {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }
      
      .animate.flipped .content-fold-b-content {
        transition: all 0s ease;
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
      }
      
      .animate.animate-complete.flipped .content-fold-b-content {
        transition: all 0.5s ease 0.5s;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }
      
}