@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), url('../fonts/lato-v23-latin-regular.woff') format('woff'), url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-700.woff2') format('woff2'), url('../fonts/lato-v23-latin-700.woff') format('woff'), url('../fonts/lato-v23-latin-700.ttf') format('truetype'), url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #444;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 852px;
    margin: 1rem auto;
    border: 1px solid #444;
    background-color: #fff;
}

.logo {
    padding: 30px 50px;
    display: flex;
    justify-content: flex-start;
}

.slider {
    position: relative;
}

.slider img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.6% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
    }

    39.9% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slider img:nth-of-type(1) {
    position: relative;
}

.slider img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
}

.slider img:nth-child(2) {
    animation-delay: 5s;
}

.slider img:nth-child(3) {
    animation-delay: 10s;
}

header {
    padding: 0;
}

article {
    padding: 30px 50px;
}

footer {
    padding: 30px 50px;
    background: #3c3c3b;
}

footer :is(p, h2, a) {
    color: #fff !important;
}

p:not(:first-of-type) {
    margin-top: 20px;
}

h1 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

h1 span {
    display: block;
    font-size: 16px;
    padding: 20px 0;
    color: #444;
    font-weight: 400;
    text-transform: none;
}

h2 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
}

:is(h1, h2) {
    color: #ea5906;
}

ul {
    list-style: none;
    margin: 20px 0 0 25px;
}

ul li {
    padding-left: 23px;
}

li:before {
    content: "\2022";
    color: #444;
    float: left;
    font-size: 25px;
    text-indent: -23px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 2px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #444;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:852px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(.logo, article, footer) {
        padding: 16px
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0
    }
}