@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.25em/1.3 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 640px;
    margin: 1rem auto;
    border: solid 4px #1A242C;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}
h1 {
    margin: 1rem -1rem;
    padding: 0.75rem 1rem;
    font-size: 1.25em;
    line-height: 1.3;
    background-color: #3CBDE9;
}
h1 small {
    font-size: 0.7em;
    display: inline-block;
}
h1 span {
    font-size: 0.9em;
    font-style: italic;
    line-height: 1.3;
    display: block;
    font-weight: 400;
}
h2 {
    font-size: 1.563em;
    line-height: 1.2;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0.75rem 1.125rem 0.75rem 0.75rem;
    background-color: #283A47;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
article {
    padding: 0.75rem 1rem;
    position: relative;
}
article::before {
    content: "";
    width: 100%;
    height: 71px;
    background: #3CBDE9;
    position: absolute;
    left: 0;
    bottom: 43px;
}
.red {
    background-color: #EE2025;
    padding: 0.625rem 1rem;
    font: 400 1.1em/1.3 Arial, sans-serif;
    width: 309px;
}
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}
.right {
    text-align: right;
}
.qr {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.qr p {
    font-size: 0.688em;
    line-height: 1.3;
}
.flex1 {
    display: flex;
    justify-content: space-between;
    margin: 0 -0.25rem;
    align-items: center;
    position: relative;
}
.qr p img {
    vertical-align: -6px;
    margin-left: 6px;
}
footer p {
    padding: 0.5rem 0.75rem;
    background-color: #283A47;
    font-size: 1.08em;
    line-height: 1.3;
}
footer p, h2, .red {
    color: #fff;
}
h1, .center {
    text-align: center;
}
@media only screen and (max-width: 639px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .qr br, article::before {
        display: none;
    }
    .flex1 {
        flex-direction: column;
        gap: 1rem;
    }
    .qr {
        gap: 0.75rem;
    }
    .qr p {
        width: calc(100% - 132px);
        font-size: 0.875em;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 539px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
@media only screen and (max-width: 345px) {
    .red {
        width: 290px;
    }
}