@media (min-width: 1024px) {
        .animate .home-fold2-img {
        opacity: 0;
        transition: all 0s ease;
        transform: scale(1.5);
    }

    .animate-complete .home-fold2-img {
        opacity: 1;
        transition: all 300ms ease;
        transform: scale(1);
    }

    .animate .home-fold2-title {
        opacity: 0;
        transition: all 0s ease;
        transform: scale(1.5);
    }

    .animate-complete .home-fold2-title {
        opacity: 1;
        transition: all 300ms ease;
        transform: scale(1);
    }

    .animate .home-fold2-content>p:not([class]) {
        opacity: 0;
        transition: all 0s ease;
        transform: scale(1.5);
    }

    .animate-complete .home-fold2-content>p:not([class]) {
        opacity: 1;
        transition: all 300ms ease 300ms;
        transform: scale(1);
    }

    .animate .home-fold2-buttons {
        opacity: 0;
        transition: all 0s ease;
        transform: scale(1.5);
    }

    .animate-complete .home-fold2-buttons {
        opacity: 1;
        transition: all 300ms ease 600ms;
        transform: scale(1);
    }

    .animate .home-fold2-email-signup {
        opacity: 0;
        transition: all 0s ease;
        transform: scale(1.5);
    }

    .animate-complete .home-fold2-email-signup {
        opacity: 1;
        transition: all 300ms ease 900ms;
        transform: scale(1);
    }
	
.animate .banner-folda-header {
    transform: scale(1.5);
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .banner-folda-header {
    transform: scale(1);
    opacity: 1;
    transition: all 500ms ease;
}

.animate .banner-folda-content-inner {
    transform: scale(1.5);
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .banner-folda-content-inner {
    transform: scale(1);
    opacity: 1;
    transition: all 500ms ease 500ms;
}

.animate .banner-folda-content-readmore,
    .animate .banner-folda-content-form{
    transform: scale(1.5);
    opacity: 0;
    transition: all 500ms ease;
}

.animate.animate-complete .banner-folda-content-readmore,
    .animate.animate-complete .banner-folda-content-form{
    transform: scale(1);
    opacity: 1;
    transition: all 500ms ease 1000ms;
}
	
}