@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow: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: #231F20;
    font-family: "Barlow", sans-serif;
    font-size: 1em;
    line-height: 1.4;
}
#wrapper {
    position: relative;
    max-width: 633px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0;
    font-size: 2.05em;
    line-height: 1.1;
    color: #014E9B;
}
h1 + p {
    color: #014E9B;
    font-size: 1.08em;
    border-bottom: 3px solid #014E9B;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}
h1 span {
    font-size: 1.08rem;
}
h2 {
    font-size: 1.35em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 0.75rem;
    line-height: 1.8;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    margin-top: -8px;
    margin-left: -0.75rem;
}
article {
    padding: 0.8rem 0.7rem;
}
footer {
    margin: 0 0.7rem;
    border-top: 2px solid #231F20;
    padding: 0.3rem 0.75rem 0 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
article > p:first-of-type {
    font-size: 1.167em;
    line-height: 1.3;
}
.qr p {
    text-align: right;
}
.qr {
    position: absolute;
    bottom: 64px;
    right: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media only screen and (max-width:632px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    i br {
        display: none;
    }
    .qr {
        position: static;
        align-items: center;
        padding-top: 1rem;
    }
    .qr p, footer p {
        text-align: center;
    }
    p {
        text-align: left;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    span {
        display: inline-block;
    }
}