html,
body {
    background-color: black;
    height: 100%;
    margin: 0;
}

.full-height {
    height: 100%;
}

.full-height.white {
    background-color: white;
}

.logo {
    margin-top: 50px;
    text-align: center;
    height: 100%;
}

.brand-description {
    /* margin-top: 20px; */
    text-align: center;
}

.our-services {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 60px;
    text-align: center;
}


.good-at {
    color: black;
    font-family: 'Arial';
    font-size: 20px;
    text-align: center;
}

h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15vw;
    font-weight: 900;
    font-style: normal;
    color: white;
    margin: 0px;
}


h2 {
    font-family: 'Arial';
    font-size: 10vw;
    color: #2897ff;
    margin-top: 0px;
    margin-bottom: 0px;
}

h3 {
    font-family: 'Arial';
    font-size: 5vw;

    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 0px;
}

h4 {
    font-family: 'Arial';
    font-size: 50px;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
}

.outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 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;
    }
}

.brand-builder-section {
    margin: 0;
    height: 500px;
    background-color: white;
}

/*Gradient text*/

section.light {
    background: #eee;
}

@supports (mix-blend-mode: lighten) {
    section.light .gradient1 {
        display: inline-block;
        position: relative;
        color: #000;
        background: #fff;
        mix-blend-mode: multiply;
    }

    section.light .gradient1::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, #23966c, #faaa54, #e23b4a, #db0768, #360670);
        pointer-events: none;
    }

    section.light .gradient1::before {
        mix-blend-mode: screen;
    }
}

@supports (mix-blend-mode: lighten) {
    section.light .gradient2 {
        display: inline-block;
        position: relative;
        color: #000;
        background: #fff;
        mix-blend-mode: multiply;
    }

    section.light .gradient2::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: radial-gradient(circle, #23966c, #faaa54, #e23b4a, #db0768, #360670);
        pointer-events: none;
    }

    section.light .gradient2::before {
        mix-blend-mode: screen;
    }
}

section.dark {
    background: black;
}

section.dark .gradient1 {
    color: #fff;
}

@supports (mix-blend-mode: lighten) {
    section.dark .gradient1 {
        display: inline-block;
        position: relative;
        color: #fff;
        background: #000;
        mix-blend-mode: lighten;
    }

    section.dark .gradient1::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, #23966c, #faaa54, #e23b4a, #db0768, #360670);
        pointer-events: none;
    }

    section.dark .gradient1::before {
        mix-blend-mode: multiply;
    }
}

section.dark .gradient2 {
    color: #fff;
}

@supports (mix-blend-mode: lighten) {
    section.dark .gradient2 {
        display: inline-block;
        position: relative;
        color: #fff;
        background: #000;
        mix-blend-mode: lighten;
    }

    section.dark .gradient2::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: radial-gradient(circle, #23966c, #faaa54, #e23b4a, #db0768, #360670);
        pointer-events: none;
    }

    section.dark .gradient2::before {
        mix-blend-mode: multiply;
    }
}


/* section {
    min-height: 50vh;
    padding: 2em;
} */

.left-text {
    text-align: left;
    margin-right: 10px;
}

.right-text {
    text-align: right;
    margin-left: 10px;
}

.center-text {
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
}

.gradient1 {
    font-size: 96px;
    margin: 0.5em;
    opacity: 0.9;
}

/*END Gradient text*/


.box {
    height: auto;
    padding: 50px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.cell {
    flex: 1 1 200px;
}

img {
    width: 30%;
}

.img-logo {
    padding-bottom: 30px;
}