@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v49-latin-regular.eot');
    src: url('../fonts/roboto-v49-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v49-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v49-latin-regular.woff') format('woff'), url('../fonts/roboto-v49-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v49-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v49-latin-700.eot');
    src: url('../fonts/roboto-v49-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v49-latin-700.woff2') format('woff2'), url('../fonts/roboto-v49-latin-700.woff') format('woff'), url('../fonts/roboto-v49-latin-700.ttf') format('truetype'), url('../fonts/roboto-v49-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
*,
figure {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #515151;
    font: 400 .875rem/1.5 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 780px;
    margin: 1rem auto;
    border: 0.02rem solid #A7A9A4;
    box-shadow: -0.1rem 0.1rem 1rem #999;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.title {
    background: #038956;
    color: #fff;
    text-align: center;
    margin: 0 -2rem 1rem;
    padding: 1rem;
}
.title p {
    padding-bottom: .5rem;
}
h1 {
    font-size: 1.5rem;
    line-height: 1.1;
}
h2 {
    font-size: 1rem;
    color: #038956;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0 0 .5rem;
}
ul li {
    padding: 0 0 0 1rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}
header {
    border-top: 66px solid #FADF14;
    display: flex;
    justify-content: end;
    padding: 0 2rem 1rem;
}
header a {
    margin-top: -50px;
}
.slider {
    overflow: hidden;
}
.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}
.slider img {
    width: 25%;
    float: left;
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    30% {
        left: 0%;
    }
    33% {
        left: -100%;
    }
    64% {
        left: -100%;
    }
    67% {
        left: -200%;
    }
    97% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
article {
    padding: 1rem 2rem;
}
article section {
    padding: 1rem 1rem 0.5rem;
    background: #D8EEE2;
    margin-bottom: 1rem;
}
article>p:first-of-type {
    text-align: justify;
}
.button {
    display: flex;
    justify-content: center;
}
.button a {
    padding: 0.6rem 2.5rem;
    color: #000;
    background: #FADF14;
    border: 0.1rem solid #FADF14;
    font-weight: 700;
    display: inline-block;
    transition: .2s;
}
.button a:hover {
    background-color: transparent;
    color: #00834d;
}
footer {
    border-top: 1px solid #909090;
    padding: 1rem;
    background: #038956;
}
footer p {
    padding: 0;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width:779px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        justify-content: center;
        padding: 0 1rem 1rem;
    }
    article>p:first-of-type {
        text-align: left;
    }
    .title {
        margin: 0 -1rem 1rem;
    }
    article {
        padding: 1rem;
    }
}