@charset "utf-8";
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ubuntu-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: url('../fonts/ubuntu-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/ubuntu-v20-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/ubuntu-v20-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/ubuntu-v20-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/ubuntu-v20-latin-300.svg#Ubuntu') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ubuntu-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: url('../fonts/ubuntu-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/ubuntu-v20-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/ubuntu-v20-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/ubuntu-v20-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/ubuntu-v20-latin-500.svg#Ubuntu') format('svg'); /* Legacy iOS */
}
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 300 1em/1.3em 'Ubuntu', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 675px;
  margin: 1rem auto;
  border: solid 2px #000;
  background: url('../images/bgb.jpg') no-repeat bottom right, #fff;
  overflow: hidden;
}
#wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 303px;
  height: 92%;
  background: #126031;
}
p {
  padding-bottom: 0.8rem;
  text-align: justify;
}
h2, strong {
  font-weight: 500;
}
h1 {
  font-weight: 400;
  font-size: 1.8em;
  line-height: 1.1;
  margin: 0.45rem 0 1.25rem;
  text-align: center;
  color: #136132;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
:is(a:link,a:hover,a:visited,a:active){
  color: #fff;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.5rem;
  list-style: none;
}
li {
  padding-left: 1.1rem;
}
ul li:before {
  content: "•";
  font-size: 1em;
  float: left;
  margin: 0px 0 0 -0.6rem;
}
.button a{
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  background: #fff;
  color: #126031;
  font-weight: 500;
  margin-top: 1rem;
}
main {
  padding: 0.6rem 0.5rem;
  width: 352px;
}
header{
  position: absolute;
  right: 0;
  top: 0;
}
article section {
  position: absolute;
  width: 303px;
  top: 214px;
  right: 0;
  background: #136132;
  padding: 0.75rem 0.75rem 0;
}
figure {
  margin: -1.5rem 0 0;
  display: flex;
  justify-content: flex-end;
}
article section :is(p,h2) {
  color: #fff;
}
footer {
  position: absolute;
  bottom: 6px;
  right: 33px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:674px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    background: #fff;
    height: auto;
  }
  p {
    text-align: left;
  }
  main {
    width: auto;
    padding: 1rem;
  }
  .button{
    text-align: center;
  }
  header{
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  article section {
    position: static;
    width: auto;
    background: #126031;
    margin: 0 -1rem;
    padding: 1rem 1rem 0.5rem;
  }
  figure {
    margin: 0 0 0.6rem;
    display: flex;
    justify-content: center;
  }
  article section :is(p,h2) {
    color: #fff;
  }
  footer {
    position: static;
    padding: 0.5rem;
  }
  p a {
    display: inline-block;
  }
  :is(li, h1) br, #wrapper:before {
    display: none;
  }
}
@media only screen and (max-width:480px) {
  ul li:before{
    margin-left: -1.1rem;
  }
}