@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231f20;
    font: 400 1em/1.4em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto 10rem;
    border: none;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 11px 2px #939095;
    box-shadow: 3px 3px 11px 2px #939095;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #365f90;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1.45em;
    line-height: 1.3;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0.25rem 1rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #365f90;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 2rem 4.7rem 0;
}
footer {
    padding: 0.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem 2rem;
}
footer p {
    font-size: 0.9em;
    padding-bottom: 2rem;
}
figure {
    margin: 0;
}
.apply {
    padding: 0.5rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 1.5em;
    border-top: 1px solid #365f90;
    background: #fff;
}
.apply a {
    background: #365f90;
    color: #fff;
    display: inline-block;
    padding: 0.35rem 1.5rem;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto 10rem;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    article {
        padding: 2rem 3rem 0;
    }
}
@media only screen and (max-width:768px) {
    article {
        padding: 2rem 2rem 0;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
}