:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff url('../images/background.jpg') no-repeat right bottom;
    background-size: 100% 67%;
}

header {
    position: relative;
}

.logo_header {
    position: absolute;
    z-index: 3;
    right: 20px;
    top: 40px;
}

article {
    padding: 25px 50px 5px;
}

footer {
    padding: 0 50px 30px;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 20px 0 10px;
    padding: 0 0 0 45px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #bed62f;
    background: url('../images/icon.jpg') no-repeat 8px 2px;
}

h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.box {
    background: #113055;
    color: #fff;
    padding: 16px 16px 20px;
    margin-bottom: 20px;
}

.flex {
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #fff;
    gap: 10px;
    flex-wrap: wrap;
}

.logo {
    margin-bottom: 15px;
}

footer p {
    font-size: 20px;
    line-height: 24px;
}

.box p {
    margin: 0;
    font-size: 20px;
    line-height: 25px;
}

.qrcode {
    display: flex;
    justify-content: flex-end;
    margin-top: -31px;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
        background-size: 100% 100%;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    h1 {
        padding-left: 27px;
        background: url('../images/icon.jpg') no-repeat 0 2px;
    }

    article {
        padding: 16px;
    }

    .qrcode {
        margin: 0 0 15px;
    }

    footer p {
        font-size: 18px;
        line-height: 22px;
    }

    footer {
        padding: 0 16px 15px;
    }
}

@media all and (max-width: 575px) {
    .logo_header {
        top: 20px;
    }
}