@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 890px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #fff;
    padding: 30px;
}

article {
    padding: 20px 0;
}

article p:first-of-type {
    text-align: justify;
    font-size: 97%;
    word-spacing: -1px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.column {
    width: 410px;
}

footer {
    position: relative;
}

.logo {
    position: absolute;
    bottom: -7px;
    right: 0;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 32px;
    line-height: 1.1;
    margin: 12px 0 0;
    color: #ee1c22;
    font-weight: 400;
}

h1 small {
    font-size: 23px;
}

h1 span {
    display: block;
    font-size: 20px;
    margin-top: 10px;
}

h2 {
    font-size: 19px;
    line-height: 24px;
    margin-top: 16px;
}

:is(h1, h2) {
    font-weight: 400
}

ul {
    list-style: none
}

ul li {
    padding-left: 9px;
    margin-top: 5px;
}

li:before {
    content: "\2022";
    color: #ee1c22;
    float: left;
    font-size: 17px;
    text-indent: -9px;
}

img {
    max-width: 100%;
    display: block;
}

strong {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.link {
    color: #ee1c22 !important;
    text-decoration: underline !important;
}

.color {
    color: #ee1c22;
}

@media only screen and (max-width:890px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    .column {
        width: 47%
    }

    article p:first-of-type {
        text-align: left;
    }
}

@media only screen and (max-width:760px) {
    .flex {
        display: block;
    }

    .column {
        width: auto
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 20px
    }

    footer p {
        text-align: center;
    }

    h1 {
        text-align: center;
        font-size: 25px
    }
}