@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 640px;
    margin: 1rem auto;
    border: 2px solid #005693;
    overflow: hidden;
    background-color: #fff;
}

header {
    padding: 25px 30px 0;
}

article {
    padding: 20px 30px 0;
}

footer {
    padding: 20px 34px 20px 39px;
    background: #015F9D;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #005E9D;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 24px;
    list-style: none;
}

ul span {
    white-space: nowrap;
}

ul li {
    padding-left: 10px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 17px;
    text-indent: -10px;
}

h1 {
    margin: 16px 0;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #005693;
}

h1 span {
    font-size: 20px;
    line-height: 0;
}

h2 {
    font-size: 17px;
    line-height: 21px;
    margin: 0 0 16px;
    font-weight: 400;
}

h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #005E9D;
    margin: 0 0 4px;
}

.border {
    border: 2px solid #005693;
    padding: 35px 16px 23px 16px;
    border-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 295px;
    font-size: 14px;
    line-height: 18px;
}

.border h3 {
    margin: 0;
}

h4 {
    font-size: 23px;
    line-height: 27px;
    font-weight: 700;
}

h4 a {
    color: #fff !important;
}

p:not(:last-child) {
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.colum-left {
    width: 48%;
}

.colum-right {
    width: 48%;
    padding: 0 0 168px;
    position: relative;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
    font-size: 15px;
}

.link {
    color: #000 !important;
}

@media (max-width:638px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    footer {
        padding: 16px;
        flex-wrap: wrap;
    }

    .border {
        margin: 0;
        padding: 16px;
        width: 100%;
    }

    header {
        padding: 16px 16px 0;
    }

    article {
        padding: 0 16px;
    }

    :is(.colum-left, .colum-right) {
        width: 100%;
    }

    .colum-right {
        padding-bottom: 0;
    }

    .border {
        position: static;
    }

    article .p br {
        display: none;
    }

    p span {
        white-space: nowrap;
    }

}

@media (max-width:520px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    h4 {
        text-align: center;
    }
}