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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    border: 2px solid #B61F29;
    padding: 30px 50px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    padding: 0;
}

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

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 47px;
    font-weight: 700;
    color: #B61F29;
}

#wrapper h1 span {
    font-size: 25px;
}

#wrapper h3 {
    margin-bottom: 0;
    font-size: 16px;
    color: #B61F29;
    font-weight: 400;
}

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

#wrapper .color {
    color: #B61F29;
}

#wrapper ul {
    margin: 0 0 35px -9px;
    list-style: none;
}

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

#wrapper ul li:before {
    content: "\002022";
    font-size: 19px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0px;
    line-height: 1;
    left: 0;
    color: #B61F29;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .big {
    font-size: 19px;
    color: #575756;
}

#wrapper .note {
    font-size: 13px;
}

#wrapper .bottom {
    font-size: 14px;
    background: url(bottom.png) no-repeat center top/100% auto;
    margin: 25px -50px 0;
    padding: 72px 50px 0;
    position: relative;
}

#wrapper .logo {
    position: absolute;
    top: 56px;
    right: 25px;
}

#wrapper .mb20 {
    margin-bottom: 20px;
}

#wrapper .mb40 {
    margin-bottom: 40px;
}

#wrapper .mb70 {
    margin-bottom: 70px;
}

#wrapper .tal {
    text-align: left;
}

@media (max-width: 799px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: 0;
        padding: 30px 20px;
    }

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

@media (max-width: 730px) {
    #wrapper .logo {
        position: static;
    }
}

@media (max-width: 599px) {
    #wrapper h1 {
        font-size: 40px;
    }

    #wrapper .big {
        font-size: 17px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }
}