@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat bottom left #FBF9FA;
    overflow: hidden;
    padding: 2rem;
}
p.pb_0 {
    padding: 0;
}
h1, h2, h3 {
    font-family: "Times New Roman", serif;
    font-weight: normal;
}
p {
    padding-bottom: 1rem;
}
h1, h3 {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.3em;
    line-height: 1.3;
}
h1 small {
    font-size: 0.5em;
}
h2, h3 {
    font-size: 1.7em;
    line-height: 1.3;
}
h3 {
    text-align: center;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1rem;
}
header figure {
    position: absolute;
    top: 0;
    right: 0;
}
article {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10rem;
}
article div {
    width: 48%;
}
.right {
    margin-top: 15.3rem;
}
hr {
    border: none;
    background: #000;
    height: 1px;
    width: 100%;
    text-align: center;
    margin: 0.5rem auto;
}
footer p {
    text-align: center;
    font-size: 0.9em;
    line-height: 1.1em;
}
.pss {
    position: absolute;
    bottom: 0.1rem;
    right: 2.4rem;
}
footer div {
    position: absolute;
    bottom: 4.3rem;
    left: 4.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background-image: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: -2rem;
        gap: 0 1rem;
    }
    header figure, footer div, .pss {
        position: static;
    }
    header figure {
        margin: 1rem -1rem;
    }
    footer {
        background: #BBD1C8;
        position: static;
        padding: 1rem 1rem 0;
        margin: 0 -1rem;
    }
    .logo, header figure {
        display: flex;
        justify-content: center;
    }
    .right {
        margin: 0;
    }
}
@media only screen and (max-width:780px) {
    article {
        flex-direction: column;
        padding: 0;
    }
    article div {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    h2 {
        font-size: 1.2em;
    }
    h1 {
        font-size: 1.5em;
    }
}