* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 40px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

#wrapper .hide {
    display: none;
}

#wrapper a ins {
    color: #0000ff !important;
}

#wrapper h1 span.small {
    font-size: 15px;
    display: block;
    color: #000;
}

#wrapper .header {
    position: absolute;
    top: 29.2%;
    right: 17%;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 25px 0 25px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #862d37;
}

#wrapper h2 span {
    font-size: 27px;
}

#wrapper h4 span {
    font-size: 13px;
}

#wrapper h5 span {
    font-size: 19px;
}

#wrapper h2 {
    margin: 10px 0 10px;
    padding: 0 0 5px;
    font-size: 15px;
    border-bottom: 2px solid #000;
    font-weight: 700;
    width: 87%;
}

#wrapper h3 {
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    color: #862d37;
}

#wrapper h4 {
    margin-bottom: 22px;
    font-size: 10px;
    font-weight: 400;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 25px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #862d37;
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    border: none;
}

#wrapper .text {
    width: 50%;
}

@media (max-width: 849px) {
    #wrapper {
        padding: 5%;
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .header {
        position: static;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    #wrapper h2 {
        width: auto;
    }

    #wrapper .text {
        width: auto;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}