* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 766px;
    margin: 16px auto;
    border: 1px solid #212529;
    padding: 20px;
    background-color: #fff;
    overflow: hidden;
    color: #212529;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

header {
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
    border-bottom: 20px solid #165788;
    margin: 0 -20px;
}

footer {
    padding: 16px 0;
    display: flex;
    justify-content: center;
}

footer a {
    display: inline-block;
    background: #165788;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    border-radius: 3px;
}

hr {
    border: 0;
    margin: 40px 0;
    width: 100%;
    height: 1px;
    background: rgba(33, 37, 41, 0.25);
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 30px 0 3px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #165788;
}

h1 span {
    display: block;
}

h1 small {}

h2 {
    margin: 0 0 16px;
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    color: #165788;
    text-transform: uppercase;
}

h3 {
    margin: 0 0 41px;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.3;
    color: #165788;
    text-align: center;
}

h3 span {
    display: block;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 50px;
    list-style: none;
}

ul li {
    padding-left: 42px;
    margin: 0 0 8px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    margin-left: 0px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:765px) {
    #wrapper {
        padding: 16px;
        border: none;
    }

    header {
    	padding: 0 16px 16px;
    	margin: 0 -16px;
    }

    ul li {
    	padding-left: 16px;
    }

    br {
        display: none;
    }
}