@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;
  text-align: center;
}
#wrapper {
  position: relative;
  max-width: 770px;
  height: 571px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: url('../images/bg.jpg') top left no-repeat, #fff;
  overflow: hidden;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75em;
  line-height: 1.2em;
}
h2 {
  font-size: 3.8em;
  line-height: 0.95em;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #000;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
  text-align: left;
  margin: 0 auto;
  width: fit-content;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "•";
  font-size: 2.8em;
  float: left;
  margin: -2px 0 0 -1.15rem;
  color: #000;
}
header p {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  font-size: 0.75em;
  line-height: 1.8;
}
article {
  padding: 3.7rem 0 0 19rem;
}
footer {
  position: absolute;
  bottom: 4px;
  right: 25px;
}
@media only screen and (max-width:769px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    background: #009EB3;
    height: auto;
  }
  header p {
    position: static;
    padding: 1rem;
  }
  article {
    padding: 0 1rem;
  }
  .hide_m {
    display: none;
  }
  h1 {
    margin: 1rem;
  }
  h2 {
    font-size: 3.3em;
  }
  footer {
    position: static;
    padding: 0 1rem 1rem;
  }
}