: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: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 1158px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 20px;
    background: #fff;
}

header {
    padding: 0 0 25px;
}

footer {
    margin-top: 55px;
    padding: 8px 70px 15px;
    border-top: 8px solid #ffc000;
    border-bottom: 8px solid #ffc000;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 25px 0;
    padding: 20px 16px;
    font-weight: 700;
    font-size: 27px;
    line-height: 32px;
    background: #ffc000;
    text-align: center;
}

h2 {
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #c45911;
}

h3 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 42px;
    background: url('../images/iconli.jpg') no-repeat 0 2px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.box {
    padding: 0 30px;
}

.center {
    text-align: center;
}

h1 small {
    display: block;
    font-weight: 400;
    margin-top: 16px;
}

footer p {
    line-height: 34px;
    font-size: 19px;
}

footer>p {
    width: 53%;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-direction: column;
}

@media all and (max-width: 1157px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
        hyphens: auto;
    }

    header {
        display: flex;
        justify-content: center;
    }
}

@media all and (max-width: 767px) {
    .box {
        padding: 0;
    }

    footer {
        gap: 15px;
        padding: 10px 0;
    }

    footer>p {
        width: auto;
    }
}