@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0 0 2.5rem;
    font-size: 1.636em;
    line-height: 1.1em;
}
h1 :is(span, small) {
    display: inline-block;
}
h1 small {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h2 + p {
    padding-bottom: 2.5rem;
}
h1, h2 {
    color: #215E99;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #215E99;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 0.875rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.875rem;
}
@-webkit-keyframes slidy {
    0% { left: 0%; }
    25% { left: 0%; }
    50% { left: -100%; }
    75% { left: -100%; }
    100% { left: -200%; }
}

@keyframes slidy {
    0% { left: 0%; }
    25% { left: 0%; }
    50% { left: -100%; }
    75% { left: -100%; }
    100% { left: -200%; }
}
header { overflow: hidden; }
header figure img { width: 33.333333%; float: left; }
header figure { 
  position: relative;
  width:300%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 18s;
  -webkit-animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation: 18s slidy infinite; 
}
main {
    padding: 2rem 4rem;
}
footer {
    position: absolute;
    right: 4rem;
    bottom: 2.75rem;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article p:last-of-type {
        text-align: center;
        padding-bottom: 1.25rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 780px) {
    main {
        padding: 1.5rem 2rem;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
}