: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: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 755px;
    margin: 16px auto;
    border: 5px solid #3164a5;
    border-radius: 20px 20px 0 0;
    background: #fff;
}

article {
    padding: 20px 30px;
}

footer {
    padding: 20px 30px;
    background: #ebeaea;
    border-top: 2px solid #7A7B75;
}

p {
    margin: 0 0 18px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    color: #3164a5;
}

h1 small {
    display: block;
    font-size: 18px;
    line-height: 22px;
}

h1 span {
    white-space: nowrap;
}

h2 {
    border-color: #7A7B75;
    margin: 0 0 0 -1.125rem;
    padding: 0.35rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: #3164a5;
    display: inline-block;
    position: relative;
}

h2::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 0 1.2em 1.2em 0;
    border-color: transparent;
    border-right-color: #3164a5;
    width: 0;
    height: 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #3164a5;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #7A7B75;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 8px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.buttom {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.buttom a {
    display: inline-block;
    background: #3164a5;
    color: #fff;
    padding: 8px 20px;
}

.box {
    background: #e6ecf2;
    padding: 0.75rem;
    margin-bottom: 15px;
}

.margin {
    margin-bottom: 0;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

@media all and (max-width: 754px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    :is(article, footer) {
        padding: 16px;
    }

    .logo {
        padding: 16px;
        gap: 15px;
    }
}