@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font: 1em/1.3em "Asap Condensed", Arial, sans-serif;
  word-spacing: 1px;
}
h1, h2, h3, h4, strong {
  font-weight: 600;
}
#wrapper {
  position: relative;
  max-width: 700px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #404041;
  background: #404041 url('bg.jpg') top right no-repeat;
  overflow: hidden;
  padding: 2rem 1.5rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  font-size: 1.5em;
  line-height: 1.1em;
  margin-bottom: 0.5rem;
}
h1 span {
  display: block;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
}
h2 {
  font-size: 1.375em;
  line-height: 1.3em;
  margin-bottom: 0;
}
h3 {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 1rem;
}
h3 + p {
    font-size: 1.25em;
    line-height: 1.3;
    padding-bottom: 2rem;
    font-weight: 300;
}

h3 + p strong {
    font-size: 1.1875em;
    line-height: 1.3;
}
h2, h3 {
  width: fit-content;
  padding: 0.25rem 0.75rem 0.25rem 1.5rem;
  margin-left: -1.5rem;
  background: #fff;
  color: #404041;
}
h4 {
  font-size: 1.375em;
  line-height: 1.3;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
header {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
hr {
  margin-bottom: 1rem;
  border: 1px solid #fff;
}
.flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.25em;
  line-height: 1.3;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.flex p {
  padding-bottom: 0.5rem;
}
.qrc {
  position: absolute;
  top: 7rem;
  left: 18.5rem;
}
footer p {
  font-size: 1.1875em;
  line-height: 1.3;
  padding: 0;
}
@media only screen and (max-width:699px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    background-image: none;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
  .qrc {
    position: static;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
  }
  header {
    padding: 1rem;
    background: #fff;
    display: flex;
    justify-content: center;
    position: static;
    margin-bottom: 1rem;
  }
}