@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700italic.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700italic.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700italic.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700italic.woff') format('woff'), url('../fonts/open-sans-v34-latin-700italic.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700italic.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 862px;
    background: #fff;
    border: solid thin #cbcbcb;
}

header {
    padding: 20px 75px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide {
    border: 0;
    position: relative;
}

.slide img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    11% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    44% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slide img:nth-of-type(1) {
    position: relative;
}

.slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 12s linear 0s infinite normal forwards;
}

.slide img:nth-child(2) {
    animation-delay: 4s;
}

.slide img:nth-child(3) {
    animation-delay: 8s;
}

article {
    padding: 30px 75px 0;
}

.color {
    color: #ee0000 !important;
}

.blau {
    color: #0070c0 !important;
    margin-left: 20px;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 16px;
    margin: 0 0 16px;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 20px 35px;
}

ul li {
    list-style: none;
    padding-left: 24px;
    background: url('../images/icon.jpg') no-repeat 0 2px;
}


footer {
    padding: 30px 75px 20px;
    background: #e6e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 861px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 720px) {
    article {
        padding: 30px 20px 0;
    }

    :is(header, footer) {
        padding: 20px;
    }

    ul {
        margin-left: 0;
    }

    .blau {
        margin-left: 0;
    }
}