@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em 'Nunito', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 6px #B2B7BB;
    border-top: 0.75rem solid #C9CACD;
    border-right-color: #C9CACD;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1.75em;
    line-height: 1.1em;
    margin-bottom: 1rem;
}
h1 span {
    font-size: 1.125rem;
    display: block;
}
h1, .center {
    text-align: center;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.25rem;
}
header {
    background: #fff;
    padding: 0.75rem 1rem 0.25rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 0.5rem 1rem 0;
    background: #F1F1F2;
}
.small, h2, li {
    font-size: 0.875em;
    line-height: 1.3;
}
footer {
    padding: 1.25rem 0.5rem 0 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    background: url('../images/bg.jpg') bottom left no-repeat;
}
footer p {
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.2;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        background: #fff;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer p {
        padding: 0.5rem 1rem;
        background: #F8EA0D;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    h1 {
        font-size: 1.5em;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}