* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 908px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

@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 hr {
    border: none;
    margin: 16px 0;
    border-bottom: 2px solid #AE9675;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper .logo {
    position: absolute;
    top: 10px;
    left: 30px;
    max-width: 135px;
    z-index: 1;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px -40px;
    font-size: 21px;
    font-weight: 700;
    background: #000000;
    color: #AE9675;
    padding: 16px 40px;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 700;
    border-bottom: 2px solid #AE9675;
    padding-bottom: 2px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #AE9675;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    padding: 8px 15px;
    border: 1px solid #AE9675;
    color: #fff;
    background-color: #AE9675;
    font-size: 19px;
    display: inline-block;
    transition: all .2s ease-in;
}

#wrapper .button a:hover {
    color: #AE9675;
    background-color: #fff;
}

#wrapper ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 9px;
    height: 10px;
    background: #AE9675;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 907px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .logo {
        top: 16px;
        left: 16px;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        max-width: 26%;
    }

    #wrapper ul {
        margin-left: 0;
    }
}