@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231f20;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.25em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.8em;
    font-weight: normal;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    font-weight: 800;
    margin: 1rem 0 0.75rem;
    text-transform: uppercase;
}
h2.color {
    color: #ed1c24;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.75rem;
}
li:before {
    content: "■";
    color: #ed1c24;
    float: left;
    margin: -1px 0 0 -1.75rem;
}
article {
    padding: 1.5rem 3rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 54%;
}
.right {
    width: 44%;
}
footer {
    padding: 2rem 5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1rem 2rem;
    background: #ed1c24;
}
.col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem 2rem;
}
footer p {
    padding: 0;
    color: #fff;
}
footer i {
    color: #fff;
    border-radius: 0.25rem;
    width: 1.125rem!important;
    height: 1.125rem;
    display: inline-flex!important;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.3;
    border: 1px solid #fff;
}
@media only screen and (max-width:819px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        padding: 2rem 3rem;
    }
}
@media only screen and (max-width: 780px) {
    article {
        padding: 1rem 2rem;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: auto;
    }
    footer, .col {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    article, footer {
        padding: 1rem;
    }
}