@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #3c3c3b;
}

#wrapper {
    margin: 1rem auto;
    max-width: 1000px;
    background: #fff url(../images/background.jpg) no-repeat left top;
    border: solid thin #cbcbcb;
}

header {
    padding: 32px 30px 0 92px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-direction: row-reverse;
    align-items: center;
}

figure {
    display: none;
}

header p {
    font-size: 14px;
    flex: 1 1 0;
}

article {
    padding: 38px 30px 0 348px;
}

.flex-box {
    margin: 45px 0 22px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content {
    width: 49%;
}

.color {
    color: #00669f !important;
}

.margin-bottom {
    margin-bottom: 0;
}

.padding {
    padding-left: 32px;
    font-size: 14px;
}

footer {
    padding: 40px 30px 16px 282px;
}

footer p {
    margin: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 32px;
    color: #00669f;
    margin: 0 0 32px;
}

h2 {
    font-size: 18px;
    margin: 0 0 18px;
    color: #00669f;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #00669f;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 16px 14px;
}

ul li {
    list-style: none;
    padding-left: 18px;
    font-size: 97%;
}

ul li:before {
    font-size: 26px;
    text-indent: -18px;
    float: left;
    content: "\2022";
    color: #00669f;
}

@media screen and (max-width: 1000px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 16px 16px 0 348px;
    }

    .padding {
        padding-left: 18px;
    }

    :is(h1, h2, p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul {
        margin-left: 0;
    }

    :is(a, span:not(span.normal)) {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media screen and (max-width: 815px) {
    #wrapper {
        background: #fff;
    }

    :is(header, article) {
        padding: 16px 16px 0;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    figure {
        display: block;
    }

    .header-flex-content {
        width: 100% !important;
    }

    footer {
        padding: 0 16px 16px;
    }
}

@media screen and (max-width: 670px) {
    .flex-box {
        display: block;
        margin: 0;
    }

    .flex-box-content {
        width: 100% !important;
    }

    .mobile-margin {
        margin-bottom: 0 !important;
    }
}