/* =================================
   ANIMATIONS
================================= */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.4;
    animation: waveMove 3s linear infinite;
}

@keyframes waveMove {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}