* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: url(background.jpg) no-repeat top left;
    background-size: 100%;
}

#wrapper {
    max-width: 885px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background: rgba(29, 29, 27, 0.8);
    overflow: hidden;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    11.11% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    44.44% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 9s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .hide {
    display: none;
}

#wrapper .pb0 {
    padding-bottom: 0;
}

#wrapper .header {
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 0 50px;
}

#wrapper .footer {
    padding: 20px 50px 0;
    background: #ef7d00;
}

#wrapper .footer h3 {
    padding: 0;
}

#wrapper p {
    padding-bottom: 20px;
}

#wrapper .orange {
    background: #ef7d00;
    padding: 16px 50px;
    margin: 0 -50px 20px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #ef7d00;
    text-align: center;
}

#wrapper h1 span {
    font-size: 16px;
}

#wrapper h3 {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    background: #ef7d00;
    border-radius: 0 20px 0 20px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 30px;
    list-style: none;
}

#wrapper .ul {
    margin-bottom: 10px
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #ef7d00;
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media all and (max-width: 884px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .header {
        padding: 16px;
    }

    #wrapper .article {
        padding: 0 16px 0;
    }

    #wrapper .footer {
        padding: 16px 16px 6px;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper h1 {
        font-size: 25px;
    }
}