@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-v18-latin-regular.eot');
    src: url('../fonts/source-sans-3-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v18-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-v18-latin-600.eot');
    src: url('../fonts/source-sans-3-v18-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-600.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-600.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-600.ttf') format('truetype'), url('../fonts/source-sans-3-v18-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-v18-latin-700.eot');
    src: url('../fonts/source-sans-3-v18-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v18-latin-700.svg#SourceSans3') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #004998;
    font-family: 'Source Sans 3', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.0625rem solid #c2c2c2;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

a.link {
    color: #004998;
}

a.link:hover {
    color: #0e66b7;
}

.green {
    color: #008767;
}

ul {
    margin: 0 0 1rem 1.875rem;
}

h1 {
    color: #008767;
    font-size: 24px;
    font-weight: 400;
    margin: 1.5rem 1.5rem 1rem;
}

h2 {
    color: #008767;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 30px 0 16px;
}

header {
    position: relative;
    border-bottom: 1.25rem solid #004998;
}

main {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
}

aside {
    width: 20%;
}

article {
    width: 78%;
}

.button {
    display: flex;
    margin: 1rem 0 2rem;
}

.button2 {
    display: flex;
    margin-bottom: 2rem;
}

a.apply {
    color: #008767;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #008767;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
}

a.apply:hover {
    color: #fff;
    background-color: #008767;
    text-decoration: underline;
}

footer {
    padding: 0 45px 45px;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        text-align: center;
    }

    header {
        border-bottom: 0.625rem solid #004998;
    }

    main {
        flex-direction: column;
        padding: 1rem;
    }

    article,
    aside {
        width: 100%;
    }

    aside {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    aside p {
        text-align: center;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    ul {
        margin: 0 0 1rem 1rem;
    }
}

@media only screen and (max-width: 499px) {
    aside {
        flex-direction: column;
        gap: 0;
    }

    .button2 a.apply {
        font-size: .938rem;
    }

}