* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .color {
    color: #b30000;
    font-size: 16px;
}

#wrapper header {
    padding: 25px;
    background-image: url(header.jpg);
    background-size: 100%;
    background-position: center;
    min-height: 375px;
    position: relative;
}

#wrapper article {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: -18px 16px 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

#wrapper footer {
    padding: 0 40px 20px;
    position: relative;
}

#wrapper .position {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 300px;
}

#wrapper .button {
    padding: 16px 0;
}

#wrapper .button a {
    text-decoration: none !important;
    font-size: 14px;
    color: #ffffff !important;
    padding: 10px 20px;
    background: #b30000;
    border-radius: 3px;
    display: block;
    line-height: 1.2;
    border: 1px solid #800000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

#wrapper .button a.link {
    background: #25d366;
    border: 1px solid #1da851;
}

#wrapper .button a:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: #e60000;
}

#wrapper .button a.link:hover {
    background: #4be083;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper p.small {
    font-size: 12px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 26px;
    font-weight: 700;
    color: #b30000;
    margin-bottom: 15px;
}

#wrapper h2 {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    font-size: 26px;
    line-height: 1.1;
    width: 63%;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 100px;
    color: #fff;
    font-weight: 400;
    background: #b30000;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 700;
    color: #b30000;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #b30000;
    text-decoration: underline;
}

#wrapper ul {
    margin: 0 0 16px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 6px;
}

#wrapper ul li:before {
    content: url(list.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper header {
        background-size: cover;
        padding: 16px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper footer {
        padding: 0 16px 16px;
    }

    #wrapper h2 {
        width: auto;
        bottom: 46px;
    }
}

@media (max-width: 580px) {

    #wrapper h1,
    #wrapper h3 {
        font-size: 23px;
    }

    #wrapper .position {
        position: static;
        width: auto;
    }
}