@media (min-width:1024px) {
	
.animate .content-fold-b-img {
    transform: translatex(-200px);
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .content-fold-b-img {
    transform: translatex(0px);
    opacity: 1;
}

.animate.content-fold-b:nth-of-type(2n) .content-fold-b-img {
    transform: translatex(200px);
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete.content-fold-b:nth-of-type(2n) .content-fold-b-img {
    transform: translatex(0px);
    opacity: 1;
    transition: all 750ms ease;
}

.animate .content-fold-b-img-number::before {
    transform:scale(1.5);
    opacity:0;
    transition:all 700ms ease;
}

.animate.animate-complete .content-fold-b-img-number::before {
    transform:scale(1);
    opacity:1;
    transition:all 700ms ease 500ms;
}

.animate .content-fold-b-img-number .title{
    opacity:0;
    transition:all 500ms ease;
}

.animate.animate-complete .content-fold-b-img-number .title{
    transform:scale(1);
    opacity:1;
    transition:all 500ms ease 900ms;
}
	
}