@font-face {
    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-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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    font-family: 'Roboto', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}

article {
    padding: 2px 35px 0;
}

.logo {
    display: flex;
    justify-content: flex-end;
    padding: 22px 20px 12px 0;
}

article>p:first-of-type {
    font-size: 25px;
    line-height: 1.25;
    padding: 36px 0;
}

article>p:first-of-type strong {
    display: block;
    font-size: 1.2em;
}

article>p:first-of-type strong {
    font-size: 35px;
    line-height: 1.25;
}

article section {
    background: #e5e6e6;
    margin: 0 -35px;
    padding: 25px 35px 1px;
}

.flexbox {
    display: flex;
    justify-content: space-between;
}

.flexbox div {
    width: 48%;
}

footer {
    padding: 25px 67px 10px;
}

footer>p {
    text-align: center;
}

.info {
    padding: 0 0 20px;
    display: flex;
    gap: 57px;
}

.info .text {
    width: 75%;
}

.block {
    display: block;
}

p {
    padding-bottom: 1rem;
}

span:not(h1 > span) {
    white-space: nowrap;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

h1 {
    padding: 15px 15px 15px 30px;
    font-size: 36px;
    line-height: 1;
    background: #00558f;
    border-bottom: 12px solid #f47920;
    color: #fff;
    letter-spacing: 3px;
    position: absolute;
    left: 0;
    top: 294px;
    width: 58%;
}

h1 small {
    font-size: 24px;
    line-height: 1.2;
}

h1 span {
    font-size: 26px;
    display: block;
}

h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 4px;
}

h3 {
    font-size: 25px;
    line-height: 1.3;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

li {
    padding: 0 0 0 28px;
    position: relative;
}

li:before {
    content: "\2022";
    font-size: 23px;
    position: absolute;
    left: 0;
    top: 1px;
}

:is(a:link, a:visited, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media only screen and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article {
        padding: 16px 16px 0;
        position: relative;
    }

    .logo {
        padding: 0 0 10px;
    }

    article section {
        background: #e5e6e6;
        margin: 0 -16px;
        padding: 16px;
    }

    article p br {
        display: none;
    }

    footer {
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        line-height: 1.3;
        padding: 1rem;
        top: -9%;
        width: 59%;
        letter-spacing: 0;
    }
}

@media only screen and (max-width:767px) {
    .logo {
        justify-content: center;
    }

    :is(article>p:first-of-type, h1) {
        text-align: center;
    }

    :is(.logo, .info) {
        padding: 0 0 16px;
    }

    :is(.flexbox, .info) {
        display: block;
    }

    :is(.flexbox div, .info .text) {
        width: 100% !important;
    }

    h1 {
        position: static;
        padding: 16px;
        width: auto;
        margin: 0 -16px;
    }

    ul {
        margin: 0 0 16px;
    }

    li {
        padding-left: 20px;
    }
}