@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Times New Roman", Times, serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 2px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat left top 6.5rem;
    overflow: hidden;
    padding: 0.75rem 0.8rem 0;
}
#wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 289px;
    width: 1px;
    height: 100%;
    background: #000;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    padding: 0.125rem;
    font-size: 1.25em;
    line-height: 1.3;
    background: #D9D9D9;
    text-align: center;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    font-variant: small-caps;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    gap: 1rem;
}
.left, footer {
    width: 66.5%;
}
.right {
    width: 246px;
    padding: 10rem 0.5rem 12rem;
}
.right :is(p, h3) {
    text-align: center;
}
.uppercase {
    text-transform: uppercase;
}
header {
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 1px solid #000;
    width: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.1rem 0;
}
footer {
    margin: -5.5rem 0 0 auto;
}
footer p {
    text-align: center;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .right {
        padding-top: 5rem;
    }
    #wrapper:before, article br {
        display: none;
    }
    header {
        border: none;
        width: 266px;
    }
    footer {
        margin-top: 0;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
    }
    .left, .right, header, footer {
        width: 100%;
        padding: 0;
    }
    header {
        position: static;
        padding: 1rem;
    }
    footer {
        margin-top: 1rem;
    }
}