:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 16px auto;
    border: 1px #000 solid;
    max-width: 900px;
    color: #000;
    position: relative;
    padding: 60px 85px 85px;
    background-color: #FFFFFF;
    font-family: "Lato", sans-serif;
    line-height: 1.5;
    font-size: 15px;
    text-align: justify;
    overflow: hidden;
    hyphens: auto;
}

p {
    padding-bottom: 12px;
}

h1 {
    margin: 0 0 30px;
    font-size: 24px;
    line-height: 26px;
    color: #005124;
    font-weight: 500;
    text-align: left;
}

h1 span {
    font-size: 19px;
    line-height: 20px;
    margin: 5px 0 0;
    display: block;
    letter-spacing: 1px;
}

h2 {
    font-size: 18px;
    line-height: 22px;
    margin: 30px 0 15px;
    font-weight: 500;
}

h3 {
    color: #005124;
    font-weight: 500;
    font-size: 109%;
    text-align: center;
    line-height: 20px;
    margin: 30px 0 30px -50px;
}

h4 {
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    margin: 6px 0 40px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a u {
    color: #0000ff;
}

img {
    max-width: 100%;
    vertical-align: middle
}

ul {
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

ul:nth-of-type(1) {
    margin-bottom: 10px;
}

.ul {
    margin-bottom: 30px;
}

ul li {
    padding-left: 45px;
    position: relative;
    padding-bottom: 10px;
}

.content li {
    padding-left: 40px;
}

.content li:before {
    content: '\25A0';
    font-size: 10px;
    text-indent: -40px;
}

ul li:before {
    content: '\2022';
    float: left;
    font-size: 14px;
    margin-top: 0;
    text-indent: -26px;
    line-height: 22px;
}

header {
    display: flex;
    margin: 0 0 90px;
    justify-content: flex-end;
}

.center {
    text-align: center;
}

@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        text-align: left;
        padding: 15px
    }

    ul li {
        padding-left: 25px !important;
    }

    ul li:before {
        text-indent: -25px !important;
    }

    header {
        margin-bottom: 50px
    }
}

@media only screen and (max-width:600px) {
    header {
        justify-content: center;
    }

    h1 {
        text-align: center;
    }

    h2 {
        margin-top: 20px;
    }
}