    .animate .service-fold1-img {
        opacity: 0;
        transition: all 1000ms ease;
    }

    .animate-complete .service-fold1-img {
        opacity: 1;
        transition: all 1000ms ease;
    }

    .animate .service-fold1-content .title {
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .service-fold1-content .title {
        opacity: 1;
        transition: all 1000ms ease;
    }

    .animate .service-fold1-content p:not([class]) {
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .service-fold1-content p:not([class]) {
        opacity: 1;
        transition: all 1000ms ease 750ms;
    }

	.animate .simple-fold-d-header :is(.title, img) {
    transition: all 750ms ease;
    opacity:0;
}

.animate.animate-complete .simple-fold-d-header :is(.title, img) {
    transition: all 750ms ease;
    opacity:1;
}

.animate .simple-fold-d-content-inner {
    transition: all 750ms ease;
    opacity:0;
}

.animate.animate-complete .simple-fold-d-content-inner {
    transition: all 750ms ease 750ms;
    opacity:1;
}

.animate .simple-fold-d-content-readmore {
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .simple-fold-d-content-readmore {
    opacity: 1;
    transition: all 500ms ease 1250ms; 
}
    
.animate .simple-fold-d-img img:first-child {
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .simple-fold-d-img img:first-child {
    opacity: 1;
    transition: all 750ms ease;
}
	
.animate .simple-fold-d-img img:last-child {
    opacity: 0;
    transition: all 750ms ease;
}

.animate.animate-complete .simple-fold-d-img img:last-child {
    opacity: 1;
    transition: all 750ms ease 750ms;
}