
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot');
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}


* {
  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;
  }
}