@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6c6d74;
    font-family: "Verdana", "Geneva", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.color {
    color: #393939;
}

p {
    padding-bottom: 1.25rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: normal;
    color: #b51f2a;
    padding: 2.5rem 0;
}

h2 {
    font-size: 1.25rem;
    color: #393939;
}

h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #b51f2a;
    font-weight: normal;
    padding: 1.25rem 0;
    letter-spacing: 2px;
}

h4 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: normal;
    color: #b51f2a;
    padding-bottom: 1.25rem;
}

ul {
    list-style: none;
}

ul li {
    padding: 0 0 1.25rem 1.5rem;
}

ul li:before {
    content: "\2713";
    float: left;
    margin-left: -1.5rem;
    color: #b51f2a;
}

header {
    display: flex;
    padding: 2rem;
}

article,
footer {
    padding: 0 2rem;
}

footer>div {
    padding: 1.25rem;
    background-color: #f4f4f4;
    margin: 1.25rem 0 0;
}

.small {
    font-size: 11px;
    color: #393939;
}

.small span {
    color: #b4b5ba;
}

.button a {
    padding: 12px 32px;
    background-color: #9c141d;
    border: 1px solid #9c141d;
    font-weight: 700;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    display: inline-block;
    transition: .2s;
    margin-top: 1rem;
}

.button a:hover {
    background-color: transparent;
    color: #9c141d;
    text-decoration: none;
}

@media only screen and (max-width: 54.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {

    header {
        justify-content: center;
        padding: 2rem 1rem;
    }

    article,
    footer {
        padding: 0 1rem;
    }

    footer>div {
        padding: 1.25rem;
        background-color: #f4f4f4;
        margin: 1.25rem 0 0;
    }

    .button {
        display: flex;
        justify-content: center;
    }

    h1 {
        font-size: 1.7rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    h3 {
        padding: 0 0 .5rem;
    }

    h4 {
        font-size: 1.5rem;
        padding-bottom: .75rem;
    }
}