@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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #13141a;
}

#wrapper {
    margin: 1rem auto;
    max-width: 858px;
    background: #fff;
    border: 4px solid #20abe0;
}
header{padding-left: 10px;}
article {
    padding: 6px 16px 0;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content {
    width: 49%;
}

.color {
    color: #20abe0 !important;
}

.text-center {
    text-align: center;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

.position {
    position: absolute;
    left: 40%;
    bottom: 16px;
    font-size: 30px;
}

.margin-bottom {
    margin-bottom: 0 !important;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
    color: #20abe0;
}

h1 {
    font-size: 36px;
    margin: 0 0 16px;
}

h1 span {
    font-size: 20px;
}

h2 {
    font-size: 16px;
}

p {
    margin-bottom: 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #13141a;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 10px 15px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 32px;
    margin-right: 15px;
    position: relative;
    top: -10px;
    float: left;
    content: ".";
}

footer {
    padding: 0 16px 16px;
    position: relative;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

.button {
    display: block;
    margin: 0 auto 16px;
    background: #20abe0;
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    color: #fff !important;
}

@media screen and (max-width: 856px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .justify {
        text-align: left;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .flex-box {
        display: block;
    }

    .flex-box-content {
        width: 100% !important;
    }

    .footer-flex {
        flex-direction: column;
        align-items: center;
    }

    footer p {
        text-align: center;
    }

    .position {
	    font-size: 25px;
        position: static;
        display: block;
        width: 190px;
        margin: 10px auto;
    }
}