:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    padding: 0 181px 0 0;
    max-width: 527px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
    position: relative;
}

header {
    width: 180px;
    padding: 16px 16px 1px;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
}

article {
    padding: 16px 16px 2px 16px;
}

footer {
    border-left: 1px solid #000;
    height: 100%;
    padding: 130px 16px 1px;
    width: 180px;
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
}

p {
    margin: 0 0 12px;
    text-align: justify;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
}

h2 {
    font-size: 15px;
    line-height: 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    padding: 0 0 12px 18px;
    list-style: none;
}

ul li {
    padding-left: 12px;
    position: relative;
}

li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

h1 small {
    display: block;
    font-size: 16px;
    line-height: 20px;
}

.logo {
    margin-top: 105px;
}

@media all and (max-width: 526px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        text-align: left;
        hyphens: auto;
    }
}

@media all and (max-width: 490px) {
    #wrapper {
        padding: 0;
    }

    header {
        position: static;
        width: auto;
    }

    .logo {
        margin-top: 0;
    }

    footer {
        padding: 1px 16px;
        position: static;
        width: auto;
        border: none;
    }
}