@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff');
}

* {
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #575656;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    line-height: 20px;
    font-size: 16px;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #575656 solid;
    max-width: 900px;
    position: relative;
    padding: 10px;
    background-color: #FFF;
    overflow: hidden;
}

:is(h1, h2, h3, h4, strong) {
    font-weight: 700;
}

article {
    padding: 0 10px;
    background: #C5D4DB;
    margin: 8px 0;
}

article .content:last-of-type {
    background: #fff;
    margin: -1px -10px 0;
    border-bottom: 0;
    border-top: 2px solid #646363;
    padding: 25px 10px 5px;
}

footer .content div {
    background: transparent;
    color: #fff;
    font-size: 21px;
    line-height: 32px;
    padding-bottom: 0;
}

footer a {
    color: #fff !important;
}

.content {
    border-bottom: 1px solid #646363;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px 0 0;
}

.content div {
    background: #fff;
    width: 70.5%;
    padding: 10px 10px 15px;
    font-size: 105%;
}

.content div em {
    font-style: normal;
    font-size: 25px;
}

footer .content {
    background: #9E9E9C;
    border: 0;
    margin: 0 0 8px;
}

ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

ul li {
    padding-left: 13px;
    position: relative
}

ul li:before {
    content: '\2022';
    position: absolute;
    top: -3px;
    left: 0;
    color: #575656;
    font: 400 24px/24px arial;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #1D1D1B;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle
}

p {
    padding-bottom: 15px;
}

h1 {
    margin: 2px 0 12px;
    font-size: 24px;
    line-height: 28px;
    color: #1D1D1B;
}

h2 {
    font-size: 21px;
    line-height: 25px;
    color: #fff;
    width: 29.5%;
    text-transform: uppercase;
    padding: 10px;
}

h3 {
    text-transform: uppercase;
    color: #1D1D1B;
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 15px;
}

h4 {
    text-align: center;
    font-weight: 400;
    background: #C6C5C3;
    padding: 8px;
    font-size: 30px;
    line-height: 30px;
    padding-right: 71px;
}

h5 {
    color: #1D1D1B;
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 15px;
}

@media only screen and (max-width: 898px) {
    #wrapper {
        padding: 1rem;
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    footer .content div {
        font-size: 18px;
        line-height: 28px;
    }

    .content div em {
        font-style: normal;
        font-size: 19px;
    }

    article br {
        display: none
    }

    :is(p, li) span {
        white-space: nowrap;
    }

    h4 {
        padding-right: 0;
    }
}

@media only screen and (max-width:420px) {
    .content div {
        width: 100%;
    }

    article .content {
        margin: 0 -10px;
        border: 0;
    }

    h2 {
        width: 100%;
    }
}