@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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 850px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #fff;
}

.logo {
    padding: 32px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

article {
    padding: 64px 64px 16px;
}

footer {
    padding: 0px 64px 64px;
}

footer h2 {
    padding-bottom: 16px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

.p {
    padding-top: 30px;
}

h1 {
    font-size: 21px;
    line-height: 24px;
    margin: 0 0 16px;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
}

ul {
    list-style: none;
    margin-left: 28px;
}

ul li {
    padding-left: 30px;
    margin-top: 10px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 27px;
    text-indent: -30px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.link {
    text-decoration: underline !important;
    color: #467885 !important;
}

figure {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

figure img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

figure img:nth-of-type(1) {
    position: relative;
}

figure img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 10s linear 0s infinite normal forwards;
}

figure img:nth-child(2) {
    animation-delay: 5s;
}

@media only screen and (max-width:850px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }

    .logo {
        padding: 16px;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0px 16px 16px;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0
    }
}