* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased; }
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
body, html { line-height: 1; -webkit-text-size-adjust: none; height: 100%; }
body {
    background: #231F20;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: left;
    flex-direction: column;
    flex-wrap: nowrap;
}

h1, h2, h3, h4 {
    float: left;
    clear: both;
}

h1 {
    font-size: 60px;
    font-weight: 200;
    max-width: 820px;
    width: 100%;
}

h2 {
    font-size: 25px;
    margin-bottom: 50px;
    color: rgba(8,154,189,1.0);
}

h2 span {
    color: rgba(8,154,189,1.0);
}

h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 50px;
    line-height: 1.3;
    text-align:left;
}

h4 {
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.4;
    text-align:left;
}

h3 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1.5px solid #089ABD;
    -webkit-transition: all 700ms cubic-bezier(0.1,0.7,0.4,1);
       -moz-transition: all 700ms cubic-bezier(0.1,0.7,0.4,1);
        -ms-transition: all 700ms cubic-bezier(0.1,0.7,0.4,1);
         -o-transition: all 700ms cubic-bezier(0.1,0.7,0.4,1);
            transition: all 700ms cubic-bezier(0.1,0.7,0.4,1);
}

h3 a:hover {
    border-color: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #089ABD;
}

h4 a:hover {
    border-color: transparent;
}

.typed-cursor {
    color: #089ABD;
    font-size: 1.0em;
}

@media only screen and (max-width: 1024px) {
    body {
        padding: 100px;
    }
}

@media only screen and (max-width: 860px) {
    body {
        padding: 50px;
        background: #000;
    }

    h2 {
        margin-bottom: 30px;
    }

    h3 {
        margin-top: 30px;
    }

    h4 {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 640px) {
    body {
        background: #000;
        max-width: 600px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 20px;
    }
}