@font-face {
    font-display: swap;
    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-display: swap;
    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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #575656;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 860px;
    margin: 16px auto;
    border: 1px solid #575656;
    padding: 20px 52px 0 40px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

#wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: #c7292e;
}

.logo {
    padding: 0 0 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

footer {
    padding: 16px 55px 16px 16px;
    background: #171717;
    margin: 12px -50px 0 -40px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

footer a {
    color: #fff !important;
    font-size: 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px 0;
}

span:not(header span) {
    white-space: nowrap;
}

.center {
    text-align: center;
}

p {
    margin: 0 0 6px;
}

:is(.color, h1, h2) {
    color: #c7292e !important;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-size: 22px;
    line-height: 27px;
}

h2 {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #575656;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 12px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

li:before {
    content: "\25A0";
    color: #c7292e;
    float: left;
    font-size: 10px;
    margin-top: -1px;
    text-indent: -12px;
}

img {
    max-width: 100%;
}

@media all and (max-width:859px) {
    #wrapper {
        margin: 0 auto;
        padding: 16px 32px 0 16px;
        border: none;
    }

    #wrapper:before {
        width: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .flex {
        padding: 0 0 16px;
    }

    footer {
        margin: 12px -16px 0;
        padding: 16px;
    }

    br:not(.center br) {
        display: none;
    }
}

@media all and (max-width: 540px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    footer {
        justify-content: center;
    }
}