.contact-us-animation .n2-ss-slide-background-image picture img {
    animation: contact-banner 5s linear infinite ;
    height: 600px !important; 
}

@keyframes contact-banner {
    0%, 100% {
        transform: translateY(-100px);
    }
    50% {
        transform: translateY(0px);
    }
}