@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #212c55;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 2px #eb8800;
    background: #fff;
    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;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.75em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    padding: 1rem 3rem;
    background: #f2f2f2;
}
ul {
    padding: 1.5rem 0 1.5rem 1.5rem;
    list-style: none;
}
li {
    padding: 0.25rem 0 0.25rem 1.5rem;
}
li:before {
    content: url('../images/arrow.svg');
    float: left;
    margin: 1px 0 0 -1.5rem;
}
header figure {
    padding: 1rem 2rem;
}
main {
    padding: 2rem;
}
.box {
    border-left: 2px solid #eb8800;
    margin-block: 2rem;
}
a.apply {
    display: block;
    width: fit-content;
    margin: 3rem 0 4rem;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 1px solid #212c55;
    background: #212c55;
    color: #fff;
    position: relative;
}
.apply:before {
    content: url('../images/icon.svg');
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 1);
    position: absolute;
    bottom: 2.25rem;
    right: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header figure {
        display: flex;
        justify-content: center;
    }
    a.apply {
        margin: 2rem auto 3rem;
    }
}
@media only screen and (max-width:480px) {
    header figure, main {
        padding: 1rem;
    }
}