* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 50px 110px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", serif;
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
}

header {
    padding: 0 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center {
    text-align: center;
}

.margin {
	margin-bottom: 16px;
}

p {
    margin: 0 0 5px;
    text-align: justify;
}

span {
    white-space: nowrap;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0px;
    font-weight: 700;
    font-size: 27px;
    line-height: 34px;
    text-align: center;
    color: #283583;
}

h2 {
    padding: 15px 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #283583;
}

ul {
    list-style: none;
    padding-bottom: 10px;
}

ul li {
    padding-left: 19px;
    margin-top: 5px;
}

li:before {
    content: "\25A0";
    color: #000;
    float: left;
    font-size: 8px;
    text-indent: -19px;
}

a {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    border: none;
}

@media all and (max-width:898px) {
    #wrapper {
        padding: 50px 8%;
        border: none;
    }

    p {
        text-align: left;
    }
}

@media all and (max-width:767px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0;
    }
}

@media all and (max-width:520px) {
    header {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }
}