@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 1em/1.2em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #005285;
    overflow: hidden;
    padding: 3rem 1.5rem 0;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0 0 0.7rem;
    font-size: 2.938em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.55em;
    font-weight: 400;
    display: inline-block;
}
h2, h4 {
    color: #00AEEF;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font: 700 6.375em/0.9em 'Times New Roman', Times, serif;
    margin-bottom: 2.5rem;
}
h4 {
    font-size: 3em;
    line-height: 1em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: " ●";
    font-size: 0.7em;
    float: left;
    margin: -1px 0 0 -1rem;
}
.width {
    width: 65%;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0 2rem;
}
.left, .right {
    width: 31.5%;
}
.last{
    width: 31%;
}
.flexbox p {
    padding-bottom: 0.25rem;
}
.qrcode {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.qrcode p {
    padding-bottom: 0.3rem;
    line-height: 1.2;
}
.qrcode figure {
    margin-top: 0.3rem;
}
figure {
    margin: 0;
}
footer {
    padding: 2.25rem 1.5rem;
    margin: 1.75rem -1.5rem 0;
    background-color: #fff;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(h1,h3) br {
        display: none;
    }
    h3 {
        font-size: 4.25em;
        line-height: 1em;
    }
    .width {
        width: auto;
    }
    article>p {
        width: auto;
    }
    footer {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 780px) {
    h3 {
        font-size: 3.5em;
    }
    h1 {
        font-size: 2em;
        line-height: 1.1em;
        margin: 1rem 0;
    }
    .left,.right, .last {
        width: 100%;
    }
    .qrcode {
        width: 100%;
        padding-bottom: 1rem;
        align-items: center;
        justify-content: center;
    }
    br {
        display: none;
    }
    .flexbox, .qrcode {
        flex-direction: column;
    }
    .qrcode :is(h2, p) {
        text-align: center;
    }
    figure {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 600px) {
    .qr {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    .qr :is(h2, p) {
        text-align: center;
    }
    .qr div img {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem 1rem 0;
    }
    h3 {
        font-size: 2.5em;
    }
    h4 {
        font-size: 2em;
    }
    h1 {
        font-size: 1.75em;
    }
    footer {
        padding: 1rem;
    }
}