@charset "utf-8";
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: local(''), url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: local(''), url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #EE1D23;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #EE1D23;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
:is(h1, h3) {
    font-weight: 400;
}
h1 {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    font-size: 1.6em;
    line-height: 1.1;
    position: relative;
}
h1:before {
    content: "\2010";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
h1 span {
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.2;
    color: #EE1D23;
}
ul {
    padding: 0 0 0.5rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1.5rem;
    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;
}
.logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}
@-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%;
    }
}
.slider {
    overflow: hidden;
}
.slider figure img {
    width: 33.333333%;
    float: left;
}
.slider 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: 2rem 2rem 0;
}
footer {
    padding: 0 2rem 1rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:680px) {
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}
@media only screen and (max-width:480px) {
    h1{
        font-size: 1.5em;
        line-height: 1.2;
    }
    ul {
        padding-left: 0;
    }
    li, h1 {
        padding-left: 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem;
    }
}