@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 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 1.25rem;
    font-size: 2em;
    line-height: 1.2;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
: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 1rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
ul li:before {
    content: "\00D7";
    font-size: 1.5em;
    float: left;
    margin: -5px 0 0 -1.4rem;
}
ul:last-of-type {
    padding-bottom: 1rem;
}
ul li::before, h1 {
    color: #51AF2F;
}
@-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; 
}
.logo {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 2rem;
}
article {
    padding: 2rem 6.125rem;
}
article p small {
    display: inline-block;
    line-height: 1.25;
}
.pb {
    padding-bottom: 0;
}
.iframe-wrapper {   
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        justify-content: center;
        margin: 1rem;
    }
    article p:last-of-type {
        text-align: center;
    }
}
@media only screen and (max-width: 780px) {
    article {
        padding: 2rem 2rem 1rem;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
    li {
        padding-left: 1.5rem;
    }
}