@media(min-width: 1024px){
    .animate .fold1-buttons-item{
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate.animate-complete .fold1-buttons-item{
        transform: translateY(0px);
        opacity: 1;
        transition: all .5s ease;
    }

    .animate .fold1-buttons-item.active{
      transform: translateY(100px) scale(1.1);
    }

    .animate.animate-complete .fold1-buttons-item.active{
      transform: translateY(0) scale(1.1);
    }

    .animate.animate-complete .fold1-buttons-item:nth-of-type(2){
        transition-delay: .25s;
    }

    .animate.animate-complete .fold1-buttons-item:nth-of-type(3){
        transition-delay: .5s;
    }

    /**CASE STUDIES**/
    .our-work-fold{
        overflow: hidden;
    }
    .animate .our-work-title {
        transition: all 0s ease;
        opacity: 0;
        transform: translateY(-1000px);
        -webkit-transform: translateY(-1000px);
      }
    
      .animate.animate-complete .our-work-title {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

    .animate .case-study-splide-item-child {
        transition: all 0s ease;
        opacity: 0;
        transform: translateY(1000px);
        -webkit-transform: translateY(1000px);
      }
    
      .animate.animate-complete .case-study-splide-item-child {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

      .case-study-splide-item-top .case-study-splide-item-child:nth-child(2){
        transition-delay: .25s;
      }

      .case-study-splide-item-bottom .case-study-splide-item-child:nth-child(1){
        transition-delay: .5s;
      }

      .case-study-splide-item-bottom .case-study-splide-item-child:nth-child(2){
        transition-delay: .75s;
      }

      /**NEWS**/
    .news-fold{
        overflow: hidden;
    }
    .animate .news-fold-title {
        transition: all 0s ease;
        opacity: 0;
        transform: translateY(-1000px);
        -webkit-transform: translateY(-1000px);
      }
    
      .animate.animate-complete .news-fold-title {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

    .animate .news-page-item {
        transition: all 0s ease;
        opacity: 0;
        transform: translateY(1000px);
        -webkit-transform: translateY(1000px);
      }
    
      .animate.animate-complete .news-page-item {
        transition: all 0.5s ease;
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
      }

      .news-page-right .news-page-item:nth-child(1){
        transition-delay: .25s;
      }

      .news-page-right .news-page-item:nth-child(4){
        transition-delay: 1s;
      }

      .news-page-right .news-page-item:nth-child(2){
        transition-delay: .5s;
      }

      .news-page-right .news-page-item:nth-child(3){
        transition-delay: .75s;
      }
}