@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #b2b2b2;
    font: 1.125em/1.3em Helvetica, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 740px;
    margin: 1rem auto;
    border: 1px solid #f88222;
    border-top: 10px solid #f88222;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0rem 0rem 1.25rem 2.188rem;
    font-size: 1.875rem;
    line-height: 1.1em;
    font-weight: 900;
}
h1 span {
    font-weight: 700;
}
h1 small {
    font-size: 1.125rem;
    line-height: 1.25;
    display: block;
}
h1::before {
    content: "\25A0";
    float: left;
    font-size: 1.625em;
    margin: -8px 0 0 -2.188rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.3rem;
    font-weight: 400;
}
h1, h2 {
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
h2, h1::before, ul li::before, a.color {
    color: #f88222;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0rem 0rem 1.25rem;
    list-style: none;
}
li {
    padding-left: 1.188rem;
}
ul li:before {
    content: "\25A0";
    font-size: 0.7em;
    float: left;
    color: #f88222;
    margin: -1px 0 0 -1.188rem;
}
@-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; 
}
article {
    padding: 1.875rem 2.5rem 0.625rem;
}
footer p {
    padding: 1.25rem 2.5rem;
    background-color: #f88222;
    color: #fff;
}
@media only screen and (max-width: 739px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article {
        padding: 1rem 2rem 0;
    }
    h1 {
        font-size: 1.625rem;
    }
    footer p {
        padding: 1rem 2rem;
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    article {
        padding: 1rem 1rem 0;
    }
    h1 {
        font-size: 1.4rem;
    }
    
    footer p {
        padding: 1rem;
    }
}