@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font: 400 1rem/1.25rem 'Roboto', Arial, sans-serif;
    color: #4d4e50;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 2px solid #0C56B8;
    overflow: hidden;
    background-color: #fff;
}
header {
    padding: 1rem 3.125rem;
}
article {
    padding: 0 3.125rem;
}
footer {
    color: #FFF;
    padding: 1rem 3.125rem;
    background: #0C56B8;
}
footer a {
    color: #FFF !important;
}
:is(strong, h1, h2) {
    font-weight: 700;
}
h1 {
    margin: 1rem 0;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    color: #0C56B8;
}
h2 {
    font-size: 20px;
    margin: 1rem 0;
    color: #0C56B8;
    line-height: 25px;
}
p {
    margin: 0 0 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}
img {
    max-width: 100%;
}
ul {
    margin: 0 0 1.25rem;
    list-style: none;
}
ul li {
    padding-left: 1.25rem;
    margin: 0 0 6px;
}
ul li:before {
    content: "\2022";
    float: left;
    color: #748178;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}
@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }
    header {
        padding: 1rem 1rem 0;
    }
    article {
        padding: 0 1rem;
    }
    footer {
        padding: 1rem;
    }
    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
    br:not(footer br) {
        display: none;
    }
}