@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

: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: 21px;
    color: #546068;
}

#wrapper {
    margin: 1rem auto;
    max-width: 925px;
    background: #fff;
    border: solid thin #546068;
    position: relative;
}

article {
    padding: 12px 25px;
    display: flex;
    gap: 12px;
}

.flex-box-content:nth-of-type(1) {
    width: 29%;
}

.flex-box-content:nth-of-type(2) {
    width: 37%;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 26px;
    line-height: 1.2;
}

h1:before {
    font-size: 28px;
    margin-right: 10px;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
}

h1 span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    position: relative;
    left: -18px;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #546068;
    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";
}

footer {
    padding: 16px 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    width: 300px;
    right: 10px;
    bottom: 7px;
    align-items: flex-end;
}

@media screen and (max-width: 924px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, 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: 900px) {
    .flex-box-content:nth-of-type(2) {
        width: 60%;
    }

    .flex-box-content:nth-of-type(1) {
        width: 39%;
    }

    footer {
        position: static;
        justify-content: center;
        align-items: center;
        width: auto !important;
    }
}

@media screen and (max-width: 652px) {
    article {
        display: block;
    }

    h1 {
        text-align: center;
        margin-bottom: 10px;
    }

    h1 span {
        position: static;
        display: inline;
    }

    h1:before {
        float: none;
    }

    article p {
        text-align: center;
    }

    .flex-box-content {
        width: 100% !important;
    }
}

@media screen and (max-width: 372px) {
    article {
        padding-bottom: 0;
    }

    footer {
        flex-direction: column;
    }

    footer p {
        text-align: center;
    }
}