@charset "UTF-8";

.contentwave {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../imagens/bgsite.jpg);
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 600px) {
    .contentwave {
        background-image: url(../imagens/bgsiteresponsivo.jpg);        
    }
    
}

.contentwave > .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../imagens/wave.png);
    background-size: 1000px 100px;
}

.contentwave > .wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.contentwave > .wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

.contentwave > .wave.wave3 {
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
}

.contentwave > .wave.wave4 {
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1000px;
    }
}

/*CONFIGURAÇÃO DA SEÇÃO SOLUÇÕES WAVE/ONDA 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~**/

.contentwavetwo {
    position: relative;
    width: 100%;
    height: 18vh;
    
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;

}

.contentwavetwo > .wavet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../imagens/wavetwo.png);
    background-size: 1000px 100px;
}

.contentwavetwo > .wavet.wavetwo {
    animation: animate 10s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.contentwavetwo > .wavet.wavethre {
    animation: animate2 10s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}