@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #707070;
    font: 400 1em/1.5em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto 10rem;
    border: 1px solid #707070;
    background: #fff;
    overflow: hidden;
    padding: 2rem 2rem 1rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.8em;
    line-height: 1.1;
    text-align: center;
    color: #003366;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.385em;
    line-height: 1.3;
    color: #003366;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.35rem;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.385em;
    line-height: 1.3;
    color: #003366;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.75rem 1.25rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: -4px;
    color: #56BD66;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.bg {
    margin: 2rem -2rem;
    padding: 2rem 2rem 1rem;
    background: #E3EBF5;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left, .right {
    width: 48%;
}
.flexbox {
    padding: 2rem 1rem 1rem;
    background: #E3EBF5;
    border-bottom: 6px solid #56BD66;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.flexbox div {
    width: 48%;
}
.flexbox div p:first-of-type {
    padding-bottom: 3rem;
}
.flexbox div p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
header {
    padding: 0 0 1.5rem;
}
p span.big {
    font-size: 3em;
    line-height: 1.3em;
    display: inline-block;
    float: left;
    margin-bottom: -3.5rem;
}
p span.ml {
    margin-left: 2.1rem;
    display: inline-block;
}
footer {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0 1rem;
}
figure {
    margin: 0 0 2rem;
}
.apply {
    padding: 0.5rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #56BD66;
    background: #fff;
}
.apply a {
    display: inline-block;
    background-color: #56BD66;
    border: 1px solid #56BD66;
    color: #fff;
    padding: 0.5rem 1rem;
}
.apply a:hover {
    background: #fff;
    color: #56BD66;
}
@media only screen and (max-width:1023px) {
    #wrapper {
        border: none;
        margin: 0 auto 10rem;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .flex1 {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .flex1 :is(.left, .right) {
        width: auto;
    }
    .flexbox {
        width: 100% !important;
    }
    p span.big {
        font-size: 1em;
        line-height: 1.3em;
        float: none;
        margin: 0;
    }
    p span.ml {
        display: inline;
        margin: 0;
    }
}
@media only screen and (max-width:780px) {
    header {
        display: flex;
        justify-content: center;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .flexbox div {
        width: auto;
    }
}