@charset "utf-8";

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot');
    src: local(''), url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-900.woff2') format('woff2'), url('../fonts/roboto-v30-latin-900.woff') format('woff'), url('../fonts/roboto-v30-latin-900.ttf') format('truetype'), url('../fonts/roboto-v30-latin-900.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #5F5F62;
    font: 400 0.8125em/1.4 'Roboto', sans-serif;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    background-color: #fff;
    overflow: hidden;
}

p {
    margin: 0 0 .937rem;
}

h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.1;
    margin: 2.5rem 0;
    font-weight: 400;
    color: #0ab6de;
}
h1, .center {
    text-align: center;
}
h2 {
    font-size: .875rem;
    line-height: 1.4;
    margin: 0 0 .625rem;
    color: #0ab6de;
    font-weight: 900;
}

ul {
    list-style: none;
    margin: 0 0 20px;
    padding: .625rem 0 0;
    border-top: thin solid #808285;
}

li {
    padding-left: 1.375rem;

}

li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    padding: 2rem;
    background: #5F5F62;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 1.25rem;
    background: #D1D2D4;
}

article section {
    background: #5F5F62;
    color: #FFFFFF;
    margin: 0 -1.25rem 30px;
    padding: 1.25rem
}

article p span {
    text-decoration: underline;
    font-weight: bold;
    color: #0ab6de;
}

footer {
    background-color: #5F5F62;
    margin: 0;
    padding: 1.25rem;
}
footer p {
    color: #fff;
}
footer p.din {
    float: right;
    text-align: right;
}

footer p:last-of-type a {
    text-align: center;
    font-size: .875rem;
    text-transform: uppercase;
    background: #009BBF;
    display: block;
    width: 25%;
    margin: 0 auto;
    padding: .625rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

footer p:last-of-type a:hover {
    text-decoration: none;
    color: #009BBF;
    background: #fff;
    transition: 0.5s
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure img {
    width: 20%;
    float: left;
}

@media only screen and (max-width:749px) {

    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0;
        hyphens: auto;
    }

    h1 {
        font-size: 1.562rem;
    }

    h2 {
        font-size: .875rem;
    }

    header {
        margin: 0;
        padding: 1rem;
    }

    article {
        padding: 1rem
    }

    footer {
        margin: 0;
        padding: 1rem;
    }

    footer p:last-of-type a {
        width: 30%;
    }
}

@media only screen and (max-width:30rem) {

    header img {
    float: right;
    max-width: 100%;
    width: 18.75rem;
    padding: 1.25rem
    }

    h1 {
        font-size: 1.562rem;
    }

    footer p:last-of-type a {
        width: 100%
    }
}

@media only screen and (max-width:23.438rem) {
    footer p.din {
        float: none;
        text-align: left;
    }
}