@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1.125em/1.3 Calibri, Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 2px #16458E;
    background: #fff;
    overflow: hidden;
    padding: 1rem 0.75rem 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #16458E;
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
h1 {
    font-size: 1.375em;
    line-height: 1.3;
    margin: -0.25rem 0 0;
}
h1 span {
    font-weight: normal;
    display: inline-block;
}
h1 span:nth-of-type(2) {
    font-size: 0.875em;
    line-height: 1.3;
    display: block;
}
h2 {
    font-size: 1.34em;
    line-height: 1.3;
}
h1, h2, .color {
    color: #16458E;
}
article h1+p {
    padding-bottom: 1.25rem;
}
header {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}
article {
    padding: 0 0 2.5rem 9rem;
}
article p {
    font-size: 1.125em;
    line-height: 1.3;
}
article h1 + p {
    font-size: 1.05em;
    line-height: 1.3;
}
article p:first-of-type {
    font-size: 1.17em;
    line-height: 1.3;
}
.space {
    letter-spacing: 1.25px;
    display: inline-block;
}
footer p {
    padding: 0.625rem 0.75rem 0.625rem 5.75rem;
    margin: 0 -1rem;
    color: #fff;
    background: #0159A5;
    text-align: center;
    word-spacing: 2px;
}
figure {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
}
@media only screen and (max-width: 699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header, figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    article{
        padding-left: 0;
    }
    .hide_m {
        display: none;
    }
    footer p {
        text-align: center;
        padding-left: 0.75rem;
    }
}