@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v32-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v32-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v32-latin-700.woff') format('woff'),
        url('../fonts/roboto-v32-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 16px;
    line-height: 21px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 880px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 30px;
    background-color: #fff;
}

h1 {
    margin: 16px 0 32px;
    font-size: 31px;
    line-height: 36px;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 18px;
    margin: 33px 0 20px;
    line-height: 22px;

}

h3 {
    font-size: 17px;
    margin: 35px 0;

    line-height: 23px;
    text-align: center;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

p:not(:last-child, .info p, .qr p) {
    margin-bottom: 1rem;
}

article {
    position: relative;
    padding: 17px 10px 0;
}


p span {
    white-space: nowrap;
}


.info {
    padding: 0;
}

.info p {
    position: relative;
    padding-left: 190px;
    margin: 0 0 10px;
}

.info p span {
    position: absolute;
    top: 0;
    left: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 3rem 0 0;
}

footer div {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    font-size: 13px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    text-decoration: underline;
    color: #0000FF;
    white-space: normal;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 21px;
    margin: 0 0 5px;
}

li span {
    display: inline-block;
    width: 192px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 21px;
    line-height: 25px;
    text-indent: -21px;
    margin: -2px 0 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media (max-width:879px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br, .info br) {
        display: none;
    }
}

@media (max-width: 635px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .info p {
        padding-left: 156px;
    }

    ul li:before {
        text-indent: -1.25rem;
    }

    ul li {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .info p {
        padding-left: 0;
    }

    .info p span {
        position: static;
        display: block;
    }

    .info br {
        display: none !important;
    }
}