@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0074BE;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    border: solid 2px #0075BF;
    background: #fff url('../images/bg.jpg') top 167% center no-repeat;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1em;
    text-transform: uppercase;
}
h1 span {
    font-size: 1rem;
    text-transform: none;
    vertical-align: 6px;
}
article p {
    padding-bottom: 0.5rem;
}
article {
    padding: 0 1rem 0.5rem 2rem;
}
figure {
    padding: 0.25rem;
    background: #fff;
    width: fit-content;
    transform: rotate(-12deg);
    position: absolute;
    top: 12.5rem;
    right: 2rem;
}
figure img {
    vertical-align: middle;
}
.benfit {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    flex-wrap: wrap;
}
.benfit p {
    text-align: center;
    font-size: 0.75em;
    line-height: 1.3;
}
.benfit img {
    display: block;
    margin: 0 auto 0.125rem;
}
footer {
    padding: 0.5rem 2rem;
    background: #0075BF;
}
footer p {
    color: #fff;
}
@media only screen and (max-width:819px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-size: cover;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    figure {
        position: static;
        margin: 0 auto 1rem;
        transform: none;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 0.5rem 1rem;
    }
}