* {
    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;
}

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

#wrapper .text,
#wrapper .text a {
    color: #898989 !important;
    text-align: left;
    font-size: 14px;
}

#wrapper p.text {
    margin-top: 30px;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
}

#wrapper .article {
    padding: 15px 25px 8px;
}

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

#wrapper .small {
    font-size: 14px;
    color: #898989;
}

#wrapper .small a {
    color: #898989 !important;
}

#wrapper .footer {
    padding: 0 25px 15px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: -41px auto 15px;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    background-color: #009641;
    color: #fff;
    position: relative;
    z-index: 10;
    padding: 10px 16px;
    width: 580px;
}

#wrapper h2 {
    color: #009641;
    font-size: 30px;
}

#wrapper h2 span {
    display: block;
    font-weight: 400;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    padding-top: 5px;
}

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

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

#wrapper ul li {
    padding-left: 30px;
    padding-bottom: 4px;
    position: relative;
}

#wrapper ul li:before {
    content: url(icon.jpg);
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

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

    #wrapper p {
        text-align: left;
    }

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

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

@media (max-width: 679px) {
    #wrapper .logo {
        flex-direction: column;
        align-items: center;
        padding: 16px;
        gap: 10px;
    }

    #wrapper h1 {
        width: auto;
        margin-top: 0;
    }

    #wrapper h2 {
        text-align: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}