* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 892px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 80px 80px 50px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
}

header {
    padding: 0 0 60px;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

h2 {
    margin: 16px 0px;
    font-size: 15px;
    font-weight: 700;
}

h3 {
    margin: 16px 0;
    font-weight: 400;
    font-size: 15px;
    text-decoration: underline;
}

h4 {
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    color: #e5702b;
    line-height: 1.5;
    margin: 56px 0 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a.link {
    color: #0563C1;
    text-decoration: underline;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 34px;
}

li:before {
    content: "\2022";
    font-family: Arial, Helvetica, sans-serif;
    float: left;
    margin-top: 1px;
    font-size: 23px;
    text-indent: -34px;
}

img {
    max-width: 100%;
}

@media all and (max-width:891px) {
    #wrapper {
        padding: 5%;
        text-align: left;
        border: none;
    }

    header {
        padding: 0 0 30px;
    }

    h4 {
        font-size: 14px;
        margin: 30px 0 0;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}