@charset "utf-8";

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1.1875em/1.2em Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 650px;
    border: solid 2px #1C5AA9;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}
p {
    padding-bottom: 1.25rem;
    text-align: justify;
    hyphens: auto;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0 14px;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -14px;
}
h1 {
    margin: -0.5rem 0 1rem;
    font-size: 1.75em;
    line-height: 1.1em;
    text-align: center;
    color: #1C5AA9;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #1C5AA9;
}
header img {
    float: right;
    margin: 0 0 1rem 1rem;
}
article p:first-of-type {
    padding-bottom: 0.625rem;
}
article p:last-of-type {
    text-align: left;
    hyphens: unset;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 1rem;
}
footer .logo {
    padding-top: 0.75rem;
}
footer .contact :is(p, h2) {
    text-align: right;
}
footer .contact h2 {
    font-size: 1.125em;
}
footer p a.blue {
    color: #1C5AA9;
}
figure {
    margin: 0 0 1rem;
}
footer p {
    padding-bottom: 0.5rem;
}
.logo p {
    font-size: 1.125em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 649px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header img {
        float: none;
        margin: 0 0 1rem;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    header {
        position: static;
        padding-bottom: 0.7rem;
        display: flex;
        justify-content: center;
    }
    footer .contact:is(p, h2), footer .logo p {
        text-align: center;
    }
    figure {
        display: flex;
        justify-content: center;
    }
    footer .contact :is(p, h2) {
        text-align: center;
    }
    footer {
        display: block;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}