@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 970px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff url('bg.jpg') top left no-repeat;
  overflow: hidden;
  padding: 7rem 7rem 5rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 2em;
  line-height: 1.1em;
  color: #E4032D;
  text-transform: uppercase;
}
h1 small {
  font-size: 0.7em;
  vertical-align: bottom;
}
h1 span {
  text-transform: uppercase;
  font-weight: normal;
  color: #006839;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 1rem;
  text-decoration: underline;
  font-weight: normal;
}
h3 {
  font-size: 1.5em;
  line-height: 1.3em;
  text-transform: uppercase;
  color: #006839;
  margin-bottom: 2rem;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -3rem;
}
header {
  width: 48%;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex div {
  width: 49%;
}
.mgt {
  margin-top: 4rem;
}
.jus {
  text-align: justify;
}
footer {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 969px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
    background-image: none;
  }
  .jus {
    text-align: left;
  }
  .flex, footer {
    flex-direction: column;
  }
  .mgt {
    margin: 0;
  }
  .flex div, header {
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }
  li {
    padding-left: 1rem;
  }
  ul li:before {
    margin: -1px 0 0 -1rem;
  }
}