@charset "utf-8";
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-slab-v24-latin-600.eot');
    src: local(''),
        url('../fonts/roboto-slab-v24-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-slab-v24-latin-600.woff2') format('woff2'),
        url('../fonts/roboto-slab-v24-latin-600.woff') format('woff'),
        url('../fonts/roboto-slab-v24-latin-600.ttf') format('truetype'),
        url('../fonts/roboto-slab-v24-latin-600.svg#RobotoSlab') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #4F4E4C;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2 {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 0.35rem -2rem;
    padding: 0.25rem 0.5rem 0.25rem 2rem;
    border-bottom-right-radius: 5px;
    font-size: 1.75em;
    line-height: 1.1;
    background: #CC1E40;
    color: #fff;
}
h1 span {
    font-size: 1.125rem;
    text-transform: none;
}
h2 {
    font-size: 1.725em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
h3 {
    font-size: 1.063em;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}
h3 span {
    color: #CC1E40;
    font-weight: 700;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 2.5rem;
    background: #fff url('../images/icon_bg.jpg') no-repeat 0 2px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 2rem;
}
article {
    padding: 0 2rem;
}
.hl {
    font-family: 'Roboto Slab', Arail, sans-serif;
    background: #E6DCC9;
    margin: 0 -2rem 1rem;
    padding: 0.25rem 2rem;
    text-align: center;
    font-style: italic;
    color: #CB1E3F;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-right: -1rem;
}
.left, .right {
    width: 48%;
}
footer {
    padding: 0;
}
figure {
    margin: 0;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    header, article {
        padding-inline: 1rem;
    }
    .flex {
        flex-direction: column;
        margin: 0;
    }
    .left, .right {
        width: 100%;
    }
    .left ul {
        padding-bottom: 0;
    }
    .hide_m {
        display: none;
    }
}