@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 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 4rem 6rem 3rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #467886;
    text-decoration: underline;
}
p {
    padding-bottom: 1.5rem;
}
p, li {
    text-align: justify;
}
h1, h2 {
    color: #595959;
    text-transform: uppercase;
    font-family: Calibri, Arial, sans-serif;
}
h1 {
    margin: 0 0 0.125rem;
    font-size: 1.4em;
    line-height: 1.2;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.385em;
    line-height: 1.3;
}
:is(h1, h2) span {
    font-size: 1.25em;
    line-height: 1.3;
}
ul {
    padding: 0 0 1.5rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 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;
}
header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@-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;
    margin: 3rem -6rem;
}
.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;
}
.text {
    padding-left: 2.5rem;
    background: #fff url('euro.jpg') no-repeat left center;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    br:not(footer br) {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    .slider {
        margin: 2rem -2rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .slider {
        margin: 1rem -1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
}