@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #0771B9;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-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;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.1255em;
    line-height: 1.3;
    text-align: center;
}
h1 :is(span, small) {
    font-weight: normal;
    display: block;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    color: #4DB348;
    margin-bottom: 0.5rem;
}
h3, h4 {
    font-size: 1.5em;
    line-height: 1.3em;
}
h3 {
    font-weight: normal;
    color: #0671B9;
}
h4 {
    color: #01285C;
}
h5 {
    font-size: 1em;
    line-height: 1.3em;
    padding: 0.5rem 1rem;
    margin: 1rem -1rem 0.75rem -2rem;
    background: #fff;
    text-align: center;
    color: #01285C;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 1.5rem 1rem 0.5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 1rem;
}
article {
    padding: 0.75rem 1rem 0;
    background: #00285D;
}
.icon p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125em;
    line-height: 1.3;
}
.left {
    width: 53.5%;
}
.left strong {
    color: #4DB348;
}
.abs {
    padding: 1rem 1rem 0;
    width: 40%;
    position: absolute;
    top: 9.375rem;
    right: 0;
    background: #0771B9;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .left {
        width: auto;
    }
    h5 {
        padding: 0.5rem 2rem;
        margin: 1rem -2rem;
    }
    br {
        display: none;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    header div, .abs, .left {
        width: 100%;
    }
    .abs {
        position: static;
    }
}