@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: url('../images/bg.jpg') top left no-repeat;
  height: 641px;
  overflow: hidden;
}
p {
  padding-bottom: 0.8rem;
}
h1 {
  margin: 0 0 1rem 1rem;
  font-size: 0.875em;
  line-height: 1.3;
  font-weight: 400;
}
h2 {
  font-size: 0.9em;
  line-height: 1.3em;
  margin-bottom: 0.4rem;
}
h3 {
  font-size: 1.5em;
  line-height: 1.3;
  margin-bottom: 1rem;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
  font-size: 0.875em;
  line-height: 1.3;
}
li {
  padding: 0 0 0.25rem 1rem;
}
:is(ul li, h1):before {
  content: "•";
  font-size: 1.35em;
  float: left;
  margin: -3px 0 0-1rem;
}
header {
  display: none;
}
article {
  padding: 4rem 0 0 40rem;
}
.qr {
  position: absolute;
  bottom: 0;
  right: 15rem;
}
.qr p {
  text-align: right;
  font-size: 0.938em;
  line-height: 1.3;
  margin-top: -1.2rem;
}
.qr p span {
  font-size: 1.25em;
  line-height: 1.3;
}
footer {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    background: #65AB75;
    background: -webkit-linear-gradient(left, #93C856, #459781);
    background: -o-linear-gradient(right, #93C856, #459781);
    background: -moz-linear-gradient(right, #93C856, #459781);
    background: linear-gradient(to right, #93C856, #459781);
  }
  header {
    display: block;
  }
  article {
    padding: 1rem 2.1rem;
  }
  .hide_m {
    display: none;
  }
  .qr {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
  footer {
    background: #fff;
    position: static;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: center;
  } 
}
@media only screen and (max-width:616px) {
  article {
    padding: 1rem 3.7%;
  }
}