@charset "utf-8";
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v12-latin-regular.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-regular.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-regular.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-regular.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-regular.svg#NunitoSans') format('svg');
}
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/nunito-sans-v12-latin-800.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-800.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-800.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-800.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-800.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-800.svg#NunitoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #575756;
    font: 400 1em/1.3em 'Nunito Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #575756;
    background: #fff;
    overflow: hidden;
    padding: 2rem 2rem 0;
}
:is(h1, h2, h3, strong) {
    font-weight: 800;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
}
a.color, .color, h1 {
    color: #B2110E;
}
.noline {
    white-space: nowrap;
    text-decoration: none;
}
.upper {
    text-transform: uppercase;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.1;
    text-transform: uppercase;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.logo{
    padding-bottom: 1rem;
}
header figure {
    margin: 2rem -2rem;
}
.box {
    background: rgba(128, 128, 128, 0.3);
    padding: 1rem 1rem 0;
    margin-bottom: 1rem;
}
footer {
    padding: 1rem 2rem 0;
    background: #B2110E;
    margin: 0 -2rem;
}
footer :is(h2,p,a){
    color: #FFF !important;
}
footer figure {
    margin: 0 0 1.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    h1 {
        font-size: 2em;
    }
    header {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem 1rem 0;
    }
    .header figure {
        margin: 1rem -1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    ul {
        padding-left: 0;
    }
}