@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    border-right: #C4222A solid 40px;
    padding: 30px 40px 150px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    text-align: center;
    font-size: 1.3rem;
    margin: .937rem 0 0;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1rem;
}

header {
    display: flex;
    justify-content: end;
    padding: 0 0 1rem;
}

p {
    margin: 0 0 16px;
}

.center {
    text-align: center;
}

ul {
    list-style: none;
    padding: 0 0 1rem 30px;
}

li {
    padding-left: 1rem;
}

li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 23px;
    line-height: 1.1;
}

article>ul:last-of-type li:before {
    content: "\2010";
    font-size: 1rem;
    line-height: 1.3;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: 0;
        border-right: 1rem solid #C4222A;
        margin: 0 auto;
        padding: 16px;
    }

    header {
        justify-content: center;
    }

    ul {
        padding: 0 0 1rem 0;
    }

    ul li {
        padding-left: 1.375rem;
    }

    footer {
        margin-top: .625rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}