.parallax1 > use {
  animation: move-forever1 30s linear infinite;
  &:nth-child(1) {
    animation-delay: -6s;
  }
}
.parallax2 > use {
  animation: move-forever2 24s linear infinite;
  &:nth-child(1) {
    animation-delay: -6s;
  }
}
.parallax3 > use {
  animation: move-forever3 18s linear infinite;
  &:nth-child(1) {
    animation-delay: -6s;
  }
}
.parallax4 > use {
  animation: move-forever4 12s linear infinite;
  &:nth-child(1) {
    animation-delay: -6s;
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.wave {
  position: relative;
  z-index: 1;
}

.footer-wave {
  padding-top: 0;
}

.wave-left {
  max-width: 4em;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.wave svg {
  display: flex;
  height: 2em;
  width: 100%;
}

.top-shadow {
  filter: drop-shadow(-5px -10px 5px #00000033);
}

.wave-top svg {
  margin-top: -2em;
}

.rotate-wave {
  transform: rotate(180deg);
}

.wave-over-image {
  margin-top: -1.95em !important;
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  position: relative;
}

.wave-white path {
  fill: white;
}
