@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #666666;
    font: 0.875em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.75rem;
    padding-bottom: 1rem;
    font-size: 2.563em;
    line-height: 1.1em;
    font-weight: 400;
    position: relative;
}
h1::before {
    content: "";
    width: 85px;
    height: 3px;
    background-color: #F8AC1C;
    position: absolute;
    bottom: 0;
    left: 0;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}
h1, h2 {
    color: #2A5D9B;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #2A5D9A;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -1px 0 0 -1rem;
}
ul:last-of-type {
    padding-bottom: 1.75rem;
}
header {
    position: relative;
}
header img {
    display: block;
}
.qr {
    position: absolute;
    bottom: -50px;
    right: 60px;
}
main {
    padding: 2.875rem;
}
article > p:first-of-type {
    font-size: 1.313em;
    line-height: 1.3;
    padding-bottom: 0;
}
.pd {
    padding: 0 3rem 0.75rem 0;
}
article > p:last-of-type {
    margin-right: -0.5rem;
}
footer {
    margin: 0 -1.5rem;
    display: flex;
    justify-content: flex-end;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article > p:last-of-type {
        margin-right: 0;
    }
    footer {
        justify-content: center;
    }
    a br {
        display: none;
    }
    p a {
        display: inline-block;
    }
    .pd {
        padding-right: 0;
    }
}
@media only screen and (max-width: 780px) {
    main {
        padding: 2rem;
    }
    .qr {
        right: 1rem;
        bottom: -1rem;
    }
    h1 {
        font-size: 2em;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
    .qr {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem 1rem 0;
    }
    h1 {
        font-size: 1.75em;
    }
    li {
        padding-left: 1rem;
    }
}