*, * ::before, * ::after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    height: 100%;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, div {
    padding: 0;
    margin: 0;
}

.clearfix:after {
    visibility: hidden;
    content: "";
    display: table;
    clear: both;
}

body {
    font-family: "Source Sans Pro", Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
    font-size: 1em;
    line-height: 1.45;
    color: #434343;
    background: #fff;
}

a {
    text-decoration: none;
    background: transparent;
    border: none;
    transition: color .3s ease
}

a:link {
    color: #000;
}

a:visited {
    color: #000;
}

a:hover, a:focus {
    color: #c72314;
    cursor: pointer;
}

a:active {
    color: #c72314;
}

.active {
    color: #c72314;
}

h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

h1 {
    margin: 1em 0;
    font-size: 1.8em;
    line-height: 1;
}

h2 {
    margin: 0.8em 0;
    font-size: 1.25em;
    line-height: 1.2;
}

h3, h4 {
    font-weight: 700;
}

h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em;
    line-height: 1.3;
}

h4 {
    font-size: 1.1em;
}

b, strong {
    font-weight: 700;
}

p {
    margin: 1em 0;
}

p + h3 {
    margin-top: 1.5em;
}

h3 + p {
    margin-top: 0.5em;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #bbb;
    margin: 1em 0;
}

.hr-margin {
    margin: 2em 0;
}

.text-small {
    font-size: 0.875em;
    line-height: 1.25;
}

.text-xsmall {
    font-size: 12px;
}

.text-large {
    font-size: 1.1em;
}

.text-xlarge {
    font-size: 1.2em;
}

.text-center, .align-center {
    text-align: center;
}

.text-right, .align-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.no-break {
    display: inline-block;
}

#wrapper {
    position: relative;
    overflow: hidden;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

nav > ul > li > a, 
nav > ul > li > strong, 
nav > ul > li > .active {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}


#container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
    padding: 5% 5% 10%;
}

.main {
    max-width: 1000px;
    overflow: hidden;
}

.main a {
    text-decoration: underline;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.main img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.background-grey {
    background-color: #eee;
}



/* Block Margins */

.main .margin-top-s { margin-top: 3%; }
.main .margin-top-m { margin-top: 5%; }
.main .margin-top-l { margin-top: 8%; }

.main .padding-top-s { padding-top: 3%; }
.main .padding-top-m { padding-top: 5%; }
.main .padding-top-l { padding-top: 8%; }

/* Typographic Margins */

.margin-top-m10 { margin-top: -1em; }
.margin-top-00 { margin-top: 0; }
.margin-top-10 { margin-top: 1em; }
.margin-top-15 { margin-top: 1.5em; }
.margin-top-20 { margin-top: 2em; }
.margin-top-25 { margin-top: 2.5em; }
.margin-top-30 { margin-top: 3em; }

.margin-bottom-00 { margin-bottom: 0; }
.margin-bottom-10 { margin-bottom: 1em; }
.margin-bottom-15 { margin-bottom: 1.5em; }
.margin-bottom-20 { margin-bottom: 2em; }
.margin-bottom-25 { margin-bottom: 2.5em; }
.margin-bottom-30 { margin-bottom: 3em; }
.margin-bottom-40 { margin-bottom: 4em; }

/* Max-Width */

.max-1000 { max-width: 1000px; }
.max-900 { max-width: 900px; }
.max-800 { max-width: 800px; }
.max-700 { max-width: 700px; }
.max-600 { max-width: 600px; }
.max-500 { max-width: 500px; }

/* Button */

.main .button, 
.main button a, 
.main a.button, 
.main .submit {
    display: inline-block;
    padding: 0.5em 1.5em 0.6em;
    border: 0;
    border-radius: 2.1em;
    background-color: #00b1e6;
    color: #fff;
    font-family: "Source Sans Pro", Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
    font-size: 0.9em;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:background-color .3s ease;
}

.main .button:hover, 
.main .button:focus, 
.main button a:hover, 
.main button a:focus, 
.main a.button:hover, 
.main a.button:focus, 
.main .submit:hover, 
.main .submit:focus {
    background-color: #000;
}


@media only screen and (min-width: 770px) {
    
    body {
        font-size: 1.1em;
        line-height: 1.5;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.3em;
    }

    .hr-margin {
        margin: 2em 0;
    }

    main {
        font-size: 1.063em;
    }

    .text-column-2 {
        column-count: 2;
        column-gap: 50px;
        column-rule: 1px solid #bbb;
        vertical-align: top;
    }

    .text-column-2 p:first-child {
        margin-top: 0;
    }

    .text-column-no-break {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

@media screen and (min-width: 1025px) {
    
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }
}