@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #053564;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 810px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
    display: none;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 2rem 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "▪";
    color: #00A4F7;
    float: left;
    margin: -1px 0 0 -1.25rem;
    font-size: 1.5em;
}
article {
    padding: 3rem 4rem;
}
figure {
    display: flex;
    justify-content: center;
    margin: 1rem 0 2rem;
}
footer {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #27557E, #08335E 30%);
}
footer p {
    padding: 0;
    color: #fff;
}
@media only screen and (max-width: 809px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    article {
        padding: 2rem;
    }
    footer {
        padding: 1rem;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 1rem;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
    }
    footer p {
        text-align: center;
    }
}