@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v15-latin-regular.eot');
    src: url('../fonts/source-sans-3-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v15-latin-700.eot');
    src: url('../fonts/source-sans-3-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-700.svg#SourceSans3') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Source Sans 3", "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #CBCBCB;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
    hyphens: auto;
}

:is(h1, .color) {
    color: #0F243E;
}

h1 {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #0F243E;
    margin: 1.25rem 0
}

h1 span {
    font-size: 1rem;
    font-weight: 400;
}

h2 {
    background: #F0F0F0;
    font-size: 1.625rem;
    color: #002060;
    padding: 30px 0 30px 100px;
}

h3 {
    font-size: 1rem;
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 1rem 1.562rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

.check li:before {
    content: "\2714";
    float: left;
    margin-left: -1.375rem;
    font-size: 16px;
    line-height: 1.6;
}

header {
    position: relative;
    padding: 1.875rem 1.875rem 1.25rem 0
}

.logo {
    position: absolute;
    background: #fff;
    height: 6.187rem;
    right: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.25rem;
    width: 3.75rem;
    height: 100%;
    background-color: #fff;
    border-radius: 100% 0% 0% 100%;
}

.logo a {
    position: relative;
    z-index: 1;
}

article {
    padding: 0 3rem;
}

footer {
    background: #F2F2F2;
    padding: 1.25rem;
}

footer p {
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 48rem) {
    header {
        padding: 0 1.25rem 1.25rem 0;
    }

    .logo {
        right: 1.25rem;
    }

    h2 {
        padding: 1.875rem 1.25rem;
    }

    article {
        padding: 0 1rem;
    }

    ul li {
        padding-left: 1.562rem;
    }

    ul li:before {
        margin-left: -1.25rem;
    }
}

@media only screen and (max-width:38.75rem) {
    header {
        padding: 0 0 20px;
    }

    article {
        padding: 0;
    }

    .logo {
        position: static;
    }

    .logo:before {
        display: none;
    }

    h2 {
        padding: 1.25rem;
        text-align: center;
    }
}