@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: none;
    background: #fff;
    overflow: hidden;
}
main {
    display: block;
    border: 3px solid #EF4123;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.6em;
    line-height: 1.3;
}
h1 span {
    font-size: 1.125rem;
    font-weight: 400;
}
h1+p {
    font-size: 1.25em;
    line-height: 1.3;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
}
ul {
    padding: 0 0 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;
}
.title {
    background: #EF4123;
    margin: 0 -1.5rem 1rem;
    padding: 0.5rem 1.5rem;
}
.title :is(p, h1) {
    color: #fff;
    text-align: center;
    padding: 0;
}
.hl {
    font-weight: 700;
    text-align: center;
    color: #0871BA;
    font-size: 1.25em;
    line-height: 1.3;
}
article, footer {
    padding: 0 1.5rem;
}
footer p {
    font-size: 1.188em;
    line-height: 1.3;
}
@media only screen and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    main {
        border: none;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 0 1rem;
    }
}