@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.6 "Poppins", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p :is(a, span) {
    white-space: nowrap;
}
p {
    padding-bottom: 1rem;
}
h2, h3, h4, .color {
    color: #0166B3;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 2.1em;
    line-height: 1.2;
    font-weight: 400;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3;
    font-weight: 600;
}
h3 {
    font: 400 1.7em/1.1em "Cambria", 'Georgia', "Times New Roman", Times, serif;
    text-align: center;
}
h4 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.7rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #0166B3;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    color: #0166B3;
    max-width: 630px;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 413px;
}
.right {
    width: 447px;
}
.left ul li:last-of-type {
    padding-right: 0.9rem;
}
.box-bg {
    background: #E4EEF8;
    padding: 1rem 1rem 0;
    margin-top: 1rem;
    border-radius: 10px;
}
.top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.qrcode {
    position: relative;
    margin-top: -7.5rem;
    width: 384px;
}
.qr {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
}
.qr .box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.qr .box p {
    font-size: 0.8em;
    line-height: 1.3;
}
main {
    padding: 1rem 2rem;
    position: relative;
}
.circle {
    background: #0166B3;
    color: #fff;
    padding: 2.5rem 1rem;
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 1.3;
    transform: rotate(-4deg);
    position: absolute;
    right: 10rem;
    top: -1.5rem;
}
footer p {
    padding-top: 1.25rem;
    font-size: 0.85em;
    line-height: 1.3;
}
@media only screen and (max-width: 1023px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    li br, .hide_m {
        display: none;
    }
    .text {
        max-width: 100%;
    }
    .left, .right {
        width: 48%;
    }
    .circle {
        position: static;
        margin: 0 auto 2rem;
    }
}
@media only screen and (max-width:880px) {
    main {
        padding: 1rem 0;
    }
    .qrcode {
        margin-top: 2rem;
        width: 100%;
    }
    .qr {
        justify-content: center;
    }
    h4, footer p {
        text-align: center;
    }
}
@media only screen and (max-width:780px) {
    .top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .box-bg {
        margin-top: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    .qr {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }
}