* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 50px 70px 0;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

header {
    padding: 0 0 26px;
    display: flex;
    justify-content: flex-end;
}

footer {
    padding: 60px 0 30px;
    font-size: 12px;
    line-height: 1.5;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex ul {
    width: 48%;
}

.flex ul:nth-of-type(2) {
    width: 49%;
}

p {
    margin: 0 0 10px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #0070c0;
}

h2 {
    margin: 36px 0 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #0070c0;
    padding: 0 0 2px;
    border-bottom: 1px solid #99B2CC;
}

h3 {
    margin: 0 0 3px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #0070c0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 30px;
}

li:before {
    content: "\2212";
    color: #000;
    float: left;
    font-size: 17px;
    text-indent: -16px;
}

img {
    max-width: 100%;
}

.color {
    color: #0070c0;
    font-size: 17px;
    margin: 0 0 26px;
}

.color1 {
    color: #707070;
    margin-top: 22px;
}

@media all and (max-width:798px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
    }

    article br {
        display: none;
    }

    span {
    	white-space: nowrap;
    }
}

@media all and (max-width:767px) {
    .flex {
        display: block;
    }

    .flex ul {
        width: 100% !important;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    .margin {
        margin: 0;
    }
}