@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v50-latin-regular.eot');
    src: url('../fonts/roboto-v50-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v50-latin-regular.woff') format('woff'), url('../fonts/roboto-v50-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v50-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v50-latin-500.eot');
    src: url('../fonts/roboto-v50-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-500.woff2') format('woff2'), url('../fonts/roboto-v50-latin-500.woff') format('woff'), url('../fonts/roboto-v50-latin-500.ttf') format('truetype'), url('../fonts/roboto-v50-latin-500.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v50-latin-700.eot');
    src: url('../fonts/roboto-v50-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-700.woff2') format('woff2'), url('../fonts/roboto-v50-latin-700.woff') format('woff'), url('../fonts/roboto-v50-latin-700.ttf') format('truetype'), url('../fonts/roboto-v50-latin-700.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/roboto-v50-latin-700italic.eot');
    src: url('../fonts/roboto-v50-latin-700italic.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-700italic.woff2') format('woff2'), url('../fonts/roboto-v50-latin-700italic.woff') format('woff'), url('../fonts/roboto-v50-latin-700italic.ttf') format('truetype'), url('../fonts/roboto-v50-latin-700italic.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 0.9em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 780px;
    margin: 1rem auto;
    border: 1px solid #a7a9a4;
    box-shadow: -0.1rem 0.1rem 1rem rgba(0,0,0, 0.2);
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
}
h2 {
    font-size: 1rem;
    line-height: 1.3em;
    background-color: #7d7d7e;
    color: #fff;
    padding: 0.5rem 0 0.5rem 0.8rem;
}
h3 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    font-weight: 500;
}
h1, h3, em {
    color: #006c3b;
}
ul {
    padding: 0.8rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.3rem;
}
header figure {
    border-top: 1rem solid #bcc1cb;
}
hr {
    border: 1px solid #f3f6f4;
    margin-bottom: 1rem;
}
article {
    padding: 1rem 7%;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.flex div {
    width: 48%;
}
.flex ul {
    border: 1px solid #f3f6f4;
    padding: 0.5rem 2%;
}
.flex li {
    padding-left: 1.8rem;
}
.banner {
    margin-bottom: 1.25rem;
}
a.apply {
    display: block;
    padding: 0.625rem;
    background: #006c3b;
    color: #fff;
    text-align: center;
}
footer p {
    padding: 1rem;
    background-color: #bcc1cb;
    border-bottom: 1rem solid #333333;
    text-align: center;
}
@media only screen and (max-width:779px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: auto;
    }
}