@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 980px;
    background: #fff;
    border: solid thin #23a8e2;
    padding: 20px 30px;
}

header {
    margin-bottom: 16px;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 50px;
    margin: 0 0 16px;
    color: #23a8e2;
    text-align: center;
}

h1 span {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

h2 {
    font-size: 34px;
    margin: 16px 0;
    color: #23a8e2;
    text-align: center;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 16px 25px;
}

ul li {
    list-style: none;
    text-indent: -25px;
}

ul li:before {
    font-size: 20px;
    margin-right: 25px;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
    color: #23a8e2;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer {
    border-top: 1px solid #23a8e2;
}

footer p {
    font-size: 96%;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
}

.footer-flex-content:nth-of-type(1) {
    width: 41%;
}

.footer-flex-content:nth-of-type(2) {
    width: 56%;
}

@media screen and (max-width: 979px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 579px) {
    :is(h1, h2) {
        font-size: 26px;
    }

    .footer-flex {
        display: block;
    }

    .footer-flex-content {
        width: 100% !important;
        margin-top: 10px;
    }
}