@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Calibri, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.2;
}
#wrapper {
    position: relative;
    max-width: 559px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #2C81AF;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.4rem;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 2.1em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.18em;
    line-height: 1.3;
    margin-bottom: 0;
}
h3 {
    font-weight: 400;
    font-size: 1.57em;
    line-height: 1.2;
    position: relative;
}
h3::before {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 127px;
    height: 2px;
    background: #fff;
}
h3::after {
    content: "";
    position: absolute;
    bottom: 14px;
    right: 0;
    width: 127px;
    height: 2px;
    background: #fff;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 0.25rem;
    list-style: none;
}
li {
    padding-left: 0.75rem;
    padding-top: 0.25rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 1px;
    margin-left: -0.75rem;
}
.logo {
    text-align: right;
    padding: 1.25rem;
}
.title {
    background: #2C81AF;
    color: #fff;
    margin: 0 -1.5rem 0.75rem;
    padding: 1rem 1.5rem;
}
article {
    padding: 0.5rem 1.5rem;
}
h4, h4 + p, .title {
    text-align: center;
}
h4 {
    font-size: 1.68em;
    line-height: 1.2;
    border-bottom: 2px solid #2C81AF;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}
footer {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p {
    text-align: right;
    padding-bottom: 0;
}
footer p strong {
    color: #2C81AF;
    font-size: 1.15em;
}
.qr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media only screen and (max-width:558px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    article, footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    h3::before, h3::after {
        display: none;
    }
    h1 {
        font-size: 1.7em;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    footer p {
        text-align: center;
    }
}