section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #3586ff;
    overflow: hidden;

}

section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/wave.png);
    background-size: 1000px 100px;
}

section .wave.wave1 {
    animation: animate 30s linear infinite;
    opacity: 1;
    z-index: 1000;
    animation-delay: 0s;
    bottom: 0;
}
@keyframes animate {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}
section .wave.wave2 {
    animation: animate2 15s linear infinite;
    opacity: 0.5;
    z-index: 999;
    animation-delay: -5s;
    bottom: 10px;
}
@keyframes animate2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
}
section .wave.wave3 {
    animation: animate2 30s linear infinite;
    opacity: 0.2;
    z-index: 998;
    animation-delay: -2s;
    bottom: 15px;
}
section .wave.wave4 {
    animation: animate 5s linear infinite;
    opacity: 0.7;
    z-index: 997;
    animation-delay: -5s;
    bottom: 20px;
}