@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3C3C3C;
    font: 1em/1.3em Arial, sans-serif;
    background: #E4E5E9;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
box-shadow: -0.1rem 0.1rem 1rem #999;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1,h2{
    color: #2AA035;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2em;
    line-height: 1.4;
    margin-bottom: 1rem;
}
h1 span{
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #3C3C3C;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
.slider { overflow: hidden;  margin: 2rem -3rem; }
.slider figure img { width: 25%; float: left; }
.slider figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
a.link{
    background: #2AA035;
    padding: 0.7rem 1rem;
    color: #FFF !important;
}
footer p{
    margin: 1rem 0;
}
p a.color{
    color: #2AA035;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo{
        display: flex;
        justify-content: center;
    }
    h1{
        text-align: center;
    }
    p{
        text-align: left;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
}