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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Poppins", Arial, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .banner {
    position: relative;
}

#wrapper .banner>a {
    position: absolute;
    top: 10%;
    right: 6%;
    width: 20%;
    height: 29%;
}

#wrapper article {
    padding: 30px 40px 30px 58px;
}

#wrapper .flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#wrapper .left {
    width: 48.5%;
}

#wrapper .right {
    width: 48%;
}

#wrapper .banner p {
    position: absolute;
    top: 57%;
    left: 75%;
    margin: 0;
}

#wrapper .banner p a {
    color: #fff !important;
}

#wrapper footer {
    display: none;
}

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

#wrapper p.mar {
    padding-top: 15px;
    margin: 0;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 34px;
    font-weight: 600;
    color: #b3d236;
    line-height: 1.2;
}

#wrapper h1 span {
    font-size: 18px;
}

#wrapper h1+p {
    padding-bottom: 16px;
}

#wrapper h2 {
    background: #58585a;
    color: #b3d236;
    font-weight: 300;
    font-size: 36px;
}

#wrapper h2 span.big {
    background: #b3d236;
    color: #fff;
    padding: 10px 20px 10px 58px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    border-radius: 0 20px 0 0;
    margin-right: 16px;
}

#wrapper h2 span.small {
    letter-spacing: 2px;
    font-size: 80%;
    text-shadow: 3px 2px 1px #000;
}

#wrapper h3 {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    color: #58585a;
}

#wrapper .h3 {
    color: #b3d236;
    font-weight: 600;
    font-size: 36px;
}

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

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

#wrapper ul.nomar {
    margin: 0;
}

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

#wrapper ul li:before {
    content: "\0025a0";
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -6px;
    line-height: 1;
    left: 0;
    color: #B3D235;
}

#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;
        text-align: left;
    }

    #wrapper .banner>a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper article {
        padding: 16px 16px 30px;
    }
}

@media (max-width: 767px) {
    #wrapper .banner p {
        display: none;
    }

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

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

    #wrapper footer {
        display: block;
        padding: 0 16px 16px;
    }

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

    #wrapper h2 {
        font-size: 4vw;
    }

    #wrapper h2 span.big {
        padding-left: 16px;
    }

    #wrapper h4 {
        font-size: 24px;
    }
}