:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v28-latin-regular.eot');
  src: url('../fonts/noto-sans-v28-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v28-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v28-latin-700.eot');
  src: url('../fonts/noto-sans-v28-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-700.woff') format('woff'), url('../fonts/noto-sans-v28-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-700.svg#NotoSans') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Noto Sans', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 750px;
  margin: 16px auto;
  border: 1px solid #000;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  padding: 12px 12px 12px 24px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 400;
  background-color: #174E8E;
  color: #fff;
}

h1 strong {
  display: block;
  text-align: right;
  font-size: 32px;
}

h1 span {
  font-size: 16px;
  display: block;
  font-weight: 400;
}

h2 {
  margin: 0 0 6px 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  margin: 0;
  padding: 0;
}

article {
  padding: 16px 24px;
}

article .qrcode {
  position: absolute;
  bottom: 180px;
  right: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

footer>div:nth-of-type(1) {
  padding: 24px 132px 20px 24px;
  background-color: #4C5051;
  color: #fff;
  font-size: 13px;
  border-bottom: 20px solid #174E8E;
}

.logo {
  position: absolute;
  bottom: 6px;
  right: 24px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 22px;
  list-style: none;
}

ul+h2 {
  margin-top: 42px;
}

ul li {
  padding-left: 18px;
}

ul li:before {
  content: "\2022";
  color: #000;
  float: left;
  margin-top: -3px;
  font-size: 24px;
  line-height: 1em;
  text-indent: -18px;
  font-family: Arial, Helvetica, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@media all and (max-width:750px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  ul+h2 {
    margin-top: 16px;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }

  article {
    padding: 16px;
  }

  article .qrcode {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo {
    position: absolute;
    bottom: 6px;
    right: 16px;
  }
}