@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1140px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: linear-gradient(to bottom, #003D50 22%, #8EBF21);
    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: text-bottom;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2em;
    line-height: 1.2;
}
h1+p {
    font-size: 1.5em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
}
h1 span {
    font-weight: normal;
}
h2 {
    font-size: 1.3125em;
    line-height: 1.3em;
    margin: 1rem 0;
}
h3 {
    font-size: 6.25em;
    line-height: 1;
    margin: 2rem -0.4375rem 1.5rem;
}
:is(h2, h3) span {
    color: #8EBF21;
}
h1, h2, h3 {
    font-style: italic;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
article {
    padding: 0 4rem;
    margin-top: -30.5rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 49%;
}
a.apply {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.125em;
    line-height: 1.3;
    background: #F49903;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
}
footer {
    position: relative;
    margin: 0 4rem 3rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom, #38703C, #518834);
}
.hl{
    text-transform: uppercase;
    line-height: 1.5;
}
@media only screen and (max-width: 1139px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: linear-gradient(to bottom, #003D50 11%, #8EBF21);
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    article {
        margin: 0;
    }
    .hide_m {
        display: none;
    }
    a.apply {
        position: static;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    footer {
        padding: 1rem;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        background: linear-gradient(to bottom, #003D50, #8EBF21 60%);
    }
    h3 {
        font-size: 3em;
        margin: 2rem -0.25rem 1.5rem;
    }
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: auto;
    }
    article {
        padding: 2rem;
    }
    footer {
        margin: 0 2rem 2rem;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.75em;
    }
    h3 {
        font-size: 2.5em;
        margin: 2rem 0 1.5rem;
    }
    article {
        padding: 1rem;
    }
    footer {
        margin: 0 1rem 1rem;
    }
}