@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 808px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2.5rem 5rem;
}
p,ul{
     text-align: justify;
    hyphens: auto;
}
p.pb_0{
    padding-bottom: 0;
}
p+ul{
    text-align: left;
}
p {
    padding-bottom: 0.8rem;
}
h1 {
    margin: 0 0 0.8rem;
    font-size: 1em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: #E50A0D;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.8rem;
    list-style: none;
}
li {
    padding-left: 2.9rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.25em;
    float: left;
    margin: -1px 0 0 -1.4rem;
}
footer p {
    font-size: 0.625em;
    line-height: 1.3;
}
header p {
    font-size: 0.833em;
    line-height: 1.3;
    padding: 1rem 5rem 0 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: -1.5rem;
}
.logo {
    position: absolute;
    bottom: 40px;
    right: 36px;
}
@media only screen and (max-width:807px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,ul {
        text-align: left;
    }
    p :is(a,span) {
        display: inline-block;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }
    header {
        margin-right: 0;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    header p {
        text-align: center;
        padding: 1rem 0;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.4rem;
    }
}