* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 775px;
    margin: 12px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .btn {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

#wrapper .footer .btn a {
    display: inline-block;
    background: #B30026;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    transition: 0.4s;
}

#wrapper .btn a:hover {
    background: #c70c34;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .just {
    text-align: justify;
}

#wrapper .footer a {
    color: #B30026;
}

#wrapper h2 a {
    color: #0563CE;
    text-decoration: underline;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .header a {
    position: absolute;
    top: 12%;
    left: 31%;
    width: 15%;
    height: 47%;
    z-index: 1;
}

#wrapper .article {
    padding: 20px 50px;
}

#wrapper .footer {
    padding: 20px;
    background: #B7C8D0;
}

#wrapper .footer p {
    color: #B30026;
}

#wrapper p {
    margin-bottom: 10px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 30px 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #B30026;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 10px;
    font-size: 17px;
    color: #B30026;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #B30026;
}

#wrapper a {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 25px;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media (max-width: 774px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .just {
        text-align: left;
    }

    #wrapper .header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper ul li {
        padding-left: 15px;
    }
}