* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 885px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    padding: 40px 80px;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .red {
    color: #C00000;
}

#wrapper .big {
    font-size: 19px;
    margin-bottom: 3px;
    line-height: 1;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 24px;
}

#wrapper .center {
    text-align: center;
}

#wrapper p {
    margin-bottom: 20px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper .block {
    display: block;
}

#wrapper h1 .small {
    font-size: 18px;
    font-weight: 400;
}

#wrapper .mb {
    margin-bottom: 35px;
}

#wrapper .mb-0 {
    margin-bottom: 0;
}

#wrapper h1 {
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

#wrapper h2 {
    padding: 62px 16px 0;
    font-size: 24px;
    font-weight: 700;
    background: #9C0631;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    transform: rotate(-8deg);
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 26px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 30px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 21px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    left: 3px;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 884px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 5%;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .block {
        display: inline;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper ul li {
        padding-left: 18px;
    }
}

@media (max-width: 399px) {
    #wrapper .header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}