@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2A384D;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: linear-gradient(90deg, #B6B9BC, #FDFDFD);
    overflow: hidden;
    padding: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1.5rem 1rem;
    padding-left: 1rem;
    font-size: 1.25em;
    line-height: 1.1;
    font-weight: 400;
    position: relative;
}
h1:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
h2 {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    text-align: center;
}
h2 span {
    display: inline-block;
    border-block: 2px solid #2A384D;
    padding: 0.25rem 0;
}
h3 {
    font-size: 1.25em;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.top {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-left: 4rem;
}
.slogan {
    margin-top: -6rem;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    margin: 0 0 1.5rem 1rem;
}
.flex .box {
    width: 102px;
}
.flex figure {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.flex p {
    text-transform: uppercase;
    color: #E2551E;
    text-align: center;
    font-size: 0.75em;
    line-height: 1.3;
}
.qr {
    width: 181px;
    position: relative;
    margin-left: 1rem;
}
.qr a {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 56%;
    height: 77%;
    z-index: 1;
}
.link {
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1.3;
    position: absolute;
    left: 11rem;
    bottom: 0.5rem;
}
footer {
    position: absolute;
    right: 0;
    bottom: 0;
}
.width {
    width: 298px;
    position: relative;
}
.width a {
    position: absolute;
    bottom: 4%;
    right: 4%;
    width: 52%;
    height: 9%;
    z-index: 1;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding-bottom: 0;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .top {
        margin-left: 0;
    }
    .link {
        position: static;
        text-align: center;
    }
    .flex {
        margin-left: 0;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .flex .box {
        width: 150px;
    }
    .qr {
        margin: 1rem auto;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:768px) {
    .slogan {
        margin-top: 1rem;
    }
    br {
        display: none;
    }
    .flex .box {
        width: 100%;
    }
}