@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');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/source-sans-pro-v21-latin-900.eot');
    src: local(''),
        url('../fonts/source-sans-pro-v21-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-900.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-900.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-900.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-900.svg#SourceSansPro') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4em 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 980px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 3rem;
}
:is(h3, h4, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h4, .color {
    color: #003358;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.1em;
    line-height: 1.1;
    font-weight: 400;
}
h1 span {
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.4em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.1rem;
    line-height: 1.3;
}
h4 span {
    font-weight: 400;
}
ul {
    padding: 0 0 2rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.logo {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
figure {
    margin: 0 0 1rem;
}

.button {
    display: flex;
    justify-content: right;
    margin: 1rem 0;
}

a.apply {
    background-color: #87888a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
}

a.apply:hover {
    color: #0066a9;
    text-decoration: underline;
}

@media only screen and (max-width:979px) {
    #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;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul{
        padding-left: 0;
    }
}