@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0067AA;
    font: 0.75em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 4px #214873;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    font-size: 1em;
    line-height: 1.3em;
    position: relative;
}
h1:before {
    content: url('../images/icon.jpg');
    position: absolute;
    left: 0;
    top: -2px;
    color: #EF7B20;
}
h2 {
    margin-bottom: 0.5rem;
    font-size: 1em;
    line-height: 1.3em;
    color: #EF7B20;
}
h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0.6rem 0;
    list-style: none;
}
article {
    width: 315px;
    position: absolute;
    top: 2rem;
    right: 2rem;
}
figure {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}
a.apply {
    display: block;
    padding: 0.75rem 1.5rem;
    background: #ED7D1E;
    color: #fff;
    border-radius: 2rem;
    width: fit-content;
    margin: 1rem 0 1rem auto;
}
footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 2rem 2rem;
}
@media only screen and (max-width:929px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    article {
        width: auto;
        position: static;
        padding: 1rem;
    }
    a.apply {
        margin: 1rem auto;
    }
    figure {
        justify-content: center;
        margin-bottom: 2rem;
    }
    footer {
        justify-content: center;
        padding: 1rem;
    }
}