@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.9375em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    min-width: 250px;
    margin: 1rem auto 7rem;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    box-shadow: 3px 3px 11px 2px #939095;
}
strong{
    font-weight: 900;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.692em;
    line-height: 1.1;
}
:is(h1,h3){
    text-align: center;
    color: #009738;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #009738;
    position: relative;
    margin-bottom: 1rem;
}
h2 img{
    position: absolute;
    top: 0;
    left: -4.5rem;
}
h3 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul:first-of-type li:before{
    content: url('../images/icon1.jpg');
}
ul:nth-of-type(2) li:before{
    content: url('../images/icon2.jpg');
}
li {
    padding: 0 0 0 1.5rem;
    margin: 0.25rem 0;
    hyphens: auto;
}
li:before {
    content: "✓";
    font-size: 1.3em;
    float: left;
    margin-left: -1.5rem;
}
.flex-f{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5rem;
    margin-bottom: 1rem;
}
.flex-f p{
    text-align: center;
}
.flex{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.left{
    width: 33%;
}
.right{
    width: 64%;
    padding: 0 2.25rem 0 4.125rem;
}
.logo{
    display: flex;
    justify-content: flex-end;
    margin: 1rem;
}
article {
    padding: 2rem 2.9375rem 1rem;
}
.flex + p {
    padding: 2rem 0;
}
footer{
    color: #FFF;
    background: #009738;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
footer div{
    width: 80%;
}
footer p strong{
    font-weight: 700;
}
footer p:first-of-type {
    padding-top: 1rem;
}
footer p:last-of-type{
    text-align: right;
    padding: 1rem 0 0;
}
footer figure{
    display: block;
    padding: 0.2rem;
    background: #FFF;
}
footer figure img{
    display: block;
}
nav p {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    border-top: 1px solid #FED403;
}
nav p a {
    display: inline-block;
    background-color: #FED403;
    border: 1px solid #FED403;
    padding: 0.5em 1.2em 0.55em;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto 5rem;
        height: auto;
    }
    .logo{
        justify-content: center;
    }
    p{
        text-align: left;
    }
    h1 span{
        display: inline-block;
        margin: 0;
    }
    p {
        text-align: left;
    }
    .flex, .flex-f, footer{
        flex-direction: column;
    }
    h2{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 0 1rem;
    }
    h2 img{
        position: static;
        display: block;
    }
    .right, .left, footer div{
        width: 100%;
    }
    .right {
        padding: 0;
    }
    footer p:last-of-type{
        text-align: center;
        padding-bottom: 1rem;
    }
    figure{
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
}
@media only screen and (max-width:780px){
    article{
        padding: 1rem 2rem;
    }
}
@media only screen and (max-width:480px){
    article{
        padding: 1rem;
    }
}