@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 780px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.link{
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2em;
    line-height: 1;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
12.5% { left: 0%; }
25% { left: -100%; }
37.5% { left: -100%; }
50% { left: -200%; }
62.5% { left: -200%; }
75% { left: -300%; }
87.5% { left: -300%; }
100% { left: -400%; }
}

@keyframes slidy {
0% { left: 0%; }
12.5% { left: 0%; }
25% { left: -100%; }
37.5% { left: -100%; }
50% { left: -200%; }
62.5% { left: -200%; }
75% { left: -300%; }
87.5% { left: -300%; }
100% { left: -400%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 20%; float: left; }
.slider figure { 
  position: relative;
  width:500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 20s;
  -webkit-animation-delay: 3s;
  -webkit-animation-iteration-count: infinite;
  animation: 20s slidy infinite; 
}
.logo{
    position: absolute;
    right: 5rem;
    top: 30rem;
    z-index: 999;
}
article {
    padding: 2rem 5rem 0;
}
footer {
    padding: 0 5rem 2rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:779px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .logo{
        position: static;
        display: flex;
        justify-content: center;
        padding: 1.5rem;
    }
}
@media only screen and (max-width:768px) {
    article, footer {
        padding-inline: 2rem;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-inline: 1rem;
    }
    h1{
        font-size: 1.7em;
    }
}