@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v34-latin-regular.eot');
    src: url('../fonts/roboto-slab-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-regular.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-regular.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-regular.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-regular.svg#RobotoSlab') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-italic.eot');
    src: url('../fonts/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-italic.woff2') format('woff2'), url('../fonts/roboto-v30-latin-italic.woff') format('woff'), url('../fonts/roboto-v30-latin-italic.ttf') format('truetype'), url('../fonts/roboto-v30-latin-italic.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-slab-v34-latin-700.eot');
    src: url('../fonts/roboto-slab-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-700.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-700.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-700.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-700.svg#RobotoSlab') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-family: 'Roboto Slab', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 1000px;
    margin: 16px auto;
    border: 1px solid #958c83;
    padding: 90px 90px 60px;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 0 0 20px;
    display: flex;
    justify-content: center;
}

article {
    padding: 0 0 16px;
}

.flexbox {
    display: flex;
    justify-content: space-between;
}

.flexbox div {
    width: 50%;
}

.flexbox div:nth-of-type(2) {
    width: 44%;
}

.color {
    color: #003764;
}

footer .color-text {
    color: #003764;
}

.info {
    margin-bottom: 20px;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

:is(strong, h2) {
    font-weight: 700;
}

h1 {
    margin: 32px 0;
    font-weight: 400;
    font-size: 31px;
    line-height: 41px;
    text-align: center;
    color: #003764;
}

h1 small {
    font-size: 79%;
    display: block;
}

h2 {
    margin: 0 0 3px;
    font-size: 16px;
    color: #003764;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #958c83;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    margin-bottom: 18px;
}

ul li {
    padding-left: 27px;
    margin: 0 0 3px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 25px;
    text-indent: -28px;
}

li ul {
    padding: 0;
}

li li:before {
    content: "\25CB";
    font-size: 16px;
    text-indent: -16px;
}

img {
    max-width: 100%;
}

.color {
    color: #958c83;
}

@media all and (max-width:999px) {
    #wrapper {
        margin: 0 auto;
        padding: 7%;
        border: none;
    }

    :is(h1, p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul {
        padding: 0 0 16px;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    h1 br {
        display: none;
    }
}

@media all and (max-width:767px) {
    #wrapper {
        padding: 1rem;
    }

    header {
        padding: 0 0 16px;
    }

    article {
        padding: 0;
    }

    .flexbox {
        display: block;
    }

    .flexbox div {
        width: 100% !important;
    }
}

@media all and (max-width:575px) {
    h1 {
        font-size: 30px;
        line-height: 34px;
    }
}