@charset "utf-8";
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot');
    src: local(''),
        url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-pro-v21-latin-700.eot');
    src: local(''),
        url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #06539A;
    font: 400 1em/1.3em 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1,h2,h3,strong{
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1, h3 {
    color: #FFF;
}
h1 {
    margin: 0;
    font-size: 1.892em;
    line-height: 1.1;
    position: relative;
}
h1 span {
    position: absolute;
    bottom: -1.3rem;
    right: -3rem;
    font-size: 0.7em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
}
h3 {
    font-size: 1.8em;
    line-height: 1.3em;
    font-weight: normal;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #06539A;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
article p:last-of-type {
    font-size: 1.2em;
    line-height: 1.3em;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.flex {
    display: flex;
    justify-content: start;
    background: #0577BE;
}
.box {
    padding: 0.5rem 1rem 0;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 {
        padding-bottom: 1rem;
    }
    h1 span, footer {
        position: static;
    }
    h3 {
        font-size: 1.2em;
    }
    p :is(a, span) {
        display: inline-block;
    }
    footer {
        display: flex;
        justify-content: center;
    }
    article p:last-of-type {
        text-align: center;
    }
    br {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    ul li {
        padding-left: 1rem;
    }
}