.hero-bg {
  height: 100vh;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}

