@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    background: #f4f4f4;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

#wrapper {
    background: #f4f4f4;
    margin: 1rem auto;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}

p {
    text-align: justify;
}

p + p {
    margin: 1rem 0 0 0;
}

h1 {
    background-color: #fff;
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
    line-height: 1.15;
    padding: 1rem;
}

h1 span {
    font-size: 1.625rem;
    font-weight: normal;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

:is(a:link, a:visited, a:active) {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

hr {
    border: none;
    border-top: 0.063rem solid #000;
}

ul {
    padding-left: 1rem;
}

li {
    list-style-type: none;
}

li:before {
    content: "\25CF";
    float: left;
    margin-left: -0.938rem;
}

header {
    position: relative;
    border-bottom: 0.5rem;
}

a.logo {
    position: absolute;
    width: 25%;
    left: 0;
    bottom: 11%;
    height: 30%;
}

section {
    background-color: #fff;
    margin: 0 0 0.75rem;
    padding: 1rem;
}

footer p {
    font-size: 0.875rem;
    text-align: left;
}

a.apply {
    background: #C61116;
    color: #fff;
    font-weight: bold;
    padding: 0.438rem 0;
    margin: 1.25rem auto 0.938rem;
    text-align: center;
    display: block;
    width: 42%;
    border-radius: 0.313rem;
    font-size: 0.938rem;
}

section > a:hover {
    text-decoration: underline;
}

@media only screen and (max-width:799px) {

    body,
    h2 {
        font-size: 16px;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    a:hover {
        text-decoration: none;
    }

    h1 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1rem;
    }

    a.apply {
        width: 100%;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left;
    }
}