

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(.8);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(.5)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(.8)
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.revers{
    transform: rotate( 180deg ) ;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background: transparent;
}
.bgTop {
    z-index: -1;
    opacity: 0.33;
}
.bgMiddle {
    z-index: -1;
    opacity: 0.66;
}
.bgBottom {
    z-index: -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:100% 100%;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
    animation: move_wave 3.3s linear infinite;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 7s linear infinite;
}
.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 11.1s linear infinite;
}



