.air-block{
    position: absolute;
    width: 100%;
    /*height: 20vh;*/
    /*background: #3586ff;*/
    background:  var(--orange-color);
    /*overflow: hidden;*/
    /*z-index: 1;*/
}
.zind{
    position: relative;
    /*z-index: 1;*/
}
.air-block .air{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(/wp-content/themes/papashon/assets/images/wave.svg);
    /*background-size: 1280px 100px*/
}
.orange .air-block .air{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(/wp-content/themes/papashon/assets/images/wave_orange.svg);
    /*background-size: 1000px 100px*/
}
.orange.zind .air-block .air,.reverse-air .air-block .air{

    background: url(/wp-content/themes/papashon/assets/images/wave_orange_1.svg);
    /*background-size: 1000px 100px*/
}
.air-block .air.air1{
    animation: wave 30s linear infinite;
    /*z-index: 1000;*/
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}
.air-block .air.air2{
    animation: wave2 15s linear infinite;
    /*z-index: 999;*/
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}
.air-block .air.air3{
    animation: wave 30s linear infinite;
    /*z-index: 998;*/
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}
.air-block .air.air4{
    animation: wave2 5s linear infinite;
    /*z-index: 997;*/
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
}
@keyframes wave{
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes wave2{
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: -1000px;
    }
}

.air {display: none;}