.hero-background-container {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

@keyframes blobFade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blobTranslate4 {
  0% {
    transform: scale(1.5) translate(-24%,-14%);
  }
  33% {
    transform: scale(1.5) translate(-24%,3%);
  }
  66% {
    transform: scale(1.5) translate(-6%,-9%);
  }
  100% {
    transform: scale(1.5) translate(-24%,-14%);
  }
}

@keyframes blobTranslate7 {
  0% {
    transform: scale(1.5) translate(27%,-6%);
  }
  33% {
    transform: scale(1.5) translate(1%,-33%);
  }
  66% {
    transform: scale(1.5) translate(-18%,-33%);
  }
  100% {
    transform: scale(1.5) translate(27%,-6%);
  }
}

#visual #blob-1 {
  transform: scale(1.5) translate(41%, 29%);
/*   animation: 3s blobFade infinite 1s; */
}
#visual #blob-2 {
  transform: scale(1.5) translate(34%,-10%);
/*   animation: 5s blobFade infinite 500ms; */
}
#visual #blob-3 {
  transform: scale(1.5) translate(-12%,37%);
/*   animation: 4s blobFade infinite; */
}
#visual #blob-4 {
  transform: scale(1.5) translate(-24%,-14%);
/*   animation: 8s blobFade infinite 2s, 12s blobTranslate4 infinite; */
}
#visual #blob-5 {
  transform: scale(1.5) translate(27%,25%);
/*   animation: 3s blobFade infinite 200ms; */
}
#visual #blob-6 {
  transform: scale(1.5) translate(14%,-6%);
/*   animation: 4s blobFade infinite 1s; */
}
#visual #blob-7 {
  transform: scale(1.5) translate(27%,-6%);
/*   animation: 7s blobFade infinite 5s, 10s blobTranslate7 infinite; */
}

#visual #straight-overlay-vertical {
  display: inline;
}

#visual #straight-overlay-horizontal {
  display: none;
}

#visual #rounded-overlay {
  display: none;
  transform: scale(1.2) translate(-5%, 16%);
}

#visual #wavy-overlay {
  display: none;
  transform: scaleY(1.4) translate(0%, 45%);
}

.paused {
  animation-play-state: paused !important;
}

.hero--bg-none .hero-background-container {
  display: none;
}

@media (min-width: 768px) {
  .hero-background-container #visual #straight-overlay-vertical {
    display: none;
  }

  .hero-section--vertical .hero--bg-straight #visual #straight-overlay-vertical {
    display: inline;
  }

  .hero-section--horizontal .hero--bg-straight #visual #straight-overlay-horizontal {
    display: inline;
  }

  .hero--bg-round .hero-background-container #visual #rounded-overlay {
    display: inline;
  }

  .hero--bg-wavy .hero-background-container #visual #wavy-overlay {
    display: inline;
  }
}