* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 915px;
    margin: 16px auto;
    border: 1px solid #c9152e;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

#wrapper .img {
    margin-top: -34px;
}

#wrapper .mb {
    margin-bottom: 8px;
}

#wrapper .mb-1 {
    margin-bottom: 16px;
}

#wrapper .red {
    color: red;
    display: block;
}

#wrapper .pad {
    padding-left: 30px;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .block {
    display: block;
}

#wrapper .header {
    padding: 20px 30px;
    border-bottom: 1px solid #c9152e;
}

#wrapper .article {
    padding: 20px 30px 0;
}

#wrapper .footer {
    padding: 0 30px 30px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper .center {
    text-align: center;
}

#wrapper strong {
    font-weight: 500;
}

#wrapper .grid {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

#wrapper .banner {
    margin-bottom: 15px;
}

#wrapper .button a:hover {
    background: #BD142B;
}

#wrapper .button a {
    display: inline-block;
    padding: 8px 16px;
    color: #fff !important;
    background: #c9152e;
}

#wrapper .button {
    display: flex;
    justify-content: end;
}

#wrapper .grid p {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 16px;
    width: 210px;
}

#wrapper h1 {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

#wrapper h3 {
    margin: 22px 0 15px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #c9152e;
    text-decoration: none;
}

#wrapper ul ul {
    margin: 7px 0 7px 18px;
}

#wrapper ul ul li:before {
    content: "\25CB";
    font-size: 14px;
    font-family: "Times New Roman", serif;
    line-height: 1;
    top: 2px;
}

#wrapper ul ul ul li:before {
    content: '\25a0';
    font-size: 11px;
    top: -1px;
}

#wrapper ul {
    margin: 0 0 22px 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 25px;
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 914px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .grid {
        justify-content: space-between;
    }

    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .footer {
        padding: 0 16px 16px;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media (max-width: 499px) {
    #wrapper .header {
        padding: 16px;
        display: flex;
        justify-content: center;
    }

    #wrapper .button {
        justify-content: center;
    }

    #wrapper .img {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #wrapper ul,
    #wrapper ul ul {
        margin-left: 0;
    }

    #wrapper ul li {
        padding-left: 15px;
    }
}