
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v27-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 768px;
    margin: 16px auto;
    border: 1px solid #777;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
}

h1 {
    margin: 12px 0 12px 210px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #0063A6;
}

h2 {
    margin: 12px 0;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    color: #0063A6;
}

h3 {
    margin: 12px 0;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

h4 {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    color: #0063A6;
}

p:not(:last-of-type) {
    margin-bottom: 12px;
}

.logo {
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.qrcode {
    position: absolute;
    bottom: 42px;
    right: 26px;
}

article {
    position: relative;
    padding: 16px;
    background: #fff url('../images/background.jpg') no-repeat center center;
}

footer {
    padding: 9px 16px;
    background-color: #0063A6;
    color: #fff;
    text-align: center;
}

footer a {
    color: #fff;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    margin-top: -3px;
    font-size: 20px;
    line-height: 1em;
    text-indent: -12px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.text {
    text-align: justify;
}

span {
    white-space: nowrap;
}

@media all and (max-width:768px) {
    #wrapper {
        margin: 0;
        padding: 0;
        border: none;
        background-size: auto 100%;
    }

    article {
        background-size: cover;
        background-position: center right;
    }

    h1 {
        margin: 12px 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }

    .text {
        text-align: left;
    }

    .qrcode {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 12px;
    }
}

@media all and (max-width:468px) {
    h4 a {
        white-space: normal !important;
    }
}