@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #242021;
  font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff;
  overflow: hidden;
  padding: 1rem 1.5rem 0;
}
p {
  padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
  margin: 0 0 0.5rem;
  font-size: 1.625em;
  line-height: 1.1em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
h3 {
  font-size: 1.54em;
  line-height: 1;
}
h4 {
  font-size: 1.4em;
  line-height: 1.2;
  text-align: right;
  color: #fff;
  position: absolute;
  bottom: 1.625rem;
  left: 17.5rem;
}
h2, ul {
  font-size: 0.9em;
  line-height: 1.3;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 0.625rem;
}
li:before {
  content: "•";
  float: left;
  margin: -1px 0 0 -0.625rem;
}
li span, footer p{
  color: #ED1C24;
}
header .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
header figure {
  margin: 0 -1.5rem;
}
header figure img {
  display: block;
}
header p {
  font-size: 1.5em;
  line-height: 1.3;
  padding: 0;
}
header strong, h1 {
  color: #003D68;
}
main {
  background: #E2F4FD url('../images/bg.jpg') bottom left no-repeat;
  padding: 0.5rem 0.75rem;
}
article section {
  position: relative;
}
.absolut {
  position: absolute;
  top: 0;
  right: 0;
}
.qrc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0.75rem 1rem;
}
footer p {
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: bold;
  position: absolute;
  bottom: 1rem;
  right: 2.5rem;
}
footer img {
  vertical-align: middle;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  p span, a {
    white-space: nowrap;
  }
  h4 {
    padding: 0.5rem;
    background: #003D68;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    position: static;
  }
  main {
    background-image: none;
  }
  article :is(p, li) br {
    display: none;
  }
  .qrc {
    padding: 0.5rem;
    background: #fff;
    width: fit-content;
    margin: 0 auto;
  }
  .qrc img {
    display: block;
  }
  .absolut, footer p {
    position: static;
  }
  footer p{
    text-align: center;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 480px) {
  #wrapper {
    padding: 1rem;
  }
  h1 {
    font-size: 1.375em;
  }
  h3 {
    text-align: center;
  }
  header .flex {
    flex-direction: column;
    align-items: center;
  }
  header p {
    text-align: center;
  }
  header figure {
    margin: 0 -1rem;
  }
  .qrc {
    flex-direction: column;
    align-items: center;
  }
  footer p {
    font-size: 1.1em;
  }
}