:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@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');
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
}

#wrapper {
    border: solid thin #cbc;
    max-width: 860px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    padding: 26px 30px 18px;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin: 0 0 20px;
}

header img {
    margin: 10px 0;
}

header p {
    font-family: 'Roboto', Arial, sans-serif;
    font-style: italic;
    width: 422px;
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
    background: #2F5596;
    color: #fff;
    font-weight: 400;
}

h1 {
    font-size: 21px;
    margin: 20px 0;
    line-height: 35px;
    background-color: #A20000;
    color: #fff;
    padding: 5px 60px;
    font-weight: 700;
}

h1 span {
    font-size: 21px;
    font-weight: 400;
    display: block;
}

h2 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

h3 {
    font-size: 16px;
    font-weight: 700;
}

p:not(:last-child) {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 4px 0 0;
    list-style: none;
}

.ul {
    margin-left: 5px;
}

ul li {
    padding: 0 0 2px 25px;
}

li:before {
    text-indent: -25px;
    content: "\2022";
    float: left;
    font-size: 25px;
    margin-top: -1px;
}

.background {
    padding: 5px 10px;
    background-color: #2F5597;
    margin: 20px 0;
}

.background p {
    color: #fff;
}

.justify {
    padding: 16px;
    text-align: justify;
    hyphens: auto;
    color: #fff;
}

.background ul {
    margin-left: 25px;
    color: #fff;
}

.margin-left {
    margin-left: 16px;
}

p span {
    white-space: nowrap;
}

@media screen and (max-width:858px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
    }

    .justify {
        text-align: left;
    }

    .background {
        color: #fff;
        padding: 10px 16px;
        background-color: #2F5597;
        margin: 16px 0;
    }

    ul {
        margin-left: 0 !important
    }

    h1 {
        margin: 6px 0 16px;
        line-height: 30px;
        background-color: #A20000;
        color: #fff;
        padding: 10px 16px;
    }

    header p {
        line-height: 21px;
    }

    header br {
        display: none;
    }
}

@media screen and (max-width:655px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header p {
        width: 100%;
    }
}

@media screen and (max-width:374px) {
    a {
        white-space: normal !important;
    }
}