: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', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

#wrapper {
    max-width: 1120px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 16px 16px 0;
    background: #fff;
    overflow: hidden;
}

header {
    padding: 0;
    background: #e0e2e4;
    border-bottom: 3px solid #A5BAC9;
}

article {
    padding: 50px 355px 20px 32px;
    position: relative;
}

footer {
    margin: 0 -16px;
    padding: 16px;
    background: #6F6F6F;
    display: flex;
    justify-content: center;
    gap: 12px;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #888;
}

h2 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #888;
}

h3 {
    margin: 0 19px 20px;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 10px;
    margin-bottom: 5px;
    background: url('../images/iconli.jpg') no-repeat 0 9px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.center {
    text-align: center;
}

.text {
    margin-top: 16px;
    padding: 16px;
}

.color {
    color: #800007 !important;
}

.color:hover {
    color: #0056b3 !important;
}

.flex_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex_box .item {
    width: 48%;
}

.color80 {
    color: #808080 !important;
}

.logo {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

hr {
    display: block;
    border: none;
    height: 5px;
    background: #6F6F6F;
    margin: 0 0 30px;
}

.buttom {
    margin: 0 0 15px;
}

.buttom a {
    display: block;
    border-radius: 5px;
    background: #FAD5CF;
    color: #212529 !important;
    font-size: 20px;
    line-height: 24px;
    padding: 10px;
    text-align: center;
}

section p {
    margin: 0 19px 30px;
}

section {
    width: 300px;
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
}

@media all and (max-width:1119px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    br:not(section br) {
        display: none;
    }

    article {
        padding-right: 320px;
    }
}

@media all and (max-width:910px) {
    #wrapper {
        padding: 0;
    }

    article {
        padding: 16px;
    }

    .flex_box .item {
        width: 100%;
    }

    section {
        position: static;
        width: auto;
    }

    footer {
        margin: 0;
    }
}