@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #003962;
    font: 400 1em/1.3em "Lucida Sans Unicode", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1115px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.25em;
    line-height: 1.1;
}
h2 {
    font-size: 1.15em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.75rem 2rem;
}
li:before {
    content: "•";
    font-size: 1.5em;
    position: relative;
    float: left;
    margin-left: -2rem;
}
li::before, h2, article strong, .row strong {
    color: #0593D2;
}
article {
    padding: 2.5rem 7% 0;
}
.flex {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #003962;
    margin-bottom: 1.75rem;
    gap: 2rem;
}
.left {
    flex: 1;
}
.right {
    padding: 2rem 1.75rem 16rem;
    background: url('../images/bg.jpg') bottom 50px right no-repeat, #E8F4FB;
    width: 290px;
    margin-bottom: 4.2rem;
}
.right p {
    font-size: 0.94em;
    line-height: 1.3;
}
a.link {
    text-decoration: underline;
}
footer {
    padding: 0 7% 2rem;
}
footer > p:last-of-type {
    font-size: 0.8em;
    line-height: 1.3;
}
.row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.row p {
    text-align: justify;
    hyphens: auto;
    flex: 1;
    font-size: 0.9em;
    line-height: 1.8;
}
.title :is(p, h1) {
    color: #fff;
}
.title {
    position: absolute;
    top: 220px;
    left: 7%;
}
@media only screen and (max-width:1114px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, ul {
        hyphens: auto;
    }
    .title :is(p, h1) {
        color: #003962;
    }
    .title {
        position: static;
        margin-bottom: 1.5rem;
    }
    .row p {
        text-align: left;
    }
    br {
        display: none;
    }
    span, a {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
        gap: 0;
    }
    .right {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    article, footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .row {
        flex-direction: column;
        align-items: center;
    }
    h1 {
        font-size: 1.8em;
    }
}