@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 15px;
    line-height: 22px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
    padding: 115px;
}

@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }

    28% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    62% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    95% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    28% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    62% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    95% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

.slideshow {
    overflow: hidden;
    margin-bottom: 15px;
}

.slideshow figure img {
    width: 25%;
    float: left;
}

.slideshow figure {
    position: relative;
    width: 400%;
    -webkit-animation-duration: 12s;
    -webkit-animation-name: slidy;
    -webkit-animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    animation: 12s slidy infinite;
}

footer {
    column-gap: 175px;
    display: flex;
    flex-wrap: wrap;
}

p {
    margin-bottom: 25px;
}

span {
    white-space: nowrap;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 26px 0;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
}

h2 {
    font-size: 17px;
    line-height: 21px;
}

ul {
    margin: 0 0 35px 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "\25a0";
    font-size: 11px;
    position: absolute;
    top: 0;
    left: 0;
    font-family: Arial, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 909px) {
    #wrapper {
        margin: 0;
        padding: 6%;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    br:not(footer br) {
        display: none;
    }

    footer {
        column-gap: 50px;
    }
}

@media (max-width: 489px) {
    #wrapper {
        padding: 16px;
    }

    footer {
        column-gap: 40px;
    }

    ul {
        margin-left: 0;
    }
}