@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}
@-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;
}
.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;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1, h2 {
    text-transform: uppercase;
}
footer :is(h2, p), h1 {
    text-align: center;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2em;
    line-height: 1.1;
    background: #F18700;
    border-radius: 7px;
    padding: 1rem;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h2.mt {
    margin-top: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "❖";
    float: left;
    margin: 0 0 0 -1.5rem;
}
article {
    padding: 2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 48%;
    padding: 1rem;
    background: #F1EBE3;
    border-radius: 10px;
}
footer {
    background: #2F3138;
    padding: 2rem 1rem;
}
footer :is(h2, p, p a.color) {
    color: #FFF;
}
p a.ins{
    text-decoration: underline;
    color: #F18700;
}
hr {
    border: none;
    background: #2F3138;
    height: 2px;
    width: 100%;
    text-align: center;
    margin: 0.5rem auto 1rem;
}
.logo {
    display: flex;
    justify-content: center;
    margin: 2rem 1rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 1.5em;
    }
    h2.mt{
        margin-top: 0.5rem;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: 100%;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width:780px) {
article {
        padding: 1rem;
    }
}