@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 875px;
    border: solid 1px #000;
    background: #5FAE57;
}
p {
    padding-bottom: 1rem;
}
p img,h2 img{
    vertical-align: -2px;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1em;
    line-height: 1.3em;
}
h1 span{
    font-size: 1.5em;
    text-decoration: underline;
}
h1 small {
    font-size: 0.7em;
}
h2{
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\01F5F8";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
li span{
    display: block;
}
.last li:before{
    content: "◆";
    color: #3F83DA;
    font-size: 0.7em;
}
.checklist li:before{
    display: none;
}
.checklist li{
    padding-left: 25px;
    background: url('../images/checklist.jpg') no-repeat -1px 3px;
}
article {
    padding: 0.7rem 0.7rem 0;
}
.box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.link{
 font-family: Segoe, "Segoe UI", sans-serif;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 1.188em;
  line-height: 1.2;
  background: #fff;
  color: #000;
  margin: 0 2rem 0 -122px;
  height: 95px;
}
footer p{
    padding: 0.7rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:874px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
   
    p :is(span, a) {
        display: inline-block;
    }
    .link{
        margin: 0;
        height: auto;
    }
}