@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v44-latin-600.eot');
    src: url('../fonts/open-sans-v44-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-600.woff') format('woff'), url('../fonts/open-sans-v44-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-600.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.063rem;
    line-height: 1.43;
    background: linear-gradient(to top, #fff 0%, transparent 80%), url("../images/bg.jpg")top center/100% no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 61.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 8px #666;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #cc1e1c;
    white-space: nowrap;
}

a:hover {
    color: #cc1e1c;
    text-decoration: underline;
}

a.wrap {
    white-space: normal;
}

strong {
    font-weight: 600;
}

p {
    padding-bottom: 1.625rem;
}

p,
ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

h1 {
    font-size: 2.188rem;
    line-height: 1.3;
    text-align: center;
    padding: 1.625rem 0;
}

h2 {
    font-size: 1.313rem;
    padding-bottom: .5rem;
    color: #cc1e1c;
}

h3 {
    font-size: 1.063rem;
    padding-bottom: .5rem;
}

ul {
    list-style: none;
    padding-bottom: 1.125rem;
}

ul li {
    padding: 0 0 .5rem 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.25rem;
    color: #cc1e1c;
    font-size: .9rem;
}

.title {
    background-color: #cc1e1c;
    color: #fff;
    text-align: center;
    padding: 1.625rem 4.875rem;
    margin: 0 -4.875rem 1.625rem;
}

.title p {
    padding-bottom: 0;
}

.button a {
    display: inline-block;
    font-size: 17px;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    background-color: #cc1e1c;
    border: 2px solid #cc1e1c;
    padding: 8px 58px;
    text-transform: uppercase;
    transition: 0.5s;
    margin-top: 26px;
    border-radius: 1px;
    font-weight: 600;
    text-align: center;
}

.button a:hover {
    background-color: transparent;
    color: #cc1e1c;
}

header {
    padding: 1.625rem 4.875rem;
    display: flex;
}

article {
    padding: 1.625rem 4.875rem;
}

footer {
    margin: 1.625rem 4.875rem;
    padding: 1.625rem 1.625rem 0;
    background-color: #eee;
}

@media only screen and (max-width: 61.188rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    body {
        background: #fff;
    }

}

@media only screen and (max-width: 50rem) {

    header,
    article {
        padding: 1.625rem 2rem;
    }

    footer {
        margin: 1.625rem 2rem;
    }
}

@media only screen and (max-width: 40rem) {

    header,
    article {
        padding: 1.625rem 1rem;
        justify-content: center;
    }

    footer {
        margin: 1.625rem 0 0;
    }
}

@media only screen and (max-width: 30rem) {
    p {
        padding-bottom: 1.25rem;
    }

    ul {
        padding-bottom: 0.75rem;
    }

    article {
        padding: 1.25rem 1rem;
    }

    footer {
        margin: 1.25rem 0 0;
        padding: 1.25rem 1rem 0;
    }

    .title {
        padding: 1.25rem 1rem;
        margin: 0 -1rem 1.25rem;
    }

    h1 {
        font-size: 1.75rem;
        padding: 1.25rem 0;
    }

    h2 {
        font-size: 1.15rem;
    }

    .button {
        display: flex;
        justify-content: center;
    }

    .button a {
        margin-top: 1.25rem;
    }
}