@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 590px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #C71246;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
p, h1 {
    text-align: center;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.45em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #C71246;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin: 0 0 1rem -1.5rem;
    padding: 0.35rem 1.5rem;
    background: #C71648;
    color: #fff;
    width: fit-content;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 1rem 3rem;
    position: relative;
    font-size: 0.85em;
    line-height: 1.4;
    background: #fff url('../images/icon1_bg.jpg') no-repeat 0 2px;
}
ul:nth-of-type(2) li {
    background-image: url('../images/icon2_bg.jpg');
}
ul:nth-of-type(3) li {
    background-image: url('../images/icon3_bg.jpg');
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.logo {
    padding: 1rem 1.5rem;
    width: 134px;
    background: #fff;
}
.intro {
    color: #fff;
    position: absolute;
    left: 8.5rem;
    top: 0.75rem;
    width: 443px;
}
article {
    background: #fff;
    padding: 1.5rem 1.5rem 0;
}
footer {
    padding: 1rem 1rem 0;
}
footer p {
    color: #fff;
}
figure {
    margin: 0;
}
@media only screen and (max-width:589px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        white-space: nowrap;
    }
    br {
        display: none;
    }
    .logo {
        display: flex;
        justify-content: center;
        width: auto;
    }
    .intro {
        position: static;
        width: auto;
        background: #C71246;
        margin: 0 -1rem 1rem;
        padding: 1rem 1rem;
    }
    article {
        padding: 0 1rem;
    }
}