@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #221C22;
    font: 1.1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 2px #221C22;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
#wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2rem;
    background: #221C22;
    right: 0%;
    bottom: 0%
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.15em;
    line-height: 1.1;
    padding-left: 1rem;
}
h1:before {
    margin: -4px 0 0 -1rem !important;
}
h1 span {
    font-weight: normal;
}
h2, h3 {
    border-bottom: 1px solid #221C22;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #221C22;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li, h1 {
    padding-left: 1rem;
}
ul li:before, h1:before {
    content: "-";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    background: url('../images/bg-t.jpg') repeat-x;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 1rem 1rem 2rem;
    background: url('../images/bg.jpg') no-repeat bottom left #FFFFFF;
}
footer {
    position: absolute;
    bottom: 3.1rem;
    right: 1rem;
}
p span.fw5{
    font-weight: 500;
}
@media only screen and (max-width:549px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p{
        text-align: left;
    }
}
@media only screen and (max-width: 450px){
    article{
        padding-bottom: 0;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem 1rem 3rem;
    }
}