@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 905px;
    margin: 1rem auto;
    border: solid 2px #808080;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    font-size: 1.3em;
    line-height: 1.3;
}
h1, h1 + p, .left :is(h3, p) {
    text-align: center;
}
h2, h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h1, h2 {
    text-transform: uppercase;
}
h3 {
    color: #FFBB00;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.ins {
    color: #0563C1;
    text-decoration: underline;
}
.border:before {
    content: "";
    display: block;
    width: 7rem;
    border: 1px dashed #000;
    margin: 0 auto 0.75rem;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1.5rem;
    line-height: 1.3;
}
li ul {
    padding: 0.5rem 0 0;
}
ul ul li:last-of-type{
    padding-bottom: 0;
}
li:before {
    content: "|";
    font-size: 1.3em;
    float: left;
    margin: -6px 0 0 -1.2rem;
    color: #FFBB00;
    font-weight: bold;
}
header figure {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.custom {
    text-align: center;
    width: fit-content;
    margin: 1rem 0.5rem -4rem auto;
    position: relative;
    z-index: 2;
}
hr {
    margin: 0 1rem 1rem;
    border: 1px solid #000;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin: 0 0 1rem 1rem;
    align-items: flex-start;
}
.left {
    background: #A6A6A6;
    padding: 1.5rem 1rem 0.75rem;
    width: 200px;
}
.left hr {
    margin: 1.5rem 2rem 2rem;
}
.left p {
    line-height: 1.45em;
}
.right {
    width: 611px;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}
footer img {
    vertical-align: middle;
}
footer p {
    text-align: center;
    font-size: 0.9375em;
    line-height: 1.3;
}
footer figure{
    display: flex;
    justify-content: center;
}
footer > p {
    text-align: left;
    padding-left: 3rem;
}
footer > p a {
    margin-left: 0.5rem;
}
footer > p img {
    margin-left: -3rem;
    float: left;
}
footer > p strong {
    display: block;
    margin-bottom: 0.75rem;
}
@media only screen and (max-width: 904px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, ul {
        text-align: left;
        hyphens: auto;
    }
    .custom {
        margin: 0 auto;
    }
    article br, .custom br {
        display: none;
    }
    .left {
        width: 25%;
    }
    .right {
        width: 72%;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        display: block;
        margin: 0 1rem;
    }
    .left, .right {
        width: auto;
        padding: 1rem 1rem 0;
    }
    .left hr {
        margin: 0 2rem 1rem;
    }
    .right {
        padding: 1rem 0 0;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    .flex {
        margin: 0;
    }
    hr {
        margin: 1rem;
    }
}