* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wave-divider-animate {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wave-divider-animate .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url(../images/wave.png);
  background-size: 1000px 50px;
}

.wave-divider-animate .wave.wave1 {
  animation: animate 30s linear infinite;
  z-index: 999;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}

.wave-divider-animate .wave.wave2 {
  animation: animate2 15s linear infinite;
  z-index: 998;
  opacity: 0.4;
  animation-delay: -5s;
  bottom: 5px;
}

.wave-divider-animate .wave.wave3 {
  animation: animate 30s linear infinite;
  z-index: 997;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}

.wave-divider-animate .wave.wave4 {
  animation: animate2 5s linear infinite;
  z-index: 995;
  opacity: 0.6;
  animation-delay: -5s;
  bottom: 12px;
}

.wave-divider-animate .wave.wave5 {
  background: url(../images/capy-puddle-1.png);
  background-repeat: no-repeat;
  height: 200px;
  animation: marquee 10s linear infinite;
  z-index: 996;
  animation-delay: -5s;
  bottom: 10px;
}

@keyframes animate {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }

}

@keyframes animate2 {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -1000px;
  }

}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}