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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

@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 .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .block {
    display: block;
}



#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper .logo {
    padding: 26px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .color1 {
    color: #7B6249;
}

#wrapper .color2 {
    color: #6CAB43;
}

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

#wrapper .box {
    background: #73AC4E;
    padding: 12px;
    margin-bottom: 20px;
}

#wrapper .box * {
    color: #fff;
}

#wrapper .box h3 {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
}

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

#wrapper .footer img {
    position: absolute;
    bottom: 30px;
    right: 20px;
}

#wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #73AC4E;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #73AC4E;
}

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

#wrapper ul {
    list-style: none;
}

#wrapper ul ul {
    margin: 0;
}

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

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

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

#wrapper ul ul li:before {
    content: "\0025cb";
    font-size: 13px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

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

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

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

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

    #wrapper .box {
        padding: 10px;
    }
}

@media all and (max-width: 679px) {
    #wrapper .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #wrapper .footer img {
        position: static;
    }

    #wrapper .footer p,
    #wrapper .footer h3 {
        text-align: center;
    }
}

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

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