* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 960px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    box-shadow: 0 0 10px 10px #cfcfcf;
    overflow: hidden;
    color: #4C4B43;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    position: relative;
    line-height: 1.3;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding-bottom: 16px;
    display: flex;
    justify-content: end;
}

#wrapper .article {
    padding: 20px 30px 0;
}

#wrapper .footer {
    padding: 35px 20px 29px;
    background: #9C1D3F;
    color: #fff;
    margin-right: -14px;
    margin-top: 70px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .left {
    width: 47%;
}

#wrapper .right {
    width: 48%;
}

#wrapper p {
    margin-bottom: 14px;
}

#wrapper strong {
    font-weight: 500;
}

#wrapper h1 {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 500;
    color: #9C1D3F;
}

#wrapper h1+p {
    margin-bottom: 25px;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

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

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:before {
    content: "\0000bb";
    position: absolute;
    top: -4px;
    left: 0;
    color: #9C1D3F;
    font-size: 23px;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media (max-width: 959px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }

    #wrapper .left,
    #wrapper .right {
        width: 48%;
    }
}

@media (max-width: 650px) {

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }

    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .footer {
        width: auto;
        padding: 16px;
        margin: 0;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper h1 {
        font-size: 22px;
    }

    #wrapper .header {
        justify-content: center;
    }
}