@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 990px;
    background: #fff;
    border: solid thin #cbcbcb;
}

header {
    padding: 16px 20px;
}

.banner-bottom {
    margin: 20px;
}

article {
    padding: 16px 20px;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1) {
    width: 64%;
}

.flex-box-content:nth-of-type(2) {
    width: 32%;
}

.margin-bottom {
    margin-bottom: 0;
}

.button {
    width: 100%;
    height: 45px;
    line-height: 45px;
    display: block;
    border: none;
    background: #004454;
    color: #fff !important;
    margin: 16px auto;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

:is(h1, h2, h3) {
    line-height: 1.2;
}

h1 {
    font-size: 20px;
    margin: 0 0 30px;
    text-transform: uppercase;
}

h2 {
    font-size: 31px;
    margin: 20px;
    text-transform: uppercase;
}

h3 {
    font-size: 16px;
    margin: 0 0 12px 97px;
    text-transform: uppercase;
    text-indent: -97px;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 10px 15px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
}

ul ul {
    margin: 0 0 16px 37px;
}

ul ul li:before {
    content: "o";
    font-size: 13px;
}

hr {
    border: none;
    height: 1px;
    width: 100%;
    display: block;
    background: #cbcbcb;
    margin: 1rem 0;
}

.flex-box-content:nth-of-type(2) p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.left {
    margin: 0 0 16px 114px;
}

.left-left {
    margin: 0 0 20px 129px;
}

.left-rigth {
    margin: 0 0 16px 31px;
}

:is(header, footer) {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #232323;
    padding: 20px;
}

.footer-flex {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.left-one{
    margin-left: 99px;
}

.link {
    color: #357aba !important;
}

@media screen and (max-width: 989px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, h3, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 859px) {
    h3 img {
        display: none;
    }

    h3{
        text-indent: 0;
        margin-left: 0;
    }

    .left-left{
        margin-left: 15px;
    }

    .left {
        margin-left: 15px;
    }

    .flex-box-content:nth-of-type(1) {
        width: 55%;
    }

    .flex-box-content:nth-of-type(2) {
        width: 40%;
    }
}

@media screen and (max-width: 640px) {
    .flex-box {
        display: block;
    }

    .flex-box-content {
        width: 100% !important;
    }
}