@font-face {
    font-display: swap;
    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-display: swap;
    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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 21px;
    font-size: 15px;
    color: #1A1E21;
    font-weight: 400;
}

#wrapper {
    margin: 16px auto;
    max-width: 910px;
    border: 1px solid #777;
    position: relative;
    background: #FFF url(../images/background.jpg) bottom right no-repeat;
    overflow: hidden;
}

p {
    margin: 0 0 16px;
}

h1 {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    background: #da001a;
    color: #fff;
    font-weight: 400;
    padding: 16px 30px;
}

h1 strong {
    display: block;
    font-size: 31px;
    line-height: 1.3;
    margin: 10px 0;
    font-weight: 400;
}

h2 {
    font-size: 15px;
    background: #959595;
    font-weight: 400;
    color: #fff;
    padding: 15px 30px;
}

h3 {
    color: #da001a;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

h4 {
    color: #D91830;
    font-size: 15px;
    line-height: 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin-bottom: 16px;
    list-style: none;
    text-align: justify;
    hyphens: auto;
}

ul li {
    padding-left: 20px;
    position: relative
}

ul li:before {
    content: '\2022';
    position: absolute;
    top: -2px;
    left: 0;
    color: #da001a;
    font: 400 24px/24px arial;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 22px;
}

.content {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 16px 16px 0;
}


.logo {
    display: flex;
    justify-content: flex-end;
    margin: 0 -45px 24px;
}

footer p {
    color: #808080;
    font-size: 16px;
    text-align: justify;
}

.flex div {
    width: 47%;
}

.color {
    color: #da001a !important;
}

.flex div:nth-of-type(2) {
    width: 49%;
}

.justify {
    text-align: justify;
}

@media only screen and (max-width: 910px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(ul, .justify, footer p) {
        text-align: left;
    }

    .logo {
        margin: 0 0 24px;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    :is(a, span) {
        white-space: nowrap;
    }
}

@media only screen and (max-width: 767px) {
    .logo {
        justify-content: center;
    }

    .flex div {
        width: 100% !important;
    }

    .content {
        margin: 0 auto;
        padding: 16px 16px 6px;
    }

    .flex {
        margin: 0 0 10px;
    }

    .margin {
        margin: 0;
    }

    :is(h1, h2) {
        padding: 16px;
    }
}