@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v13-latin-regular.eot');
    src: url('../fonts/mulish-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-regular.woff2') format('woff2'), url('../fonts/mulish-v13-latin-regular.woff') format('woff'), url('../fonts/mulish-v13-latin-regular.ttf') format('truetype'), url('../fonts/mulish-v13-latin-regular.svg#Mulish') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/mulish-v13-latin-700.eot');
    src: url('../fonts/mulish-v13-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-700.woff2') format('woff2'), url('../fonts/mulish-v13-latin-700.woff') format('woff'), url('../fonts/mulish-v13-latin-700.ttf') format('truetype'), url('../fonts/mulish-v13-latin-700.svg#Mulish') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #212529;
    font-family: 'Mulish', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5rem;
    font-weight: 400;
}

#wrapper {
    max-width: 912px;
    margin: 16px auto;
    border: 1px solid #212529;
    background-color: #fff;
    overflow: hidden;
}

article {
    padding: 20px 40px 0;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 48%;
}

footer {
    padding: 12px 40px 50px;
}

footer p {
    margin-top: 1rem;
}

footer a {
    display: inline-block;
    padding: 7px 16px 10px;
    background: #013d7a;
    color: #fff !important;
    border-radius: 5px;
}

p {
    margin: 0 0 16px;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: 23px;
    line-height: 29px;
    color: #013d7a;
}

h1 small {
    display: block;
    font-size: 16px;
    margin: 3px 0 0;
}

h1 a {
    color: #013d7a !important;
}

h2 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 29px;
}

h3 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 25px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    margin: 0 0 6px;
}

ul li:before {
    content: "\25A0";
    color: #013d7a;
    float: left;
    margin-top: -1px;
    font-size: 14px;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:910px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 12px 16px 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    li br {
        display: none;
    }

    span {
        white-space: nowrap;
    }
}

@media all and (max-width:767px) {
    .flex {
        display: block;
    }

    .flex div {
        width: 100%;
    }
}