:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v28-latin-regular.eot');
    src: url('../fonts/noto-sans-v28-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v28-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v28-latin-700.eot');
    src: url('../fonts/noto-sans-v28-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-700.woff') format('woff'), url('../fonts/noto-sans-v28-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-700.svg#NotoSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 15px;
    line-height: 1.4;
    font-family: 'Noto Sans', Arial, sans-serif;
    color: #1D1B1C;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #1D1B1C;
    overflow: hidden;
    background: #fff url('../images/background.jpg') no-repeat right 599px;
    background-size: 268px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 0 1rem 15px;
}

.logo p {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

h1 {
    margin: 11px 0 20px;
    font-size: 23px;
    line-height: 25px;
    font-weight: 700;
}

p:not(:last-of-type) {
    margin-bottom: 16px;
}

p.margin {
    padding: 38px 0 30px;
}

article {
    padding: 30px 85px;
}

.link {
    color: #0563C1 !important;
    text-decoration: underline !important;
}

header {
    padding: 50px 0 0;
}

footer {
    padding: 0 85px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

footer p {
    text-align: right;
    margin-bottom: 10px;
}

.color {
    color: #22AD4A !important;
}

footer .color {
    display: block;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

span {
    white-space: nowrap;
}

.padding {
    padding-right: 195px;
}

@media (max-width: 928px) {
    #wrapper {
        margin: 0;
        border: none;
        background: #fff;
    }

    article {
        padding: 1rem;
    }

    .padding {
        padding-right: 0;
    }

    article .qrcode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 1rem 0;
    }

    h2 {
        margin: 0 0 16px;
    }

    header {
        padding: 1rem 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p.margin {
        padding: 1rem 0;
    }

    br:not(footer br) {
        display: none;
    }

    footer {
        padding: 0 16px 16px;
    }
}

@media all and (max-width:478px) {
    h2 {
        font-size: 20px;
    }

    h2 em {
        font-size: 17px;
    }

    article .qrcode {
        width: 100%;
        margin-bottom: 24px;
    }

    h2 {
        margin: 16px 0;
    }
}

@media all and (max-width:375px) {
    h2 {
        margin: 32px 0;
    }
}