@charset "utf-8";
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-slab-v24-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-slab-v24-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-slab-v24-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-slab-v24-latin-700.woff') format('woff'),
        url('../fonts/roboto-slab-v24-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-slab-v24-latin-700.svg#RobotoSlab') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #143C6E;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 699px;
    margin: 1rem auto;
    border: solid 1px #143C6E;
    background-color: #ECF0F7;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p a.color {
    color: #143C6E;
}
h1, h3 {
    text-align: center;
}
h1 {
    margin: 0 0 -2.5rem;
    text-transform: uppercase;
    font: 700 3.4em/1.2em 'Roboto Slab', Arial, sans-serif;
}
h1 span {
    font-family: Arial, sans-serif;
    font-weight: 400;
    display: block;
    font-size: 0.6em;
    text-align: right;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
article {
    padding: 1rem 1rem 0;
}
article p {
    text-align: center;
}
footer {
    background: #143C6E;
    display: flex;
    justify-content: space-between;
}
footer p {
    font-family: 'Calibri', Arial, sans-serif;
    color: #FFF;
    padding: 0.5rem 1rem;
    font-size: 0.9em;
    line-height: 1.3em;
}
@media only screen and (max-width: 698px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 1.7em;
        margin: 1rem 0;
    }
    h1 span, footer p {
        text-align: center;
    }
    footer {
        padding: 1rem 1rem 0;
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 480px) {
    ul li {
        padding-left: 1rem;
    }
    h1{
        font-size: 1.5em;
    }
}