@charset "utf-8";
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot');
    src: local(''),
        url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-pro-v21-latin-700.eot');
    src: local(''),
        url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2D3741;
    font: 400 1em/1.3em 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1005px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 3rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 2rem;
}
.center, h1 {
    text-align: center;
}
h1, h2 {
    color: #009EDA;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 2.1em;
    line-height: 1.1;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.7rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #009EDA;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.color {
    color: #8C8C8C;
}
.hl {
    border-block: 2px solid #009EDA;
    padding: 0.25rem;
    text-align: center;
    background: #F3F9FC;
    margin-bottom: 1.5rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    background: #F8F8F8;
    margin-bottom: 2rem;
}
.flex :is(p, ul) {
    padding-bottom: 0;
}
.left, .right {
    width: 50%;
    border: 1px solid #DDDDDD;
    padding: 0.5rem;
}
.right {
    border-left: none;
}
header {
    padding: 0 0 1.75rem;
}
footer {
    padding: 6rem 0 0;
}
footer p{
    font-size: 0.938em;
    line-height: 1.3;
}
figure {
    margin: 0;
}
@media only screen and (max-width:1004px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    #wrapper {
        padding: 2rem;
    }
    .flex{
        flex-direction: column;
    }
    .left, .right{
        width: auto;
    }
    .right{
        border-left: 1px solid #DDDDDD;
        border-top: none;
    }
    header{
        display: flex;
        justify-content: center;
    }
    footer{
        padding-top: 2rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1{
        font-size: 1.7em;
    }
}