@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #554f4a;
    font: 0.9375em/1.4 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto 8rem;
    background-color: #fff;
    box-shadow: 3px 3px 11px 2px #939095;
    padding: 2rem 2rem 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem -2rem 1rem;
    padding: 0.5rem 2rem;
    background-color: #e60005;
    color: #fff;
    font-size: 2.5333em;
    line-height: 1.4;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0rem 1rem 1rem 0;
    list-style: none;
}
li {
    padding-left: 0.9375rem;
    margin: 0.25rem 0;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.9375rem;
}
header {
    padding: 0rem 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 49%;
}
article > p:first-of-type {
    font-size: 1.2em;
    line-height: 1.4;
}
hr {
    margin: -1rem 0 1rem;
    border: 0;
    width: 423px;
    border-bottom: solid 1px #554f4a;
}
nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #e60005;
    background-color: #fff;
}
.link {
    padding: 0.5rem 0;
    text-align: center;
}
.link a {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #e60005;
    color: #fff !important;
}
.logo {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto 8rem;
        padding: 1rem;
        overflow: hidden;
    }
    header {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    h1 {
        font-size: 2em;
    }
    ul {
        padding-right: 0;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        display: block;
    }
    .flex div {
        width: auto;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .hide_m {
        display: none;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.625em;
    }
}