@charset "utf-8";
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-regular.woff') format('woff'),
        url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/barlow-v12-latin-500.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-500.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-500.woff') format('woff'),
        url('../fonts/barlow-v12-latin-500.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-500.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/barlow-v12-latin-800.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-800.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-800.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-800.woff') format('woff'),
        url('../fonts/barlow-v12-latin-800.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-800.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #E01520 url('../images/bg.jpg') no-repeat;
    overflow: hidden;
    height: 556px;
}
:is(h1, h2, h4, strong) {
    font-weight: 800;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.7em;
    line-height: 1.1;
    color: #E01520;
    width: fit-content;
}
h1 span {
    font-size: 0.75em;
    font-weight: 400;
    display: block;
    text-align: right;
    color: #000;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
}
h2+p{
    font-weight: 500;
}
h3 {
    font-size: 1.85em;
    line-height: 1;
    font-weight: 400;
    margin-top: -41px;
}
h4 {
    font-size: 2.2em;
    line-height: 1;
    color: #E01520;
}
h4+p{
    font-size: 0.85em;
    line-height: 1.3;
}
.hl {
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: #FFEB00;
    font-weight: 500;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #000;
    height: 3px;
    margin: 1rem 0;
    width: 293px;
}
.box{
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    transform: rotate(-2deg);
}
.box a.link{
    font-weight: 500;
    font-size: 1.125em;
    line-height: 1.3;
    background: #F0DD00;
}
article {
    padding: 0.25rem 1.5rem 0;
}
footer {
    padding: 0 1.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
}
footer p {
    font-size: 0.85em;
    line-height: 1.3;
    color: #fff;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #F6F6F4;
        height: auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h1{
        font-size: 2.3em;
    }
    h1 span{
        text-align: left;
    }
    h3{
        margin-top: 0;
        font-size: 1.6em;
    }
    h4{
        font-size: 1.8em;
    }
    article br{
        display: none;
    }
    article, footer{
        padding-inline: 1rem;
    }
    .box{
        position: static;
        transform: none;
    }
    footer{
        position: static;
        background: #E01520;
        padding-top: 0.5rem;
    }
}