@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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: 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 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #49536A;
    line-height: 1.125rem;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #F7F7F7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo {
    padding: 1rem;
    width: 100%;
    background: #FFF;
}

article {
    margin: -4rem 0 1rem 1rem;
    background: #FFF;
    width: 67%;
    padding: 1rem;
}

footer {
    padding: 1rem;
    width: 30%;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 22px;
    line-height: 24px;
}

h1 small {
    display: block;
    font-size: 13px;
}

h2 {
    font-size: 18px;
    margin: 1rem 0;
    line-height: 22px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    text-indent: -1rem;
}

hr {
    background: #697E70;
    border: none;
    display: block;
    width: 100%;
    height: 4px;
    margin: 0 0 12px;
}

.text {
    text-align: right;
}

.color {
    color: #A9AEB9 !important;
    border-bottom: 1px dashed;
    text-decoration: none !important;
}

.button {
    display: flex;
    margin: 25px 0;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #000;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
}

.button a:hover {
    opacity: 0.9;
}

.solical {
    margin: 1rem 0;
}

.border {
    border-top: 1px solid rgba(0, 17, 51, 0.15);
    padding: 1rem 0 0;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width:767px) {
    :is(article, footer) {
        width: 100%;
    }
}