@font-face {
    font-display: swap;
    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-display: swap;
    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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 16px auto;
    border: 1px solid #ccc;
    background: #fff;
}

p {
    margin-bottom: 18px;
}

p.contact {
    margin-bottom: 20px;
}

p span {
    white-space: nowrap;
}

strong {
    color: #004b8d;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 32px;
    color: #004b8d;
}

h1 span {
    white-space: nowrap;
}

h2 {
    font-size: 26px;
    margin-bottom: 17px;
    line-height: 30px;
    color: #004b8d;
}

h3 {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 20px;
    color: #004b8d;
}

h4 {
    background: #004b8d;
    color: #fff;
    margin: 10px -10px 0 -20px;
    padding: 13px;
    text-align: center;
    line-height: 24px;
    font-weight: 400;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    margin-top: 3px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 18px;
    text-indent: -20px;
}

article {
    position: relative;
    display: flex;
    justify-content: space-between;
}

article p:last-of-type {
    padding-bottom: 0;
}

.content {
    width: 71%;
    padding: 34px 22px 2px 36px;
}

section {
    width: 263px;
    background: #E7E7E8;
    padding: 34px 10px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section p small {
    font-size: 14px;
}

hr {
    border: none;
    border-bottom: 20px solid #004b8d;
}

.border {
    margin: 0 -10px 0 -20px;
    padding: 22px 20px;
    text-align: center;
    border-bottom: 2px solid #fff;
    min-height: 100px;
    line-height: 70px;
}

.none {
    border-bottom: none;
}

.logo {
    background: #004b8d;
    padding: 30px;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
}

.button {
    display: flex;
    margin: 25px 0;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #004b8d;
    color: #fff !important;
    text-align: center;
    width: 100%;
}

.button a:hover {
    opacity: 0.9;
}

.link {
    font-size: 96%;
}

@media (max-width:908px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    h4 {
        margin: 0 -16px 16px -16px;
    }

    :is(ul li, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(section br) {
        display: none;
    }

    .content {
        width: 60%;
        padding: 1rem 0 0;
    }

    section {
        padding: 16px;
        width: 34%;
    }

    article {
        padding: 0 0 0 16px;
        justify-content: space-between;
    }

}

@media (max-width:767px) {
    section p {
        text-align: center;
    }

    .border {
        min-height: auto;
        line-height: normal;
    }

    .content {
        width: 100% !important;
    }

    section {
        margin: 16px 0 0;
        width: 100%;
    }

    article {
        padding: 16px 16px 0;
        display: block;
    }

}