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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 780px;
    margin: 16px auto;
    box-shadow: 0 0 10px 10px #cfcfcf;
    border: 3px solid #6AAE5A;
    background-color: #fff;
    overflow: hidden;
    font-family: "Figtree", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.4;
    color: #000;
}

#wrapper .font {
    font-size: 20px;
    margin-bottom: 5px;
}

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

#wrapper .hide {
    display: none;
}

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

#wrapper .article {
    padding: 25px 25px 5px;
}

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

#wrapper .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

#wrapper .footer p strong {
    color: #6AAE5A;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 700;
    color: #6AAE5A;
    line-height: 1.3;
}

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

#wrapper h3 {
    font-size: 19px;
    font-weight: 800;
    color: #6AAE5A;
}

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

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

#wrapper ul li {
    padding-left: 14px;
    position: relative;
}

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

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

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

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

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

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

    #wrapper p {
        text-align: left;
    }
}

@media all and (max-width: 579px) {

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

@media all and (max-width: 370px) {
    #wrapper h1 {
        font-size: 28px;
        line-height: 1.2;
    }
}