@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/nunito-v32-latin-800.eot');
    src: url('../fonts/nunito-v32-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-800.woff2') format('woff2'), url('../fonts/nunito-v32-latin-800.woff') format('woff'), url('../fonts/nunito-v32-latin-800.ttf') format('truetype'), url('../fonts/nunito-v32-latin-800.svg#Nunito') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #005CA9;
    font: 400 1em/1.3em 'Nunito', Arial, sans-serif;
}
h1, h2, h3, strong {
    font-weight: 800;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #F2F5F8;
    overflow: hidden;
    padding: 1rem 4rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.875em;
    line-height: 1.1em;
}
h1 small {
    display: block;
    font-size: 1.25rem;
    line-height: 1.3;
}
h1 span {
    display: block;
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: none;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.75em;
    line-height: 1.3em;
}
h1, h2 {
    text-transform: uppercase;
}
h2, h3 {
    color: #CC1718;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.25rem;
}
header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.flex, footer {
    display: flex;
    justify-content: space-between;
}
:is(.flex, footer) div {
    width: 48%;
}
footer {
    padding-top: 1rem;
    border-top: 2px solid #005CA9;
}
footer figure {
    margin: 0 5rem;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
        hyphens: auto;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    .flex, footer, header {
        flex-direction: column;
    }
    header {
        align-items: center;
    }
    :is(.flex, footer) div {
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    footer figure {
        display: flex;
        justify-content: center;
        margin: 0 0 1rem;
    }
}