@font-face {
    font-display: swap;
    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-display: swap;
    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;
}

body {
    color: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    border: 1px solid #231f20;
    background-color: #fff;
}

article {
    padding: 20px 30px 32px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.box {
    width: 50.5%;
}

.box:nth-of-type(2) {
    width: 46%;
}

.border {
    padding: 10px 10px 3px;
    border: 1px solid #6791a0;
    margin: 0 0 30px;
}

.border p {
    margin: 0 0 4px;
}

footer {
    padding: 0 30px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

:is(p, ul) {
    margin: 0 0 20px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-size: 1.15625rem;
    line-height: 1.3;
}

h2 {
    font-size: 16px;
    line-height: 1;
    margin: 0 0 3px;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 16px;
}

li:before {
    content: '\2022';
    color: #231f20;
    float: left;
    font-size: 20px;
    text-indent: -16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 848px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0 16px 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(.mobile br) {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .flex {
        display: block;
    }

    .box {
        width: 100% !important;
    }

    .mobile {
        text-align: center;
    }

    .border {
        padding: 10px 16px;
    }
}

@media all and (max-width: 630px) {
    footer {
        flex-direction: column;
        gap: 16px;
    }
}