@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #849085;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1, p {
    text-align: center;
}
h1 {
    margin: 0 0 1rem;
    font: bold 1.75em/1.2 "Times New Roman", Times, serif;
}
h1 span {
    display: block;
    font-size: 0.7em;
}
h1, h2 {
    color: #EF8214;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
li:before {
    content: "•";
    float: left;
    font-size: 1.5em;
    margin: -1px 0 0 -1.25rem;
}
.logo {
    padding: 1.625rem 3rem;
    background: #EF8214;
}
.logo img {
    width: 130px;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    11% {
        left: 0%;
    }
    16% {
        left: -100%;
    }
    28% {
        left: -100%;
    }
    33% {
        left: -200%;
    }
    45% {
        left: -200%;
    }
    50% {
        left: -300%;
    }
    62% {
        left: -300%;
    }
    67% {
        left: -400%;
    }
    78% {
        left: -400%;
    }
    83% {
        left: -500%;
    }
    95% {
        left: -500%;
    }
    100% {
        left: -600%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    11% {
        left: 0%;
    }
    16% {
        left: -100%;
    }
    28% {
        left: -100%;
    }
    33% {
        left: -200%;
    }
    45% {
        left: -200%;
    }
    50% {
        left: -300%;
    }
    62% {
        left: -300%;
    }
    67% {
        left: -400%;
    }
    78% {
        left: -400%;
    }
    83% {
        left: -500%;
    }
    95% {
        left: -500%;
    }
    100% {
        left: -600%;
    }
}
header section {
    overflow: hidden;
}
header section figure img {
    width: 14.28571428571429%;
    float: left;
}
header section figure {
    position: relative;
    width: 700%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-duration: 24s; 
    -webkit-animation-name: slidy; 
    -webkit-animation-delay: 4s; 
    -webkit-animation-iteration-count: infinite;
    animation: 24s slidy infinite;
}
article {
    padding: 1.5rem 4rem 2rem;
}
footer {
    padding: 1rem;
    background: #EF8214;
}
footer p {
    color: #fff;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        hyphens: auto;
    }
    span {
        display: inline-block;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:780px) {
    article {
        padding: 2rem;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 0.875em;
    }
    li {
        padding-left: 1.25rem;
    }
    article {
        padding: 1rem;
    }
}