@media (min-width:1024px) {
	
    .animate .newsletter-folda-header {
        transition: all 1000ms ease;
        clip-path: inset(0% 100% 0% 0%);
    }

    .animate.animate-complete .newsletter-folda-header{
        transition: all 1000ms ease 500ms;
        clip-path: inset(0% 0% 0% 0%);
    }

.animate .newsletter-folda-input-field-textbox {
    transition: all 1000ms ease;
    clip-path: inset(0% 0% 100% 0%);
    opacity:0;
}

.animate.animate-complete .newsletter-folda-input-field-textbox {
    transition: all 1000ms ease 500ms;
    clip-path: inset(0% 0% 0% 0%);
    opacity:1;
}

.animate .newsletter-folda-input-field-checkbox {
    transition: all 1000ms ease;
    clip-path: inset(100% 0% 0% 0%);
    opacity:0;
}

.animate.animate-complete .newsletter-folda-input-field-checkbox {
    transition: all 1000ms ease 750ms;
    clip-path: inset(0% 0% 0% 0%);
    opacity:1;
}

.animate .newsletter-folda-input-field-submit {
    transition: all 1000ms ease;
    clip-path: inset(0% 0% 0% 100%);
}

.animate.animate-complete .newsletter-folda-input-field-submit {
    transition: all 1000ms ease 1000ms;
    clip-path: inset(0% 0% 0% 0%);
}

.animate.footer-block .footer-block-item:nth-of-type(1) .footer-block-item-icon{
    clip-path: inset(0% 0% 100% 0%);    
    transition:all 1000ms ease;
}

.animate.animate-complete.footer-block .footer-block-item:nth-of-type(1) .footer-block-item-icon{
    clip-path: inset(0% 0% 0% 0%);    
    transition:all 1000ms ease;
}

.animate.footer-block .footer-block-item:nth-of-type(1) ul {
    clip-path: inset(100% 0% 0% 0%);    
    transition:all 1000ms ease;
}

.animate.animate-complete.footer-block .footer-block-item:nth-of-type(1) ul {
    clip-path: inset(0% 0% 0% 0%);    
    transition:all 1000ms ease 500ms;
}

.animate.footer-block .footer-block-item:nth-of-type(2) {
    clip-path: inset(100% 0% 0% 0%);
    transition: all 1000ms ease;
}

.animate.animate-complete.footer-block .footer-block-item:nth-of-type(2) {
    clip-path: inset(0% 0% 0% 0%);
    transition: all 1000ms ease 1000ms;
}

.animate.footer-block .footer-block-item:nth-of-type(3) {
    clip-path: inset(0% 0% 100% 0%);
    transition: all 1000ms ease;
}

.animate.animate-complete.footer-block .footer-block-item:nth-of-type(3) {
    clip-path: inset(0% 0% 0% 0%);
    transition: all 1000ms ease 1500ms;
}
	
}