#waves {
    @import url(//fonts.googleapis.com/css?family=Lato:300:400);

    body {
        margin: 0;
    }

    h1 {
        font-family: 'Lato', sans-serif;
        font-weight: 300;
        letter-spacing: 2px;
        font-size: 48px;
    }

    p {
        font-family: 'Lato', sans-serif;
        letter-spacing: 1px;
        font-size: 14px;
        color: #333333;
    }

    .header {
        position: relative;
        text-align: center;
        background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
        color: white;
    }

    .logo {
        width: 50px;
        fill: white;
        padding-right: 15px;
        display: inline-block;
        vertical-align: middle;
    }

    .inner-header {
        height: 65vh;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .flex {
        /*Flexbox for containers*/
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .waves {
        position: relative;
        width: 100%;
        height: 15vh;
        margin-bottom: -7px;
        /*Fix for safari gap*/
        min-height: 100px;
        max-height: 150px;
    }

    .content {
        position: relative;
        height: 20vh;
        text-align: center;
        background-color: white;
    }

    /* Animation */

    .parallax>use {
        animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    }

    .parallax>use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax>use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax>use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax>use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }
}@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}

#services {
    .card-serice .card {
        /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../public/images/fundo-servicos3.gif) !important; */
        background: #110829 !important;
        background-size: cover !important;
        /* background-position: center !important; */
        color: var(--text);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
        transition: transform 0.3s ease;

        &:hover {
            transform: translateY(-7px);
        }

        h5 {
            color: var(--text);
            margin-bottom: 10px;
            font-family: exo-2, sans-serif;
        }

        p {
            font-size: 14px;
            line-height: 1.6;
            font-family: "exo 2", sans-serif;
            padding: 5px;
            backdrop-filter: blur(5px);
        }
    }
}

#process {
    padding: 30px 0px;
    background: rgb(7, 7, 24);

    .num {
        background: blue;
        padding: 15px 25px;
        font-size: 1.2rem;
        color: var(--text);
    }

    .card {
        transition: transform 0.3s ease;
        background: #f7f7f7 !important;

        &:hover {
            transform: translateY(-7px);
        }

        h5 {
            font-family: orbitron;
        }

        p {
            font-family: exo-2;
        }
    }

    .card-body {
        display: flex;
        flex-flow: row !important;
        align-items: center;
        justify-content: space-around;
        gap: 5px;
    }

    .content {
        /* background: red; */
          display: flex;
        flex-flow: column !important;
        align-items: center;
        justify-content: center;
        width: 330px;
    }

    .last {
        justify-content: center;
        gap: 20px;
    }
}

#projects {
    background: rgb(7, 7, 24);
}

#contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    .box {
        width: 80%;
        height: 80%;
        background: rgb(7, 7, 24);
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        overflow: hidden;
    }

    .box .ball {
        width: 70%;
        height: 140%;
        position: absolute;
        background: linear-gradient(45deg, #00fff7, #ff00a0);
        border-radius: 50%;
        top: 50%;
        left: -50%;
        transform: translate(50%, -50%);
        z-index: 0;
        box-shadow: 10px 0px 20px #0005;

        animation: ball 8s linear infinite;
    }

    .icons {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;

        .content {
            display: grid;
            grid-template-columns: repeat(2, minmax(10px, 1fr));
            gap: 15px;
        }
    }

    .pub {
        display: flex;
        justify-content: center;
        align-items: center;

        p {
            color: #000000;
            font-size: 1.5rem;
            font-weight: 500;
            font-family: orbitron, sans-serif;
            text-align: center;
            padding: 10px 15px;
            border-radius: 30px;
            background: linear-gradient(45deg, #00fff7, #ff00a0);
            box-shadow: 0px 0px 20px #00fff793;
        }
    }

    a i {
        transition: transform 0.3s, color 0.3s;
        color: #1f0563;
    }

    a:hover i {
        transform: scale(1.2);
        color: #00fff7;
    }
}

@keyframes ball {
    0% {
        transform: translate(50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1100px) {
    #contacts .box .ball {
        display: none;
    }

    #contacts .icons {
        background: linear-gradient(45deg, #00fff7, #ff00a0);
        border-radius: 0px;
        box-shadow: 0px 0px 20px #0005;
        padding: 20px;
    }
}