﻿@media only screen and (min-width: 768px) {
    .waveSection {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .waveSection .wave {
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background: #4973ff;
        }

            .waveSection .wave span {
                position: absolute;
                top: 0;
                width: 325vh;
                height: 325vh;
                left: 50%;
                background: #000;
                transform: translate(-50%, -75%);
            }

                .waveSection .wave span:nth-child(1) {
                    animation: animate 5s linear infinite;
                    border-radius: 45%;
                    background: rgba(20,20,20,1);
                }

                .waveSection .wave span:nth-child(2) {
                    animation: animate 10s linear infinite;
                    border-radius: 40%;
                    background: rgba(20,20,20,0.5);
                }

                .waveSection .wave span:nth-child(3) {
                    animation: animate 15s linear infinite;
                    border-radius: 42.5%;
                    background: rgba(20,20,20,0.5);
                }

    @keyframes animate {
        0% {
            transform: translate(-50%, -75%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -75%) rotate(360deg);
        }
    }

    .waveSection .content {
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: 4em !important;
    }
}
