@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.25em/1.3 "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 640px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #004260;
    background-color: #004260;
    overflow: hidden;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0;
    padding: 0.375rem 0.5rem;
    font-size: 1.438em;
    line-height: 1.25;
    text-transform: uppercase;
    background-color: #268E86;
}
h1 span {
    font-size: 0.7em;
    display: inline-block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.375rem;
    font-weight: 400;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding-left: 0.875rem;
}
ul li:before {
    content: "\25A0";
    font-size: 0.7em;
    float: left;
    margin: 0 0 0 -0.875rem;
}
:is(article, footer) > p {
    text-align: center;
}
.logo {
    padding: 1.25rem 1.75rem 1rem 1.5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
article {
    padding: 0.375rem 1.5rem 0;
}
.box {
    border: 1px solid #fff;
    padding: 0.25rem 0.5rem 0.375rem;
    position: relative;
    margin-bottom: 1.125rem;
}
.box p:last-of-type {
    padding: 0;
    font-size: 1.05em;
    line-height: 1.3;
}
.qr {
    position: absolute;
    right: 1rem;
    bottom: 6.75rem;
}
footer p {
    padding: 0.5rem 1rem;
    background-color: #268E86;
    font-size: 1.063em;
    line-height: 1.3;
}
@media only screen and (max-width: 639px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .hide_m {
        display: none;
    }
    .logo {
        padding: 1rem;
    }
    article {
        padding: 0.375rem 1rem 0;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .qr {
        position: static;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }
}
@media only screen and (max-width: 450px) {
    .logo {
        flex-direction: column;
        gap: 1rem;
    }
}