@font-face {font-family: 'Roboto'; font-style: normal; font-weight: 400; src: url('../fonts/roboto-v30-latin-regular.eot'); src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); }
@font-face {font-family: 'Roboto'; font-style: normal; font-weight: 700; src: url('../fonts/roboto-v30-latin-700.eot'); src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); }

: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: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 771px;
    background: #fff;
    border: solid thin #000;
    padding: 70px 80px;
}

header{
    margin-bottom: 10px;
}

.color{
    color: #0563c1 !important;
    text-decoration: underline !important;
}

.margin-bottom{
    margin-bottom: 0;
}

:is(h1, strong){
    font-weight: 700;
}

h1 {
    font-size: 16px;
    margin: 0 0 16px;
    text-align: center;
    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 26px 48px;
}

ul li {
    list-style: none;
    text-indent: -26px;
}

ul li:before {
    font-size: 20px;
    margin-right: 26px;
    position: relative;
    top: -1px;
    float: left;
    content: "-";
}

@media screen and (max-width: 770px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 20px;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    ul{
        margin-left: 26px;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}