@keyframes backgroundMove {
  0%, 100% {
    background-position: left top;
  }
  25% {
    background-position: right bottom;
  }
  50% {
    background-position: left top;
  }
  75% {
    background-position: right bottom;
  }
}

.slide.bg-overlay
{animation: backgroundMove 20s infinite linear;}