@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: 1.3;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 734px;
    margin: 1rem auto;
    border: 1px solid #EAEAEA;
    overflow: hidden;
    background-color: #fff;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content {
    width: 48%;
}

h1 {
    margin: 16px 0;
    font-size: 48px;
    font-weight: 700;
    color: #025576;
    line-height: 1.1;
}

h2 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

h1 span {
    white-space: nowrap;
}

h4 a {
    background: #fff;
    display: inline-block;
    margin: 1rem 0 0;
    color: #025577 !important;
    padding: 7px 20px;
    border-radius: 5px;
}

h4 {
    font-weight: 400;
}

footer p {
    color: #fff;
}

p:not(:last-of-type) {
    margin-bottom: 16px;
}

.font {
    font-size: 18px;
}

article {
    padding: 30px 40px;
}

footer {
    padding: 30px 40px;
    background: #025577;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "\2022";
    color: #000;
    font-size: 25px;
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 733px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article,
    footer {
        padding: 16px;
    }

    :is(ul li, p) {
        hyphens: auto;
    }

    br:not(footer br) {
        display: none;
    }
}

@media (max-width: 609px) {
    .content {
        width: 100%;
        margin-top: 15px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 0;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    footer p {
        text-align: center;
    }
}