@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3D3B3D;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 7rem 0;
}
p {
    padding-bottom: 1rem;
}
p img{
    vertical-align: -5px;
}
h1 {
    margin: 0;
    font-size: 1.65em;
    line-height: 1.1;
    padding: 3rem 1rem 0 2rem;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #0C597D;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #3D3B3D;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "▪";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
    color: #0C597D;
}
header {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin: 0 -7rem 2rem;
    background: #0C597D;
}
.flex img {
    display: block;
}
footer {
    background: #0C597D;
    padding: 1rem 7rem;
    margin: 0 -7rem;
    border-top: 1px solid #3D3B3D;
}
footer :is(p, a), h1 {
    color: #FFF !important;
}
footer p {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
}
p span.ml {
    margin-left: 0.3rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flex {
        align-items: center;
        margin: 0 -2rem 2rem;
        padding: 2rem;
        flex-direction: column;
    }
    h1 {
        text-align: center;
        padding: 0 0 1rem;
    }
    footer p {
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
}