.stm_waves_module_style_1 .waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.stm_waves_module_style_1 .waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: 0;
}

.stm_waves_module_style_1 .wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
    background-size: 50% 200px;
}

@media (min-width: 561px) {
  @    keyframes move_wave {
        0% {
      transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}
}

@media (max-width: 560px) {
    .stm_waves_module_style_1 .wave {
        width: 100%;
        background-size: cover !important;
    }
}