@charset "utf-8";
/* mulish-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v18-latin-regular.eot');
    src: url('../fonts/mulish-v18-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mulish-v18-latin-regular.woff2') format('woff2'),
        url('../fonts/mulish-v18-latin-regular.woff') format('woff'),
        url('../fonts/mulish-v18-latin-regular.ttf') format('truetype'),
        url('../fonts/mulish-v18-latin-regular.svg#Mulish') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/mulish-v18-latin-700.eot');
    src: url('../fonts/mulish-v18-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mulish-v18-latin-700.woff2') format('woff2'),
        url('../fonts/mulish-v18-latin-700.woff') format('woff'),
        url('../fonts/mulish-v18-latin-700.ttf') format('truetype'),
        url('../fonts/mulish-v18-latin-700.svg#Mulish') format('svg');
}
:root {
    font-size: 18px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Mulish', Arial, sans-serif;
    background: #E4E5E9;
}
#wrapper {
    position: relative;
    max-width: 760px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 3rem 0;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #2AA035;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.5em;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h1 span {
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    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;
    color: #2AA035;
}
@-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 {
    padding: 0.7rem 1rem;
    border: 1px solid #edc900;
    border-radius: 30px;
    text-transform: uppercase;
}
a.link:hover{
    background: #edc900;
    color: #FFF;
}
footer p {
    margin: 1rem 0;
}
p a.color {
    color: #2AA035;
}
footer {
    border-top: 1px solid #edc900;
    padding-top: 1rem;
}
footer :is(p, h2), h1, .center {
    text-align: center;
}
@media only screen and (max-width:759px) {
    body{
        font-size: 0.9em;}
        line-height: 1.3em;
    #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;
        font-size: 1.5em;
    }
    p {
        text-align: left;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    ul{
        padding-bottom: 1rem;
    }
}