@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #404040;
  font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 905px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
  text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1 {
  margin: 0 0 1.5rem;
  font-size: 1.65em;
  line-height: 1.2;
}
h1 span {
  display: block;
  font-weight: 400;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.2em;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
}
h2, h2 + p, a.color {
  color: #29B6B9;
}
ul {
  padding: 0 0 2rem;
  list-style: none;
}
li {
  padding-left: 1rem;
}
li:before {
  content: "•";
  float: left;
  margin: -1px 0 0 -1rem;
}
header figure {
  position: absolute;
  top: 2rem;
  right: 4rem;
}
header section {
  padding: 2rem 0 2rem 4rem;
  width: 70%;
  border-radius: 0 10rem 10rem 0;
  background: #29B6B9;
}
header section :is(h1, p) {
  color: #fff;
}
header section p {
  padding: 0;
  font-size: 1.25em;
  line-height: 1.3;
}
article {
  padding: 2rem 4rem;
}
article section {
  display: flex;
  justify-content: space-between;
}
article section div {
  width: 48%;
}
footer p {
  color: #7E7E7E;
  position: absolute;
  bottom: 2rem;
  right: 4rem;
}
footer img {
  margin-left: 0.5rem;
}
@media only screen and (max-width:904px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p, li {
    text-align: left;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  p span {
    display: inline-block;
  }
}
@media only screen and (max-width: 780px) {
  header figure {
    position: static;
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  header section {
    padding: 2rem;
    width: fit-content;
  }
  article {
    padding: 2rem;
  }
  article section {
    display: block;
  }
  article section div {
    width: auto;
  }
  footer p {
    right: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  footer p {
    bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  ul {
    padding-bottom: 1rem;
  }
  header section {
    padding: 1rem;
  }
  article {
    padding: 1rem;
  }
  footer p {
    position: static;
    text-align: center;
  }
}
@media only screen and (max-width: 390px) {
  header section {
    border-radius: 0;
  }
}