@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1, p span.color, h4 {
    color: #115FAD;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.6em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 2.3em;
    line-height: 1.3;
    font-weight: normal;
}
h4 {
    font-size: 2.1em;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 900;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
hr {
    border: none;
    border-bottom: 1px dotted #115FAD;
    width: 100%;
    margin-top: 0.2rem;
}
.box {
    position: absolute;
    left: 1rem;
    top: 4.3rem;
}
.box :is(p, h3) {
    color: #FFF;
}
footer {
    display: flex;
    justify-content: space-between;
     align-items: center;
}
article, footer {
    padding: 1rem 1rem 0;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .box {
        position: static;
        margin-bottom: 1rem;
    }
    .box :is(p, h3) {
        color: #000;
        text-align: center;
    }
    p {
        text-align: left;
    }
}
@media only screen and (max-width:780px) {
    footer {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
}