@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.938em/1.3em "Segoe UI", Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 890px;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat bottom;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 2.3em;
    line-height: 0.8em;
}
h1 small {
    font-size: 0.65em;
    font-weight: normal;
}
:is(h1, h2) {
    color: #B81E2B;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3;
    font-weight: normal;
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 0.7rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0.3rem 16px;
}
ul li:before {
    content: "\25a0";
    font-size: 0.6em;
    margin: 0 0 0 -16px;
    float: left;
    color: #B81E2B;
}
header {
    position: relative;
}
header p {
    color: #B81E2B;
    font-size: 0.8em;
    line-height: 2;
    width: 22%;
    position: absolute;
    left: 3.5rem;
    bottom: -9rem;
}
header:before {
    content: '';
    position: absolute;
    bottom: -8.5rem;
    left: 5%;
    width: 1px;
    height: 7%;
    background: #B81E2B;
}
header:after {
    content: '';
    position: absolute;
    bottom: -137px;
    left: 5%;
    width: 68px;
    height: 1px;
    background: #B81E2B;
}
article {
    margin: -10rem 1rem 2rem 18rem;
    position: relative;
}
.benefits {
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 93%;
}
.benefits span {
    background: #B81E2B;
    color: #fff;
    padding: 0.3rem;
    margin: 0 0.1rem 0.6rem 0;
    display: inline-block;
}
.qrcode {
    padding-top: 1rem;
}
footer {
    position: absolute;
    left: 2rem;
    bottom: 3rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:889px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header p {
        position: static;
        width: auto;
        min-height: 150px;
        padding: 1rem 5% 1rem 30%;
        margin: -19% 0 2rem;
    }
    header:before, header:after {
        display: none;
    }
    article {
        margin: 0 2rem;
    }
    footer {
        position: static;
        padding: 1rem 2rem 3rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .benefits {
        width: 100%;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:740px) {
    header p {
        min-height: 110px;
    }
}
@media only screen and (max-width:480px) {
    header p {
        height: auto;
        padding: 1rem;
        margin: 0;
    }
    article {
        margin: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 3rem;
    }
}