@charset "utf-8";
:root {
    font-size: 14px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    box-shadow: -0.1rem 0.1rem 1rem #999;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p a.color, h2 {
    color: #E2202A;
}
p a.color {
    text-decoration: underline;
}
h1 {
    margin: 0 -8rem 3rem;
    padding: 1.7rem 2rem 1.7rem 8rem;
    font-size: 2.3em;
    line-height: 1.1;
    position: relative;
    color: #FFF;
    background: #535252;
}
h1:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 100%;
    background: #E2202A;
    left: 0%;
    top: 0%
}
h1+p {
    text-align: right;
    font-size: 1.2em;
    line-height: 1.3em;
    margin: 0 -2rem 2rem 0;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "▪";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: relative;
}
.logo {
    position: absolute;
    top: 0;
    right: 3rem;
}
article {
    padding: 0 8rem 7rem;
    position: relative;
}
article figure {
    display: flex;
    justify-content: start;
    gap: 0 0.5rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
footer {
    background: #E2202A;
    padding: 1.5rem 1rem 0.5rem;
}
footer p {
    text-align: center;
    font-size: 2em;
    line-height: 1.3em;
}
footer p a.white {
    color: #FFF;
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        margin: 0 -2rem 2rem;
        font-size: 1.7em;
        line-height: 1.3em;
    }
    h1+p {
        margin: 0;
    }
    article {
        padding: 0 2rem 2rem;
    }
    article figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        margin: 0 -1rem 1rem;
    }
    h1+p {
        margin: 0;
    }
    article {
        padding: 0 1rem 1rem;
    }
    .logo img {
        width: 100px;
    }
}