@media (min-width: 1024px){
	/* ==== FOLD 1-D ==== */

.animate .fold1d-img{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

.animate.animate-complete .fold1d-img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.animate .fold1d-content{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
}

.animate.animate-complete .fold1d-content{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

/* ==== CONTENT FOLD-C ==== */

.animate .content-fold-c-img{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
}

.animate.animate-complete .content-fold-c-img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.animate .content-fold-c-content{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

.animate.animate-complete .content-fold-c-content{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

/* ==== CONTENT FOLD-C FLIPPED ==== */

.flipped  .animate .content-fold-c-img{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

.flipped  .animate.animate-complete .content-fold-c-img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.flipped  .animate .content-fold-c-content{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px);
    -webkit-transform: translateX(-1000px);
}

.flipped  .animate.animate-complete .content-fold-c-content{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

/* ==== MODULE FOLD B ==== */

.animate .module-fold-b .module-fold-b-item{
    transition: all 0s ease;
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
}

.animate.animate-complete .module-fold-b .module-fold-b-item{
    transition: all .5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.animate .module-fold-b .row-container{
    transition: all 0s ease;
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
}

.animate.animate-complete .module-fold-b .row-container{
    transition: all .5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.animate.animate-complete .module-fold-b .module-fold-b-title{
    transition-delay: 0s;
}

.animate.animate-complete .module-fold-b .module-fold-b-item:nth-of-type(1){
    transition-delay: .4s;
}

.animate.animate-complete .module-fold-b .module-fold-b-item:nth-of-type(2){
    transition-delay: .5s;
}

.animate.animate-complete .module-fold-b .module-fold-b-item:nth-of-type(3){
    transition-delay: .6s;
}

.animate.animate-complete .module-fold-b .module-fold-b-item:nth-of-type(4){
    transition-delay: .7s;
}

.animate.animate-complete .module-fold-b .module-fold-b-item:nth-of-type(5){
    transition-delay: .8s;
}
}