@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.875em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: solid 1px #000;
    background: #F47921;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0rem 0rem 0.3rem;
    font-size: 1.5em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
    font-weight: 400;
    display: block;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 0 0.5rem;
    list-style: none;
    font-size: 0.875em;
    line-height: 1.3;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
header {
    padding: 0.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
header p {
    font-size: 1.8em;
    line-height: 1.3;
    padding-bottom: 0;
}
.banner {
    margin: 0 -1.5rem 0.5rem;
}
article {
    padding: 0 1.5rem 0.5rem;
}
.box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}
.big {
    font-size: 1.8em;
    text-align: right;
    padding-right: 234px;
    line-height: 1.3;
}
article p {
    font-size: 1.125em;
    line-height: 1.3;
}
.right p:last-child {
    font-size: 0.938em;
    line-height: 1.3;
}
.right {
    display: flex;
    align-items: flex-end;
    position: absolute;
    right: 30rem;
    bottom: 2.5rem;
}
.right p {
    text-align: right;
    font-size: 1.188em;
    line-height: 1.3;
    text-transform: uppercase;
}
.arrow {
    padding-right: 0.5rem;
}
footer {
    padding: 0.3rem 1.5rem;
    background: #57585A;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer p {
    padding-bottom: 0;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 small {
        display: inline;
    }
    .big {
        padding-right: 0;
        text-align: left;
    }
    .right {
        position: static;
        display: block;
    }
    .right p {
        text-align: left;
    }
    br, .arrow {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
    p {
        padding-bottom: 0.7rem;
    }
}
@media only screen and (max-width:750px) {
    header {
        flex-wrap: wrap-reverse;
        align-content: center;
    }
}