:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
}

article {
    padding: 1.25rem 4.6875rem 0.0625rem;
}

footer {
    padding: 0 4.6875rem 1.25rem;
}

p {
    margin: 0 0 0.75rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 1rem;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25rem;
}

.logo {
    padding: 1.25rem 4.6875rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #467886;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 0 1.6875rem;
    list-style: none;
}

ul li {
    padding-left: 1.5625rem;
    position: relative;
    margin-bottom: 0.75rem;
}

ul li:before {
    content: "";
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.4375rem;
}

ul.ul li::before {
    height: 0.0625rem;
    border-radius: 0;
    top: 0.5625rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

p span {
    white-space: nowrap;
}

.slide {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

.slide img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        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 20s linear 0s infinite normal forwards;
}

.slide img:nth-child(2) {
    animation-delay: 5s;
}

.slide img:nth-child(3) {
    animation-delay: 10s;
}

.slide img:nth-child(4) {
    animation-delay: 15s;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    .logo {
        padding: 0.625rem 1rem;
    }

    article {
        padding: 1rem 1rem 0.0625rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media all and (max-width: 575px) {
    ul {
        padding-left: 0;
    }

    ul li {
        padding-left: 0.9375rem;
    }
}