@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 920px;
    margin: 16px auto;
    border: 2px solid #d2232a;
    padding: 10px 12px 0;
    background-color: #fff;
}

header p {
    font-size: 12px;
    display: inline-block;
    position: relative;
    z-index: 999;
}

.logo {
    margin: -16px 0 16px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    padding: 0 0 20px;
}

.flex img {
    max-width: 141px;
}

.flex ul {
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 20px;
}

footer {
    padding: 6px 12px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d2232a;
    margin: 0 -12px;
}

footer p {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

:is(h1, .color) {
    color: #a21418;
}

h1 {
    margin: 16px 0;
    font-size: 42px;
    line-height: 1;
}

h1 span {
    font-size: 21px;
}

h2 {
    margin: 20px 0 0;
    font-size: 21px;
    line-height: 27px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 12px;
}

li:before {
    content: '\2022';
    float: left;
    margin-top: 1px;
    font-size: 18px;
    text-indent: -12px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 919px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    footer {
        margin: 0 -16px;
        padding: 10px 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    .mobile {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .logo {
        margin: 0 0 16px;
    }

    .flex {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    footer {
        flex-direction: column;
        gap: 6px;
    }

    footer p {
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }
}