@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 1.125em/1.2em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 670px;
    margin: 1rem auto;
    border: solid 2px #8BC63E;
    background-color: #8BC63E;
    overflow: hidden;
}
p {
    padding-bottom: 0.375rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.4em;
    line-height: 1.1em;
}
h2 {
    font-size: 0.8em;
    line-height: 1.3em;
}
: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 1.5rem;
    list-style: none;
}
li {
    text-indent: 0.25rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.25rem;
}
.center :is(h1, p) {
    text-align: center;
}
.pb {
    padding-bottom: 0;
}
.color, .flex :is(p, ul) {
    color: #004990;
}
main {
    padding: 0 2.25rem 1rem;
    margin-top: -2.25rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
}
.flex div {
    width: 31%;
}
.flex :is(p, ul) {
    font-size: 0.78em;
    line-height: 1.25em;
}
.flex+p {
    font-size: 0.875em;
    line-height: 1.3em;
}
.top p {
    font-size: 1.125em;
    line-height: 1.3em;
    padding-bottom: 0.625rem;
}
.pl {
    padding-left: 9rem;
}
.qr {
    width: 165px;
    height: 165px;
    background-color: #DE3D39;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1.35rem;
    bottom: 12rem;
}
.qr p {
    font-size: 0.875em;
    line-height: 1.3em;
}
.hide_d {
    display: none;
}
footer figure {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
footer p {
    font-size: 0.875em;
    line-height: 1.3em;
}
@media only screen and (max-width: 669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    main {
        margin-top: 0;
        padding: 1rem 2rem;
    }
    .pl {
        padding-left: 0;
    }
    .flex {
        display: block;
        padding-bottom: 0;
    }
    .flex div {
        width: auto;
    }
    .qr {
        margin: 1rem auto;
        position: static;
    }
    p span {
        display: inline-block;
    }
    article br, .hide_m {
        display: none;
    }
    article .color+br, .hide_d {
        display: initial;
    }
    footer p {
        text-align: center;
    }
    footer figure{
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
}