@charset "utf-8";

/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v30-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-condensed-v30-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-condensed-v30-latin-regular.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v30-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-condensed-v30-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-condensed-v30-latin-700.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #595a59;
    font-family: "Roboto Condensed", "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: #ea6112;
    text-decoration: underline;
    white-space: nowrap;
}

a:hover {
    color: #bb4d0e;
}

a.list {
    white-space: normal;
}

p {
    margin: 0 0 1.25rem;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    margin: 1.25rem 0;
}

h1 span {
    font-weight: 400;
}

h2 {
    font-size: 1rem;
    margin: 0 0 1.25rem;
}

ul {
    list-style: none;
    margin: 1.375rem 0 1.875rem;
    padding: 0;
}

ul li {
    padding: 0 0 .687rem 1.875rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.875rem;
    font-size: 1.375em;
    line-height: 1;
    font-family: "Arial", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: .062rem solid #c9cac9;
    padding: .625rem 0 .937rem;
    margin: 0 0 2.812rem;
}

article {
    padding: 1.875rem 0 0;
}

.image {
    margin: 0 auto;
    display: block;
}

.section {
    padding: 3.437rem .937rem 1.875rem;
}

.aside {
    border-top: .062rem solid #c9cac9;
    border-bottom: .062rem solid #c9cac9;
    padding: 1.875rem 0
}

footer {
    margin: 1.875rem 0;
}

a.apply {
    background: #ea6112;
    color: #fff;
    text-decoration: none;
    border-radius: .187rem;
    width: 15.625rem;
    padding: .312rem 1.25rem .25rem;
    display: block;
    text-align: center;
    margin: 0 auto;
}

a.apply span {
    margin: 0 .312rem 0 0;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {

    p,
    ul {
        margin: 0 0 1rem;
    }

    h1,
    h2 {
        margin: 0 0 1rem;
    }

    ul li {
        padding-left: 1.125rem;
    }

    ul li:before {
        margin-left: -1.125rem;
    }
}

@media only screen and (max-width: 37.5rem) {
    h1 {
        font-size: 1.25rem;
    }

    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
        margin: 0 0 1.25rem;
    }

    article {
        padding: 1.25rem 0 0;
    }

    .section {
        padding: 1.25rem .937rem 1.25rem;
    }

    .section img {
        margin: 0 auto;
    }
}