@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0065A9;
    font: 0.9em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 4px #1D4571;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.3rem;
}
h1 {
    margin: 0 0 0.5rem;
    padding-left: 1.5rem;
    font-size: 1em;
    position: relative;
}
h1:before {
    content: url('../images/icon.jpg');
    position: absolute;
    left: 0;
    top: -1px;
}
h2 {
    margin: 0 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 {
    margin: 2rem;
}
a.apply {
    background: #EF7B20 url('../images/bg.jpg') top right no-repeat;
    display: inline-block;
    color: #fff;
    padding: 0.5rem 1.75rem 1rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding: 0 2.4rem 2rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    footer{
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 480px) {
    article{
        margin: 1rem;
    }
}
 