@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;
}

html {
    min-height: 100%;
}

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

#wrapper {
    position: relative;
    max-width: 951px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff url(../images/background.jpg) no-repeat 0 -10px;
}

h1 {
    margin: -6px 0 16px;
    font-size: 26px;
    text-align: center;
    line-height: 31px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
}

h3 {
    font-size: 16px;
    margin: 16px 0 0;
    font-weight: 400;
    line-height: 18px;
}

strong {
    font-weight: 700;
}

p:not(:last-child) {
    margin-bottom: 23px;
}

p.margin-bottom {
    padding-bottom: 1rem;
}

p.just {
    text-align: justify;
    hyphens: auto;
    text-wrap: pretty;
}

p span {
    white-space: nowrap;
}

.special {
    word-spacing: 2px;
}

header {
    border-top: 25px solid #0D2E4E;
    padding: 47px 103px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content {
    padding: 0 103px 21px;
}

.background {
    padding: 31px 124px 16px 103px;
    background: #0D2E4E;
}

.background p {
    color: #fff;
}

.background .font-size {
    font-size: 14px;
    text-align: justify;
}

footer {
    padding: 24px 103px 43px;
}

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

a.link {
    color: #D8314C !important;
}

ul {
    margin: 0 0 16px 90px;
    list-style: none;
    font-size: 94%;
}

ul li {
    padding-left: 24px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 19px;
    text-indent: -24px;
    margin-top: 1px;
}

img {
    max-width: 100%;
}

@media (max-width: 951px) {
    #wrapper {
        margin: 0;
        border: none;
        background-size: cover;
        background-position: center;
    }

    .background {
        padding: 1rem 90px;
    }

    .background .font-size {
        text-align: left;
    }

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

    p.just {
        text-align: left;
    }

    br {
        display: none;
    }
}

@media (max-width: 767px) {
    header {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .content {
        padding: 1rem;
    }

    ul {
        margin-left: 0;
    }

    .background {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
    }

    p span {
        white-space: nowrap;
    }
}