@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: 950px;
    margin: 1rem auto;
    border: 2px solid #EE1D23;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
main {
    display: block;
    background: #E1E2E4 url('../images/bg.jpg') no-repeat bottom right;
    padding: 0.5rem 4.5rem 2rem;
    position: relative;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 400;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 5.5em;
    line-height: 0.95;
    font-weight: 400;
    color: #EE1D23;
    margin-bottom: 1rem;
}
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;
}
.hl {
    font-size: 1.6em;
    line-height: 1.2;
    color: #EE1D23;
}
.tr {
    text-align: right;
}
header {
    display: none;
}
.flex {
    margin: 4rem 0 0.5rem;
}
.flex, .qr {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.qr p, .social {
    font-size: 0.875em;
    line-height: 1.3;
}
.flex, .social {
    margin-left: -3rem;
}
.text {
    width: 100px;
    position: absolute;
    left: 23rem;
    bottom: 13.35rem;
    color: #fff;
    transform: rotate(-10deg);
    line-height: 1.1;
}
.social i {
    color: #57585A;
}
.big {
    font-size: 1.9em;
    line-height: 1.1;
}
article>p {
    font-size: 1.4em;
    line-height: 1.3;
}
footer {
    padding: 1rem 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    color: #333333;
    position: relative;
}
footer:before {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50.5%;
    width: 2px;
    height: 96px;
    background: #57585A;
}
footer figure {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:949px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    main {
        background-image: none;
        padding: 1rem 3rem;
    }
    h2 {
        font-size: 4em;
        line-height: 1.1;
    }
    header {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    .flex, .social {
        margin-left: 0;
    }
    .flex {
        margin-top: 1.5rem;
    }
    .text {
        width: auto;
        background: #EE1D23;
        transform: none;
        padding: 0.5rem;
        margin: 0.5rem 0 1rem;
        position: static;
        hyphens: none;
    }
    article br, footer:before {
        display: none;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center !important;
    }
}
@media only screen and (max-width:768px) {
    main {
        padding: 1rem 2rem;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
    h2 {
        font-size: 2.5em;
        line-height: 1.1;
    }
    .big {
        font-size: 1.6em;
        line-height: 1.3;
    }
}