@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: 13px;
    line-height: 21px;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 730px;
    background: #fff;
    border: 8px solid #5b2f8f;
    overflow: hidden;
    border-radius: 40px 0 0;
}

header {
    padding: 16px 25px;
    background: #5b2f8f;
    text-align: right;
}

article {
    padding: 16px 25px;
}

.right {
    text-align: right;
}

.margin-bottom {
    margin-bottom: 0;
}

.button {
    width: 235px;
    height: 43px;
    line-height: 43px;
    display: block;
    margin: 16px 0 0;
    text-align: center;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid #cbcbcb;
    box-shadow: 2px 2px 10px #888888;
    color: #00aeef;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 30px;
    margin: 0 0 2px;
}

h2 {
    font-size: 13px;
}

hr {
    border: none;
    height: 1px;
    width: 100%;
    margin: 10px 0;
    display: block;
    background: #fff;
}

p {
    margin-bottom: 9px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #00aeef;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 10px 34px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 23px;
    margin-right: 15px;
    position: relative;
    top: 1px;
    float: left;
    content: "\2022";
}

footer {
    padding: 16px 25px;
    background: #5b2f8f;
    color: #fff;
}

@media screen and (max-width: 729px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}