:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@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');
}
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: 910px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 25px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
header {
    padding: 0 0 25px;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 0 0 0 210px;
}
footer {
    position: absolute;
    z-index: 3;
    left: 25px;
    top: 0;
}
p {
    margin: 0 0 14px;
}
strong {
    font-weight: 700;
    color: #4f81bd;
}
h1 {
    margin: 0 40px 25px 0;
    font-weight: 700;
    font-size: 1.9em;
    line-height: 1.2;
    color: #4f81bd;
    text-align: center;
}
h2 {
    font-weight: 700;
    font-size: 1.9em;
    line-height: 1.3;
    color: #4f81bd;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}
ul {
    padding: 0 0 20px 30px;
    list-style: none;
}
ul li {
    padding-left: 26px;
    position: relative;
}
li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4f81bd;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
.color {
    color: #4f81bd !important;
}
.slide {
    margin: 0 0 25px;
    padding: 0;
    border: 0;
    position: relative;
}
.slide img {
    vertical-align: bottom;
}
@keyframes slidy {
    0% {
        opacity: 0;
    }
    6.6% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    39.9% {
        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 15s linear 0s infinite normal forwards;
}
.slide img:nth-child(2) {
    animation-delay: 5s;
}
.slide img:nth-child(3) {
    animation-delay: 10s;
}
.flex {
    display: flex;
    padding: 0 55px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 15px;
}
h1 small {
    display: block;
    font-size: 18px;
    line-height: 22px;
}
@media all and (max-width: 909px) {
    #wrapper {
        margin: 0;
        border: none;
    }
    :is(ul, p) {
        hyphens: auto;
    }
    .flex {
        padding: 0;
    }
}
@media all and (max-width: 685px) {
    #wrapper {
        padding: 16px;
    }
    article {
        padding: 0;
    }
    h1, h2{
        font-size: 1.5em;
    }
    h1 {
        margin-right: 0;
    }
    ul {
        padding-left: 0;
    }
    ul li {
        padding-left: 15px;
    }
    footer {
        display: none;
    }
}