@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-700.woff') format('woff'), url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #282827;
    font: 400 0.9375rem/1.5em 'Open Sans', Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 53.125rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #282827;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: none;
}

header section:first-of-type {
    width: 70%;
}

header section:last-of-type {
    padding: 0 1.5rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header section p {
    text-align: center;
    margin: 0.5rem 0 0;
}

article {
    padding: 0;
}

article h1 {
    background-color: #019641;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 1rem;
    font-size: 1.625rem;
    line-height: 120%;
    font-weight: 700;
}

article .flex {
    display: flex;
    justify-content: space-between;
}

article .flex section {
    width: 70%;
    padding: 1rem 1rem 1rem 2rem;
}

article .flex section h2 {
    font-size: 1rem;
    color: #019641;
    margin: 1rem 0;
}

article ul {
    margin: 0 0 0 1.2rem;
}

.marginb {
    margin-bottom: 20px
}

:is(article, footer) p:not(:last-of-type) {
    margin: 0 0 1rem;
}

aside {
    background: #d1ede1;
    padding: 1rem;
    width: 30%;
}

aside p span {
    color: #019641;
    font-weight: bold;
}

aside a.apply {
    background: #019641;
    border: solid 0.0625rem #019641;
    text-align: center;
    color: #fff;
    padding: 0.5rem 2rem;
    display: block;
    margin: 1.5rem 0;
}

aside a.apply:hover {
    background: transparent;
    color: #019641;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.hover:hover {
    color: #289548;
}

a.mail {
    color: #3a87ad;
}

.nowrap {
    white-space: nowrap;
}

footer {
    display: none;
}

@media only screen and (max-width: 53.0625rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }
}

@media only screen and (max-width: 48rem) {
    article .flex {
        justify-content: flex-start;
        flex-direction: column;
    }

    article .flex section,
    aside,
    footer section {
        width: 100%;
        padding: 1rem 2rem;
    }

    aside {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    aside a.apply {
        margin: 1rem 0 0.5rem;
    }

    footer {
        background: #fff;
    }
}

@media only screen and (max-width: 37.125rem) {
    header {
        padding: 0;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .logo {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    header section:first-of-type {
        width: 100%;
    }

    header section:last-of-type {
        display: none;
    }

    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    footer p {
        text-align: center;
    }
}

@media only screen and (max-width: 30rem) {

    article .flex section,
    aside,
    footer section {
        padding: 1rem;
    }

    article h1 {
        margin: 0;
    }
}

@media only screen and (max-width: 25.9375rem) {
    aside {
        flex-direction: column;
        align-items: center;
    }

    aside p {
        text-align: center;
    }

    aside a.apply {
        padding: 0.5rem 3rem;
    }
}