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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper .logo-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#wrapper .center {
    padding-bottom: 6px;
}

@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 .pic {
    position: absolute;
    bottom: 8.5%;
    right: 16%;
    z-index: 6;
    width: 180px;
}

#wrapper .box {
    background: #f4f4f4;
    padding: 15px;
}

#wrapper .box-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 20px;
}

#wrapper .article {
    padding: 20px 20px 0;
    position: relative;
}

#wrapper .footer {
    margin-top: 20px;
    padding: 20px 116px 20px 20px;
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

#wrapper .left,
#wrapper .right {
    width: 48%;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .button {
    border: 2px solid #491d00;
    display: inline-block;
    margin-bottom: 16px;
}

#wrapper .button a {
    display: inline-block;
    background: #491d00;
    margin: 3px;
    padding: 10px;
    color: #fff;
    letter-spacing: 1px;
}

#wrapper p.color {
    color: #fcb900;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding-bottom: 20px;
    font-size: 42px;
    line-height: 1;
    font-family: 'Fredericka the Great', cursive;
    font-weight: 400;
    color: #020202;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.2;
    font-family: 'Fredericka the Great', cursive;
    font-weight: 400;
    color: #020202;
}

#wrapper h3 span {
    display: block;
}

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

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

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

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

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

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

@media (max-width:998px) {
    #wrapper {
        margin: 0;
        font-size: 15px;
        border: none;
        text-wrap: pretty;
    }

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

    #wrapper .header,
    #wrapper .article {
        padding: 20px 16px;
    }

    #wrapper .footer {
        padding: 0 16px;
        margin: 0;
    }

    #wrapper .pic {
        right: 12%;
    }
}

@media all and (max-width:678px) {

    #wrapper .left,
    #wrapper .right {
        width: auto;
    }

    #wrapper .footer {
        display: block;
    }

    #wrapper .footer div {
        padding: 10px 0;
    }

    #wrapper .pic {
        position: static;
        margin: 0 auto;
    }

    #wrapper .logo-bottom {
        align-items: center;
    }
}

@media all and (max-width:500px) {
    #wrapper .header {
        display: flex;
        justify-content: center;
    }

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

    #wrapper ul li {
        padding-left: 15px;
    }
}