@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-v19-latin-regular.eot');
    src: url('../fonts/source-sans-3-v19-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-3-v19-latin-600.eot');
    src: url('../fonts/source-sans-3-v19-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-600.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-600.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-600.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-600.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-v19-latin-700.eot');
    src: url('../fonts/source-sans-3-v19-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-700.svg#SourceSans3') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #303030;
    font-family: 'Source Sans 3', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1.5rem;
    font-size: 1.125rem;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    color: #005680;
    padding-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #005680;
    padding-bottom: 1.5rem;
}

h3 {
    font-size: 1.125rem;
    padding-bottom: 1.5rem;
}

ul {
    padding: 0 0 1.5rem 1rem;
}

.padding {
    max-width: 50rem;
    margin: 0 auto;
}

.image {
    margin: 0 auto;
    width: 100%;
}

.button a {
    padding: 8px 24px;
    background-color: #6ea0c0;
    color: #fff;
    border-radius: .25rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
}

.button a:hover {
    background-color: #005680;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    padding: 1rem 0;
}

.social a {
    color: #4a5568;
    font-size: 1.5rem;
    line-height: 1;
    padding: .75rem;
    background-color: #edf2f7;
    border-radius: 50%;
}

.social a:hover {
    background-color: #005680;
    color: #fff;
}

header {
    display: flex;
    padding: 1.5rem 3rem;
}

article {
    padding: 2rem 3rem;
}

footer {
    padding: 2rem 3rem;
    text-align: center;
}

@media only screen and (max-width: 49.938rem) {

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 44rem) {
    header {
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    article {
        padding: 1.5rem 1rem;
    }

    footer {
        padding: 1rem;
    }

    .button {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.7rem;
        text-align: center;
        padding-bottom: 1.5rem;
    }
}