﻿@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 0.75rem auto;
    border: 1px solid #000;
    padding: 1rem 3.125rem 3.125rem;
    background-color: #fff;
    position: relative;
}

header {
    overflow: hidden;
    margin: 0 -2.125rem 1rem;
}

article section {
    margin: 0 -2.125rem 2rem;
    padding: 1rem 2.125rem;
    background: #F2F2F2;
}

article section .link {
    color: #E00025;
}

footer {
    margin: 2rem 0 0;
    padding: 2rem 0;
    border-top: 2px solid #DDD;
    border-bottom: 2px solid #DDD;
}

hr {
    background: #DDD;
    height: 2px;
    border: none;
    margin: 2rem 0;
}

p {
    margin: 0 0 1.25rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 2rem 0;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: #E00025;
}

h1 span {
    font-size: 1rem;
    line-height: 1.25rem;
}

h2 {
    margin: 0 0 1.25rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

ul {
    margin: 0 0 2rem;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    margin: 0 0 0.625rem;
}

li:before {
    content: '\2022';
    color: #E00025;
    float: left;
    font-size: 1.625rem;
    text-indent: -1.25rem;
}

ul:last-of-type li {
    padding-left: 2rem;
}

ul:last-of-type li:before {
    color: #000;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

figure {
    margin: 0;
    padding: 0;
    font-style: normal;
    display: flex;
    justify-content: center;
}

@media all and (max-width: 800px) {
    #wrapper {
        padding: 0 1rem 1rem;
        margin: 0;
        border: none;
        hyphens: auto;
    }

    header {
        margin: 0 -1rem 1rem;
    }

    article section {
        margin: 0 -1rem 2rem;
        padding: 1rem;
    }

    footer figure {
        position: static;
        display: flex;
        justify-content: center;
    }

    section br {
        display: inline;
    }

    br {
        display: none;
    }
}