@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Catamaran';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/catamaran-v28-latin-regular.eot');
    src: url('../fonts/catamaran-v28-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/catamaran-v28-latin-regular.woff2') format('woff2'), url('../fonts/catamaran-v28-latin-regular.woff') format('woff'), url('../fonts/catamaran-v28-latin-regular.ttf') format('truetype'), url('../fonts/catamaran-v28-latin-regular.svg#Catamaran') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Catamaran';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/catamaran-v28-latin-700.eot');
    src: url('../fonts/catamaran-v28-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/catamaran-v28-latin-700.woff2') format('woff2'), url('../fonts/catamaran-v28-latin-700.woff') format('woff'), url('../fonts/catamaran-v28-latin-700.ttf') format('truetype'), url('../fonts/catamaran-v28-latin-700.svg#Catamaran') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 400 1em/1.3em "Catamaran", Arial, sans-serif;
}
h1, h2, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #e3051a;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 2rem;
}
@-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%; }
}
section {
    overflow: hidden;
    margin-bottom: 2rem;
}
section figure img { width: 33.333333%; float: left; }
section 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; 
}
article {
    padding: 0 2rem;
}
footer {   
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
footer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:780px) {
    article {
        flex-direction: column;
    }
    article div {
        width: auto;
    }
    .banner {
        margin: 0 -2rem 2rem;
    }
    .banner:last-of-type {
        margin-bottom: 0;
    }
}
@media only screen and (max-width:480px) {
    header {
        padding: 1rem;
    }
    article {
        padding: 0 1rem;
    }
    .banner {
        margin: 0 -1rem 1rem;
    }
}