@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3C3C3C;
    font: 1em/1.5 Arial, sans-serif;
    background: #EDEDEB url("../images/bg.jpg") no-repeat fixed;
    background-size: cover;
}
#wrapper {
    position: relative;
    max-width: 790px;
    margin: 1rem auto;
    background-color: #fff;
    box-shadow: 0px 0px 25px -12px rgba(0,0,0,0.5);
    overflow: hidden;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0;
    padding: 1.5rem 0;
    font-size: 2em;
    line-height: 1.3;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    padding: 1.125rem 0 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0.125rem 1.25rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: -6px 0 0 -1.25rem;
}
.logo {
    padding: 1.5625rem 3.75rem;
    display: flex;
    justify-content: flex-start;
}
.logo img {
    display: block;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}
.slider { overflow: hidden; }
.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: 30s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 30s slidy infinite; 
}
h1, h2, a.color {
    color: #28A144;
}
main {
    padding: 3.4375rem 3.75rem 2.5rem;
}
.link a {
    display: inline-block;
    background-color: #28A144;
    padding: 0.625rem 1.25rem;
    color: #fff !important;
    margin: 1.25rem auto 0.9375rem;
}
@media only screen and (max-width: 789px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    main {
        padding: 2rem;
    }
    .logo {
        padding: 1.5rem 2rem;
        justify-content: center;
    }
    h1 {
        font-size: 1.75em;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    .logo, main {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
}