@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v17-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/fira-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/fira-sans-v17-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/fira-sans-v17-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/fira-sans-v17-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/fira-sans-v17-latin-regular.svg#FiraSans') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v17-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/fira-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/fira-sans-v17-latin-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/fira-sans-v17-latin-700.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/fira-sans-v17-latin-700.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/fira-sans-v17-latin-700.svg#FiraSans') format('svg');
    /* Legacy iOS */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font: 400 1em/1.5em 'Fira Sans', Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1 {
    text-transform: uppercase;
    font-weight: normal;
    color: #8d231a;
    text-align: center;
    font-size: 40px;
    line-height: 120%;
    margin: 16px 0;
    padding: 0 1rem;
}
header{
    display: flex;
    justify-content: center;
}
:is(article, footer)  {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem 16px 1rem;
    overflow: hidden;
    background: #fff;
}
article p {
    margin: 1rem 0;
}
h2 {
    font-size: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: normal;
    color: #8d231a;
}
h2+p {
    margin-top: .5rem;
}
h3 {
    text-align: center;
    margin: 1.5rem 0;
}
ul {
    list-style: none;
    margin: 8px 0 32px 19px;
    padding: 0;
}
ul li {
    padding-left: 40px
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -18px;
    font-size: 1.375em;
    line-height: 1;
}
a.apply {
    background: #8d231a;
    color: #fff;
    text-align: center;
    padding: .7rem 2rem;
    border-radius: 10px;
    display: block;
    font-size: 1.3rem;
    margin-top: 2rem;
    text-decoration: none;
    width: fit-content;
}
:is(a:link, a:visited, a:hover, a:active):not(a.apply) {
    color: #8d231a;
    text-decoration: none;
    white-space: nowrap;
}
@media only screen and (max-width: 849px) {
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    h1 {
        padding: 0;
        font-size: 35px
    }
    :is(article, footer) {
        margin: 0 auto;
        padding: 2rem 2rem 1rem;
        hyphens: auto;
    }
    a.apply {
        margin: 0 auto;
    }
    footer p {
        text-align: center
    }
}
@media only screen and (max-width: 480px) {
    :is(article, footer) {
        padding: 1rem;
    }
    ul li {
        padding-left: 0;
    }
    h1{
        font-size: 1.5em;
    }
}