@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 812px;
    margin: 16px auto;
    border: 2px solid #3c6590;
    padding: 16px;
    background-color: #fff;
}

header {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

header p {
    line-height: 19px;
    font-size: 16px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.69);
}

article {
    padding: 40px 0 109px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

article>p {
    width: 216px;
    color: #58585a;
    line-height: 25px;
}

.box {
    width: 282px;
}

.qrcode {
    position: absolute;
    bottom: 34px;
    left: 10px;
}

.banner {
    position: absolute;
    top: 30px;
    left: 234px;
    width: 248px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

:is(strong, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px 28px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

h1:before {
    content: '\25A0';
    position: absolute;
    font-size: 15px;
    text-indent: -28px;
}

h2 {
    font-size: 25px;
    line-height: 1.2;
    color: #ef4b24;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 810px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header p {
        font-size: 15px;
    }

    article {
        display: block;
        padding: 16px 0;
    }

    article > p {
        line-height: 22px;
    }

    :is(article >p, .box, .banner) {
        width: 100%;
    }

    .banner {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .mobile {
        max-height: 157px;
    }

    .qrcode {
        position: static;
        justify-content: center;
        display: flex;
        padding: 0 0 16px;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(.center, h1) {
        text-align: center;
    }

    h1 {
        margin-left: 22px;
    }

    h1:before {
        text-indent: -22px;
    }

    article br {
        display: none;
    }
}

@media all and (max-width: 767px) {
    header {
        flex-direction: column;
    }

    header p {
        text-align: center;
        margin: 6px 0 0;
        line-height: 22px;
    }
}