@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0D3579;
    font-family: Calibri, Arial, sans-serif;
    font-size: 1.125em;
    line-height: 1.2;
}
#wrapper {
    position: relative;
    max-width: 662px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('./bg.jpg') no-repeat bottom center;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 2em;
    line-height: 1.2;
    font-family: Arial, Helvetica, sans-serif;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 1.3em;
}
li {
    padding-left: 2rem;
    padding-bottom: 0.25rem;
}
ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url('./icon.jpg') no-repeat center;
    float: left;
    margin-top: 0;
    margin-left: -2rem;
}
article {
    padding: 0 1.75rem 0 2.25rem;
    margin-top: -22.75rem;
    position: relative;
}
.pb {
    padding-bottom: 1.25rem;
}
article p:last-of-type {
    width: 88%;
}
footer {
    padding: 0 5.5rem 0.25rem;
    display: flex;
    justify-content: flex-end;
}
@media only screen and (max-width: 661px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background: #fff;
    }
    article {
        margin-top: 0;
        padding: 1rem 1rem 0;
    }
    article p:last-of-type {
        width: auto;
    }
    h1 br {
        display: none;
    }
    p {
        text-align: left;
    }
    footer {
        padding: 0 1rem 1rem;
        justify-content: center;
    }
}