:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@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');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 890px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
}

article {
    padding: 20px 110px 1px;
}

footer {
    padding: 0 110px 15px;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #365f91;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-bottom: 4px;
}

h1+p {
    margin-bottom: 40px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 13px;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 9px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

header {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

header img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

header img:nth-of-type(1) {
    position: relative;
}

header img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 10s linear 0s infinite normal forwards;
}

header img:nth-child(2) {
    animation-delay: 5s;
}

@media all and (max-width: 889px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    article {
        padding: 16px 16px 1px;
    }

    footer {
        padding: 0 16px 16px;
    }
}