:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 798px;
    background: #fff;
    border: solid thin #cbcbcb;
    position: relative;
}

header {
    position: relative;
}

header>a {
    position: absolute;
    top: 41%;
    left: 10%;
    height: 22%;
    width: 29%;
}

article {
    padding: 16px 62px 0;
}

.position {
    position: absolute;
    right: 43px;
    top: 232px;
}

.position-bottom {
    position: absolute;
    left: 0;
    bottom: -42px;
}

.margin-top {
    margin-top: 30px;
}

.right {
    text-align: right;
}

:is(h2, h2 + p, h2 + p a) {
    color: #fff !important;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1) {
    width: 50%;
}

.flex-box-content:nth-of-type(2) {
    width: 49%;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 35px;
    margin: 0 0 30px;
    color: #00ace9;
    font-family: 'Roboto Slab', serif;
}

h2 {
    font-size: 19px;
}

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 10px 15px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
}

ul ul {
    margin-bottom: 0 !important;
}

ul ul li:before {
    content: "-";
}

.position-bottom {
    background: #00ace8;
    padding: 20px 60px;
}

footer {
    margin: 20px 0 0;
    padding: 16px 62px;
}

.footer-banner {
    position: relative;
    margin-bottom: 42px;
}

.position-real {
    position: relative;
}

.position-real>a {
    position: absolute;
    top: 24%;
    right: 6%;
    height: 48%;
    width: 27%;
}

@media screen and (max-width: 797px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(article, footer) {
        padding: 16px;
    }

    :is(.position-bottom, .position) {
        position: static !important;
        padding: 1rem;
        background: #00ace8;
    }

    :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;
    }

    .position-real img {
        display: block;
    }
}

@media screen and (max-width: 715px) {
    .flex-box {
        display: block;
    }

    .flex-box-content {
        width: 100% !important;
    }

    .mobile-0 {
        margin-bottom: 0 !important;
    }
}