@charset "utf-8";
@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-v17-latin-regular.eot');
    src: local(''),
        url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}
@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700.eot');
    src: local(''),
        url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-700.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}
@font-face {
    font-family: 'PT Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700italic.eot');
    src: local(''),
        url('../fonts/pt-sans-v17-latin-700italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-700italic.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-700italic.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-700italic.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-700italic.svg#PTSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0E2A72;
    font: 400 1em/1.3em 'PT Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #0E2A72;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2, h3, strong {
    font-weight: 700;
}
.fwi {
    font-style: italic;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.392em;
    line-height: 1.1;
}
h1, h2 {
    text-transform: uppercase;
}
h1 span {
    font-size: 0.7em;
    font-weight: 400;
    text-transform: none;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
}
h2, h3 {
    color: #5286BD;
}
h3 {
    font-size: 1.2em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: -1.5rem;
    gap: 1rem;
}
.logo {
    margin: -2.5rem 0 0 1.5rem;
}
article {
    padding: 2rem 1.5rem 1rem;
}
footer {
    padding: 1rem 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
    position: relative;
    background: #0E2A72;
}
footer p {
    color: #FFF;
}
.qr {
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.pss {
    position: absolute;
    top: 17.4rem;
    right: 2.7rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .pss{
        position: static;
        text-align: center;
    }
    h3{
        text-align: center;
        margin-top: 1rem;
    }
    article br{
        display: none;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 680px) {
    footer {
        gap: 0 2rem;
        justify-content: center;
    }
    .qr{
        position: static;
        align-items: center;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width: 662px) {
    .qr{
        position: static;
    }
    .qr p{
        text-align: center;
    }
}
@media only screen and (max-width: 480px){
    footer{
        flex-direction: column;
    }
    footer p, h1,h2{
        text-align: center;
    }
}