@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: 1.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.692em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
h1, h2, ul li::before {
    color: #0070a6;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
ul li:before {
    content: "\203A";
    font-size: 1.25em;
    float: left;
    margin: -5px 0 0 -1.5rem;
}
.logo, main {
    padding: 1rem 2rem;
}
@-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; 
}
hr {
    border: none;
    border-bottom: 1px solid #0070a6;
    margin: 0 0 1.5rem;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p:last-of-type {
    padding-bottom: 0.625rem;
}
.width {
    width: 80%;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p span {
        display: inline-block;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
    .width {
        width: auto;
    }
}
@media only screen and (max-width: 480px) {
    .logo, main {
        padding: 1rem;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
}