@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}
#wrapper {
  position: relative;
  max-width: 800px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #333C8B url('bg.jpg') top left no-repeat;
  overflow: hidden;
}
p {
  padding-bottom: 1rem;
}
p img{
  vertical-align: -3px;
}
h1 {
  margin: -0.75rem 0 0.5rem;
  font-size: 3.25em;
  line-height: 1.25;
}
h1 small {
    font-size: 1.25rem;
    font-weight: normal;
}
h1 span {
  background: #fff;
  color: #22408E;
  padding: 0 0.5rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 0.375rem;
}
h2 {
  margin-bottom: 0.75rem;
}
a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding: 0 0 1rem 2rem;
}
ul li:before {
  content: url('icon.png');
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: 1px;
  margin-left: -2rem;
}
.abs {
  text-align: right;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}
.qrc {
      display: flex;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    width: 47%;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 11.2rem;
    left: 10.4rem;
}
.qrc strong {
    font-size: 1.25em;
    line-height: 1.3;
}
.qrc p {
    flex: 1;
    line-height: 1.2;
}
article {
  padding: 0 2.75rem;
}
.bg {
  display: inline-block;
  padding: 0 0.25rem;
  background: #F05E31;
  border-radius: 0.3rem;
}
.big, h2 {
  font-size: 1.25em;
  line-height: 1.3;
}
.mt{
  position: relative;
  margin-top: -8rem;
}
.flex{
  display: flex;
  justify-content: space-between;
}
.flex div{
  width: 48%;
}
footer {
  padding: 1em 2.75rem;
}
.res{
  display: none;
}
@media only screen and (max-width:799px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    background-image: none;
  }
  p {
    text-align: left;
  }
  h1 {
    font-size: 2em;
  }
  br {
    display: none;
  }
  .abs {
    position: static;
    text-align: center;
  }
  .qrc {
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background: #F15922;
    width: auto;
    position: static;
    margin: 1rem 0;
  }
  header >a:first-of-type{
    display: none;
  }
  article {
    padding: 1rem 1rem 0;
  }
  footer {
    padding: 0 1rem 1rem;
  }
  .res{
    display: block;
  }
  .mt{
    margin-top: 0;
  }
}
@media only screen and (max-width: 780px) {
  .flex{
    flex-direction: column;
  }
  .flex div{
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .qrc{
    flex-direction: column;
    align-items: center;
  }
}