* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Inter", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper hr {
    border: none;
    margin: 25px auto;
    width: 75%;
    border-bottom: 1px solid #30a133;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: center;
}

#wrapper article {
    padding: 30px;
}

#wrapper footer {
    padding: 30px;
    border: 1px solid #30a133;
    margin: 0 30px 30px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: 600;
    color: #30a133;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 400;
    color: #30a133;
}

#wrapper :is(a:link, a:visited, a:active) {
    color: #30a133;
    text-decoration: none;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #30a133;
    color: #fff;
    text-align: center;
    transition: .2s;
}

#wrapper .button a:hover {
    opacity: 0.8;
    color: #fff;
}

#wrapper a:hover {
    color: #1e6620;
    text-decoration: underline;
}

#wrapper .center p,
#wrapper h3.center {
    text-align: center;
}

#wrapper .big {
    font-size: 18px;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper ul ul {
    margin-bottom: 0;
}

#wrapper ul {
    margin-bottom: 22px;
    list-style: none;
}

#wrapper .ul1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 35px;
}

#wrapper .ul1>li {
    width: 48%;
}

#wrapper .flexbox {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .flexbox>div {
    width: 48%;
}

#wrapper .background {
    background: transparent linear-gradient(180deg, #E0F3E3 0%, #FFF 100%) 0 0 no-repeat padding-box;
    padding: 30px;
    margin: 0 -30px;
}

#wrapper ul li {
    padding-left: 27px;
    position: relative;
    margin-bottom: 11px;
}

#wrapper ul>li>strong:first-child {
    color: #30a133;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}

#wrapper ul li:before {
    content: url(icon1.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .ul2 li:before {
    content: url(icon2.jpg);
    position: absolute;
}

#wrapper ul ul li {
    padding-left: 18px;
    margin-bottom: 1px;
}

#wrapper ul ul li:before {
    content: '\2022';
    font-size: 23px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
}

#wrapper .ul li:before {
    display: none;
}

#wrapper .ul li:last-child {
    border-bottom: none;
}

#wrapper .ul li {
    background: url(benefit1.svg) no-repeat 0 center;
    background-size: 50px;
    padding-left: 73px;
    margin-bottom: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid #30a133;
}

#wrapper .ul li:nth-of-type(2) {
    background: url(benefit2.svg) no-repeat 0 center;
    background-size: 50px;
}

#wrapper .ul li:nth-of-type(3) {
    background: url(benefit3.svg) no-repeat 0 center;
    background-size: 50px;
}

#wrapper .ul li:nth-of-type(4) {
    background: url(benefit4.svg) no-repeat 0 center;
    background-size: 50px;
}

#wrapper .ul li:nth-of-type(5) {
    background: url(benefit5.svg) no-repeat 0 center;
    background-size: 50px;
}

#wrapper .ul li:nth-of-type(6) {
    background: url(benefit6.svg) no-repeat 0 center;
    background-size: 50px;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper footer {
        padding: 16px;
        margin: 0 16px 16px;
    }
}

@media (max-width: 699px) {

    #wrapper .ul1>li,
    #wrapper .flexbox>div {
        width: 100%;
    }

    #wrapper .ul li {
        padding-left: 60px;
    }

    #wrapper .banner {
        margin-bottom: 15px;
    }
}