.cover-bg {
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.cover-bg__outer-container {
  height: 100%;
  position: relative;
  top: -30px;
  width: 100%;
}
.cover-bg__shadow {
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0) 100%);
  bottom: 20px;
  height: 200px;
  position: absolute;
  width: 100%;
}
.cover-bg__noise {
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 90%, rgba(0,0,0,0.5) 95%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 90%, rgba(0,0,0,0.5) 95%, rgba(0,0,0,0) 100%);
}
.cover-bg__waves-container {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 768px;
}
.cover-bg__yellow-waves {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  transform: scaleX(1) skewX(0deg) skewY(0deg);
  transform-origin: center center;
}
.cover-bg__brown-waves {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;

  transform: scaleX(1) skewX(0deg) skewY(0deg);
  transform-origin: center center;
}
.cover-bg__color {
  /* background-color: #ff9814; */
  background-color: #ffa114;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scaleX(1) skewX(0deg) skewY(0deg);
  transform-origin: center center;
  width: 100%;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
}
.cover-bg__light {
  /* background: radial-gradient(circle, rgba(255,228,84,1) 0%, rgba(255,195,59,1) 25%, rgba(255,151,20,0.5) 50%, rgba(255,151,20,0) 70%);
   */
  background: radial-gradient(circle, rgb(255 233 66) 0%, rgb(255 204 59) 25%, rgba(255, 181, 0,0.5) 50%, rgba(255,151,20,0) 70%);
  height: 485vw;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: scaleY(0.8) translate(-50%, -50%);
  width: 150vw;
}

.cover-bg__animation-waves-trigger {
  bottom: 15px;
  height: 130px;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.animation-wave-yellow {
  animation: none;
}
.animation-wave-brown {
  animation: none
}
/* .animation-mask {
  animation: maskAnimation 16s linear infinite alternate;
} */

@media (min-width: 768px) {
  .cover-bg__outer-container {
    top: 0;
  }
  .cover-bg__waves-container {
    width: 1024px;
  }
  .cover-bg__light {
    height: 520vw;
    top: 40%;
    width: 180vw;
  }
  .cover-bg__animation-waves-trigger {
    bottom: -15px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .cover-bg__outer-container {
    top: -50px;
  }
  .cover-bg__shadow {
    height: 270px;
  }
  .cover-bg__waves-container {
    width: 1360px;
  }
  .cover-bg__light {
    height: 350vw;
    top: 32%;
    width: 150vw;
  }
  .cover-bg__animation-waves-trigger {
    height: 250px;
  }
  .animation-wave-yellow {
    animation: waveAnimationYellow 18s linear infinite alternate;
  }
  .animation-wave-brown {
    animation: waveAnimationBrown 20s linear infinite alternate;
  }
  .pause-animation {
    animation-play-state: paused;
  }
}

@media (min-width: 1360px) {
  .cover-bg__shadow {
    height: 16%;
  }
  .cover-bg__waves-container {
    width: 1920px;
  }
  .cover-bg__light {
    height: 280vw;
    max-height: 3600px;
    max-width: 2600px;
    top: 38%;
    transform: scaleY(0.9) translate(-50%, -50%);
    width: 180vw;
  }
  .cover-bg__animation-waves-trigger {
    bottom: 10px;
    height: 300px;
  }
}

@media (min-width: 1920px) {
  .cover-bg__shadow {
    height: 20vw;
  }
  .cover-bg__waves-container {
    width: 102%;
  }
  .cover-bg__light {
    height: 4500px;
    max-height: unset;
    max-width: unset;
    top: 50%;
    transform: scaleY(1) translate(-50%, -50%);
    width: 3100px;
  }
}

@keyframes waveAnimationYellow {
  0% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  25% {
    transform: scaleX(1.1) skewX(2deg) skewY(1deg);
  }
  50% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  75% {
    transform: scaleX(1.1) skewX(-2deg) skewY(-1deg);
  }
  100% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
}

@keyframes waveAnimationBrown {
  0% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  25% {
    transform: scaleX(1.2) skewX(2deg) skewY(1deg);
  }
  50% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  75% {
    transform: scaleX(1.2) skewX(-2deg) skewY(1deg);
  }
  100% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
}

@keyframes maskAnimation {
  0% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  25% {
    transform: scaleX(1.1) skewX(1deg) skewY(1deg);
  }
  50% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
  75% {
    transform: scaleX(1.1) skewX(1deg) skewY(1deg);
  }
  100% {
    transform: scaleX(1) skewX(0deg) skewY(0deg);
  }
}
