@media (min-width: 1024px) {
    .animate .service-fold1-img {
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate-complete .service-fold1-img {
        transform: translateY(0px);
        opacity: 1;
        transition: all 500ms ease;
    }

    .animate .service-fold1-main {
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate-complete .service-fold1-main {
        transform: translateY(0px);
        opacity: 1;
        transition: all 500ms ease 300ms;
    }

    .animate .service-guarantee-main {
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate-complete .service-guarantee-main {
        transform: translateY(0px);
        opacity: 1;
        transition: all 500ms ease 300ms;
    }

    .animate .faq-fold-main {
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate-complete .faq-fold-main {
        transform: translateY(0px);
        opacity: 1;
        transition: all 500ms ease 300ms;
    }

    .animate .faq-fold-wrap {
        transform: translateY(100px);
        opacity: 0;
        transition: all 0s ease;
    }

    .animate-complete .faq-fold-wrap {
        transform: translateY(0px);
        opacity: 1;
        transition: all 500ms ease 600ms;
    }
}