@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 2rem 0;
}
h1, p span.color {
    color: #0062A1;
}
hr {
    border: none;
    background: #0062A1;
    height: 2px;
    width: 100%;
    text-align: center;
    margin: 1rem auto;
}
p {
    padding-bottom: 1rem;
}
p.pb_0 {
    padding-bottom: 0;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.692em;
    line-height: 1.1;
    font-weight: normal;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "▌";
    display: inline-block;
    font-size: 0.5em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
    color: #005ea8;
}
.center {
    text-align: center;
}
.flex-s {
    display: flex;
    justify-content: center;
    gap: 0 5rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.flex div {
    width: 48%;
}
.bg {
    background: #F0F0F0;
    padding: 1rem 2rem;
    margin: 0 -2rem 2rem;
}
figure {
    margin: 2rem -2rem;
}
figure img {
    display: block;
}
footer {
    background: #0062A1;
    margin: -2rem -2rem 0;
    padding: 2rem 2rem 1rem;
}
footer p {
    color: #FFF;
    text-align: center;
}
footer p img {
    vertical-align: middle;
}
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.button {
    text-align: center;
}
.button a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin: 1rem auto;
    cursor: pointer;
    border: 0.1rem solid #005ea8;
    transition: all 140ms ease 0s;
    -moz-transition: all 140ms ease 0s;
    -webkit-transition: all 140ms ease 0s;
    color: #005ea8;
}
.button a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #005ea8;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p {
        text-align: left;
    }
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: 100%;
    }
    .flex-s {
        gap: 1rem 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    h1 {
        font-size: 1.7em;
    }
}