@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.eot');
    src: url('../fonts/inter-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v20-latin-regular.woff2') format('woff2'), url('../fonts/inter-v20-latin-regular.woff') format('woff'), url('../fonts/inter-v20-latin-regular.ttf') format('truetype'), url('../fonts/inter-v20-latin-regular.svg#Inter') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.eot');
    src: url('../fonts/inter-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v20-latin-700.woff2') format('woff2'), url('../fonts/inter-v20-latin-700.woff') format('woff'), url('../fonts/inter-v20-latin-700.ttf') format('truetype'), url('../fonts/inter-v20-latin-700.svg#Inter') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Inter', Arial, sans-serif;
}
h1, h2, h3, h4, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #002230 url('../images/bg.svg') top left no-repeat;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
}
a.nounder {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.3;
}
h1 + p {
    font-size: 1.75em;
    line-height: 1.3;
    padding-bottom: 2rem;
}
h2 {
    font-size: 2.5em;
    line-height: 1.3em;
    margin: 1rem 0;
}
h3 {
    font-size: 2em;
    line-height: 1.3em;
    margin: 1rem 0;
}
h3 + p {
    font-size: 1.125em;
    line-height: 1.3;
}
h4 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin: 1rem 0;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "";
    float: left;
    width: 0;
    height: 0;
    margin: 4px 0 0 -1rem;
    border-top: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid rgba(0, 0, 0, 0);
    border-left: 6px solid #fff;
}
li ul {
    padding: 0;
}
p img {
    vertical-align: bottom;
}
header {
    padding-bottom: 2rem;
}
.iframe {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.flex > div {
    width: calc(100% / 2 - 1rem);
}
.box {
    padding: 2rem 2rem 0;
    background: #1a3845;
    display: flow-root;
    border-radius: 0.5rem;
    margin-top: 2rem;
}
.box h2 {
    margin: 0 0 1rem;
}
a.apply {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    border: 1px solid #009680;
    background: #009680;
    color: #fff;
    text-decoration: none;
}
.avt {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: block;
    margin: 2rem auto 0.25rem;
    object-fit: cover;
}
footer {
    padding: 2rem;
    width: fit-content;
    margin: 2rem auto 0;
    background: #001B27;
}
footer p {
    text-align: center;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .flex > div {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .box {
        padding: 1rem 1rem 0;
    }
    h1, h2 {
        font-size: 2em;
    }
    h1 + p {
        font-size: 1.5em;
    }
}