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

html {
    min-height: 100%;
}

body {
    background: #F7F7F7;
}

#wrapper {
    max-width: 980px;
    margin: 16px auto;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .justify {
    text-align: justify;
}

#wrapper .button a {
    padding: 11px 20px;
    color: #fff !important;
    border-radius: 5px;
    background: #95c11f;
    display: block;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

#wrapper .pos {
    column-gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .content {
    padding: 15px;
    background: #fff;
    margin-bottom: 15px;
    border-top: 2px solid #95c11f;
}

#wrapper .header {
    margin-bottom: 20px;
    background: #fff;
}

#wrapper .article {
    width: 638px;
}

#wrapper .footer {
    padding: 15px;
    width: 318px;
    background: #fff;
    border-top: 2px solid #95c11f;
}

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

#wrapper p.mb-0 {
    margin-bottom: 0;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 23px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    color: #95c11f;
}

#wrapper h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    color: #95c11f;
}

#wrapper h4 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
}

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

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

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

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

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

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

@media (max-width: 979px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 10px;
        font-size: 15px;
        text-wrap: pretty;
    }

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

    #wrapper .article {
        flex: 1 1 0;
    }

    #wrapper .footer {
        width: 290px;
    }
}

@media (max-width: 767px) {
    #wrapper .header {
        margin: 0 0 15px;
    }

    #wrapper .article,
    #wrapper .footer {
        width: 100%;
    }

    #wrapper .content {
        padding: 16px;
    }
}

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