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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 998px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #545453;
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
}

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

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        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 6s linear 0s infinite normal forwards;
}

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

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

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

#wrapper .logo a {
    border: none !important;
}

#wrapper section {
    padding: 20px 30px 10px 30px;
    background: #fff;
    margin: 0 40px 0 40px;
    position: relative;
    z-index: 9;
}

#wrapper .bg h3,
#wrapper .bg p,
#wrapper .bg ul li,
#wrapper .bg ul li:before {
    color: #fff;
}

#wrapper .bg {
    background: #6CA332;
    padding: 20px 70px;
}

#wrapper .bg2 {
    background: #fff;
    padding: 20px 70px;
}

#wrapper .hide {
    display: none;
}

#wrapper .footer p {
    margin-bottom: 2px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 13px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    color: #6ca332;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    color: #6ca332;
    font-weight: 600;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #6ca332;
    text-decoration: none;
    border-bottom: 2px solid #6ca332;
}

#wrapper .color {
    color: #6ca332;
    border-bottom: 2px solid #6ca332;
}

#wrapper a.link {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#wrapper a:hover,
#wrapper .color:hover {
    border: none;
}

#wrapper ul {
    margin: 0 0 16px 10px;
    list-style: none;
}

#wrapper ul ul {
    margin: 0 0 0 9px;
}

#wrapper ul ul li:before {
    content: "\0025cb";
    font-size: 14px;
    top: 2px;
}

#wrapper ul li {
    padding-left: 15px;
    margin-bottom: 3px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    color: #545453;
    font-size: 23px;
    position: absolute;
    top: -1px;
    left: 0;
    line-height: 1;
}

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

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

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

@media (max-width:757px) {
    #wrapper h1 {
        font-size: 27px;
        line-height: 1.2;
    }

    #wrapper section {
        padding: 16px;
        margin: 0;
    }

    #wrapper .bg,
    #wrapper .bg2 {
        padding: 16px;
    }

    #wrapper .footer {
        position: static;
        margin: 10px auto;
    }
}

@media (max-width:499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper {
        font-size: 15px;
    }
}