
/* ==== CONTENT FOLD-C FLIPPED ==== */

.animate .content-fold-c-img{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px) translateY(-50%);
    -webkit-transform: translateX(1000px) translateY(-50%);
}

.animate.animate-complete .content-fold-c-img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.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 ==== */

.animate.alt .module-fold-c-wrapper{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(-1000px) translateY(0%);
    -webkit-transform: translateX(-1000px) translateY(0%);
}

.animate.alt.animate-complete .module-fold-c-wrapper{
    transition: all 0.5s ease 0.5s;
    opacity: 1;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}

.animate.alt .module-fold-c-item-wrapper{
    transition: all 0s ease;
    opacity: 0;
    transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
}

.animate.alt.animate-complete .module-fold-c-item-wrapper{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}