: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: 14px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 1010px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 45px 55px 9px 38px;
    background: #fff url('../images/background.jpg') no-repeat 0 0;
}

header {
    padding: 0 0 18px;
    display: flex;
    justify-content: flex-end;
}

footer {
    padding: 7px 16px;
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    background: #1388b5;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 9px;
    font-weight: 700;
    font-size: 34px;
    line-height: 42px;
    text-align: center;
    color: #1388b5;
}

h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #8f949a;
}

h3 {
    margin: 0 0 24px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
    text-align: center;
    background: #1388b5;
    color: #fff;
}

h4 {
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #1388b5;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 6px 0 48px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    background: url('../images/icon.png') no-repeat 0 2px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.box :is(ul, p, a) {
    color: #1388b5 !important;
}

h3 small {
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

h1 span {
    display: block;
}

h1 small {
    display: block;
    font-size: 14px;
    line-height: 18px;
}

.box {
    padding: 20px 16px 26px 43px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
}

.box::before {
    content: "";
    width: 90%;
    height: 2px;
    background: #cde7f7;
    position: absolute;
    z-index: 3;
    left: 5%;
    top: 10px;
}

.right p {
    text-align: center;
}

.qrcode {
    display: flex;
    justify-content: center;
    margin-bottom: 13px;
}

@media all and (max-width: 1009px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    .box {
        padding: 20px 16px 10px;
    }
}

@media all and (max-width: 767px) {
    #wrapper {
        background: #fff url('../images/background.jpg') no-repeat 0 0;
        background-size: cover;
    }

    header {
        justify-content: center;
    }

    .box {
        display: block;
    }

    ul {
        padding-bottom: 16px;
    }

    .right {
        margin-top: 16px;
    }
}