@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 735px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #EFEFEF url('bg.jpg') no-repeat right bottom;
    overflow: hidden;
    padding: 3rem 3rem 3rem 4.5rem;
}
#wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0.8rem;
    width: 24px;
    height: 100%;
    background: #CD1619;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
    text-align: center;
}
h1 {
    margin: -1rem 0 1.25rem;
    font-size: 1.55em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    display: block;
    font-size: 0.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
h2:before {
    content: url('icon_bg.jpg');
    margin-right: 0.25rem;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}
li {
    padding: 0.25rem 0 0 1rem;
}
li:before {
    content: "\2022";
    float: left;
    font-size: 1.4em;
    margin-left: -1rem;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: center;
}
article section {
    margin: 0 0 1rem 2.25rem;
}
footer p:last-of-type {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    position: absolute;
    left: 0.85rem;
    bottom: 4.5rem;
    color: #fff;
}
@media only screen and (max-width:734px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    p :is(span, a) {
        display: inline-block;
    }
    #wrapper:before, article br {
        display: none;
    }
    article section {
        margin: 0 0 1rem;
    }
    footer p:last-of-type {
        position: static;
        writing-mode: horizontal-tb;
        padding: 0.25rem;
        background: #CD1619;
        transform: none;
    }
}