@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #ED1C23;
    background: #fff;
    overflow: hidden;
    padding: 0;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 2.25em;
    line-height: 1.2em;
    padding: 2rem;
    background: #ED1C23;
    color: #fff;
}

h1 span {
    font-weight: 600;
}

h1 small {
    display: block;
    font-size: 0.7em;
    font-weight: 600;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-left: 1.75rem;
}

.mgl {
    margin-left: 1rem;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 1.75rem;
}

li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.75rem;
}

article {
    padding: 1rem 2rem;
}

footer {
    display: flex;
    justify-content: space-between;
}

figure {
    padding: 2.5em;
    background: #ED1C23;
}

footer div {
    padding: 1rem 2rem 0;
    flex: 1;
    background: #E2E3E4;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    p :is(span, a) {
        display: inline-block;
    }

    .hide_m {
        display: none;
    }
}

@media only screen and (max-width:780px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    figure {
        width: 100%;
        padding: 2rem;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width:480px) {
    h1 {
        font-size: 1.75em;
    }

    article,
    h1 {
        padding: 1rem;
    }

    footer div {
        padding: 1rem 1rem 0;
    }

    .mgl,
    h2 {
        margin-left: 0;
    }

    li {
        padding-left: 0.75rem;
    }
}