@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.shape-divider--height-small, .shape-divider--height-small svg {
  --wave-divider-height: 50px;
  height: 50px;
}
.shape-divider--height-medium, .shape-divider--height-medium svg {
  --wave-divider-height: 100px;
}
.shape-divider-height--large, .shape-divider--height-large svg {
  --wave-height: min(10rem, 10vw);
  --wave-divider-height: var(--wave-height);
  --wave-divider-max-height: var(--wave-height);
}
.shape-divider__waves {
  --wave-divider-height: 15vh;
  --wave-divider-width: 100%;
  --wave-divider-min-height: 100px;
  --wave-divider-max-height: 150px;
  position: relative;
  width: var(--wave-divider-width);
  height: var(--wave-divider-height);
  margin-bottom: -7px;
  max-height: var(--wave-divider-max-height);
}
.shape-divider svg {
  width: 100%;
  fill: var(--website-bg-color);
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.shape-divider-waves-parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
shape-divider-waves-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.shape-divider-waves-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.shape-divider-waves-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.shape-divider-waves-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
