@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #69696C;
    font: 0.9375em/1.2 Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0 0 0.375rem;
    font-size: 1.22em;
    line-height: 1.1em;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
}
h3 {
    padding: 0.375rem 1.5rem;
    color: #fff;
    background-color: #223B53;
    font-size: 1.58em;
    line-height: 1.3;
    font-weight: 400;
}
h4 {
    font-size: 1.5em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.625rem;
    list-style: none;
}
li, .center li span {
    padding-left: 0.625rem;
}
ul li:before, .center li span::before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header img {
    display: block;
}
article {
    padding: 0.5rem 1.5rem 0;
}
.center :is(h2, ul) {
    text-align: center;
}
.center li {
    padding-left: 0;
}
.center li::before {
    display: none;
}
.center li span {
    display: inline-block;
}
footer {
    padding: 0.5rem 1.5rem 0;
    background-color: #DCDDDF;
}
footer :is(h4, p:last-of-type) {
    color: #223B53;
}
.flex {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .flex {
        display: block;
    }
    footer :is(h4, p) {
        text-align: center;
    }
    .hide_m {
        display: none;
    }
    span {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    article, footer {
        padding: 0.5rem 1rem 0;
    }
}