:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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: 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');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 1120px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
}

footer {
    padding: 0 30px 30px;
}

p {
    margin: 0 0 12px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 56px;
    line-height: 60px;
}

h2 {
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 23px;
    line-height: 28px;
    color: #ee0000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 35px 22px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #007bff !important;
}

.color:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}

hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

.logo {
    background: #ee0000;
    padding: 16px 30px;
}

.section {
    padding: 35px 30px 10px;
}

.box {
    background: #e9ecef;
    padding: 35px 30px;
}

h1 small {
    display: block;
    font-size: 19px;
    line-height: 23px;
    margin-top: 15px;
    font-weight: 400;
}

footer a {
    background: #ff0000;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
    color: #fff !important;
}

@media all and (max-width: 1119px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    h1 br {
        display: none;
    }
}

@media all and (max-width: 767px) {
    :is(.logo, .box, .section) {
        padding: 16px;
    }

    h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    ul {
        padding: 0 0 20px;
    }
}