@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: 585px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #FFF url('../images/bg.jpg') no-repeat center top 222px;
    overflow: hidden;
    padding: 0;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 3.9em;
    line-height: 1;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.8em;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1rem;
}
h2 span {
    color: #F1EB23;
}
h3 {
    font-size: 1.7em;
    line-height: 1.3;
    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;
}
main {
    display: block;
    border: 8px solid #000;
    padding: 1rem 1rem 0;
}
.text {
    font-size: 1.2em;
    line-height: 1.3;
    margin: 0 0 1rem 3.25rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.flex .box {
    display: flex;
    align-items: center;
    gap: 0 2rem;
    gap: 0.5rem;
    width: 48%;
}
.flex .box p {
    padding-bottom: 0;
    width: 85%;
}
.flex .box figure {
    width: 45px;
}
.qr {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
}
.bg {
    clip-path: polygon(0% 00%, 100% 0%, 76% 100%, 0% 100%);
    background: #F0EA23;
    width: fit-content;
    margin-left: -1rem;
    padding: 0.75rem 4rem 0.125rem 1rem;
}
footer p {
    font-size: 1.25em;
    line-height: 1.3;
}
footer p a {
    position: relative;
    z-index: 999;
}
figure {
    margin: 0;
}
@media only screen and (max-width:584px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    main {
        border: none;
    }
    .text {
        margin-left: 0;
    }
    .qr {
        position: static;
        justify-content: center;
        margin-bottom: 1rem;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    .flex {
        flex-direction: column;
    }
    .flex .box {
        width: auto;
    }
    h1 {
        font-size: 2.7em;
    }
    .flex figure {
        flex: 1;
    }
}