/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

html
{
    font-family: 'DM Sans', sans-serif;
    color: #120a8f;
}

h1
{
    font-size: 4vw;
    font-weight: 800;
    margin-bottom: 1vw;
    font-family: 'Gabarito', sans-serif;
    font-weight: 900;
}

h2
{
    font-size: 2vw;
    font-weight: 800;
    margin-bottom: 1vw;
    font-family: 'Gabarito', sans-serif;
    font-weight: 900;
}

p, a, li
{
    font-size: 1vw;
    line-height: 1.5vw;
}

sup
{
    font-size: 33%;
    vertical-align: super;
}

footer
{
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
    text-align: center;

}

header
{
    position: fixed;
    color: white;
    padding-top: 2vw;
    padding-left: 3vw;
    text-decoration: none;
    display: block;
}

header h1
{
    font-size: 2vw;
    color: white;
    width: auto;
}

.logo a
{
    text-decoration: none;
}

.hero
{
    background: #0000FF;
    background: radial-gradient(circle, #5959ff 0%, #0000ff 75%);
    color: white;
    padding-top: 25vh;
    padding-bottom: 10vh;
}

.hero-fullscreen
{
    padding-top: 0vh;
    padding-bottom: 0vh;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero p
{
    margin-bottom: 1.5vw;
}

.wrapper
{
    width: 80%;
    margin: auto;
}

.hero .wrapper
{
    width: 30%;
}

.button-cta, .button-ghost
{
    text-decoration: none;
    text-align: center;
    padding: 0.8vw 2vw 0.8vw 2vw;
    display: inline-block;
    border-radius: 0.5vw;
    margin-right: 0.66vw;
    margin-bottom: 0.66vw;
    font-weight: 600;
}

.button-cta
{
    background-color: white;
}

.button-ghost
{
    border: 0.1vw solid white;
    color: white;
}

footer span
{
    margin-top: 0.5vw;
    display: block;
}

footer span a
{
    text-decoration: none;
    margin-right: 2vw;
}

@media only screen and (max-width: 1000px) 
{
    header
    {
        padding-left: 8vw;
        padding-top: 8vw;
    }

    header h1
    {
        font-size: 8vw;
    }

    .button-cta, .button-ghost
    {
        padding: 4vw 8vw 4vw 8vw;
        border-radius: 3vw;
        margin-right: 0.66vw;
        margin-bottom: 4vw;
    }

    h1
    {
        font-size: 12vw;
        margin-bottom: 4vw;
    }

    h2
    {
        font-size: 8vw;
        margin-bottom: 4vw;
    }

    p, a
    {
        font-size: 4vw;
        line-height: 6vw;
    }

    .hero p
    {
        margin-bottom: 4vw;
    }

    footer span
    {
        margin-top: 2vw;
        text-align: center;
    }

    footer span a
    {
        margin-right: 4vw;
    }

    .hero .wrapper
    {
        width: 80%;
    }

    .button-cta, .button-ghost
    {
        display: block;
    }

    footer
    {
        padding-top: 8vw;
        padding-bottom: 8vw;
    }
}