
    .animate .address-item .subtitle {
        transform: translatex(-200px);
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .address-item .subtitle {
        transform: translatex(0px);
        opacity: 1;
        transition: all 1000ms ease;
    }

    .animate .address-item p:nth-child(2), .animate .address-item .footer-block-socials {
        transform: translatex(-200px);
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .address-item p:nth-child(2), .animate.animate-complete .address-item .footer-block-socials {
        transform: translatex(0px);
        opacity: 1;
        transition: all 1000ms ease 500ms;
    }

    .animate .address-item p:nth-child(3) {
        transform: translatex(-200px);
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .address-item p:nth-child(3) {
        transform: translatex(0px);
        opacity: 1;
        transition: all 1000ms ease 1000ms;
    }

    .animate .contact-card {
        transform: translatex(200px);
        opacity: 0;
        transition: all 750ms ease;
    }

    .animate-complete .contact-card {
        transform: translatex(0px);
        opacity: 1;
        transition: all 750ms ease 1000ms;
    }