@media (min-width:1024px) {
	
.animate .footer-block-wrapper .footer-block-item:nth-of-type(1) {
    transform: translatey(-50px);
    opacity:0;
    transition:all 500ms ease;
}

.animate.animate-complete .footer-block-wrapper .footer-block-item:nth-of-type(1) {
    transform: translatey(0px);
    opacity:1;
    transition:all 500ms ease;
}

.animate .footer-block-wrapper .footer-block-item:nth-of-type(2) {
    transform: translatey(50px);
    opacity:0;
    transition:all 500ms ease;    
}

.animate.animate-complete .footer-block-wrapper .footer-block-item:nth-of-type(2) {
    transform: translatey(0px);
    opacity:1;
    transition:all 500ms ease 500ms; 
}

.animate .fold1b-content-inner-wrapper-item.socials {
    gap: 0px;
    transition:all 500ms ease;
    opacity:0;
    transform:translatey(20px);
}

.animate.animate-complete .fold1b-content-inner-wrapper-item.socials {
    gap: 40px;
    transition:all 1000ms ease 1000ms;
    opacity:1;
    transform:translatey(0px);
}
	
}