:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 825px;
    background: #fff;
    border: solid thin #688fb0;
}

article {
    padding: 16px 35px 0;
}

.color{
    color: #688fb0 !important;
}

.margin-bottom{
    margin-bottom: 0;
}

:is(h1, strong){
    font-weight: 700;
}

h1 {
    font-size: 22px;
    margin: 0 0 16px;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 16px;
}

ul li {
    list-style: none;
    padding-left: 19px;
    background: url(arrows.png) no-repeat left 3px;
}

footer {
    padding: 0 35px 20px;
}

@media screen and (max-width: 824px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}