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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 800px;
    margin: 12px auto;
    box-shadow: 1px 1px 10px #808080;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Source Sans 3", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .header a {
    position: absolute;
    top: 5%;
    left: 46%;
    width: 48%;
    height: 33%;
    z-index: 1;
}

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

#wrapper .footer {
    padding: 20px 30px;
    background: #ECEDF0;
}

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

#wrapper .left {
    width: 50%;
}

#wrapper .right {
    width: 46%;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -30px 16px;
    font-size: 28px;
    font-weight: 700;
    background: #e5e7eb;
    padding: 16px 30px;
    text-align: center;
    color: #BF0D0E;
}

#wrapper h3 {
    margin: 16px 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #BF0D0E;
    padding-bottom: 10px;
    position: relative;
}

#wrapper h3:before {
    content: "";
    width: 50px;
    height: 8px;
    background: #BF0D0E;
    position: absolute;
    bottom: 0;
    left: 0;
}

#wrapper a {
    color: #BF0D0E;
    text-decoration: none;
}

#wrapper ul {
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 2px;
}

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

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

#wrapper .btn a {
    display: inline-block;
    background: #be000b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.5s;
}

#wrapper .btn a:hover {
    background: #ca2028;
}

@media (max-width: 800px) {
    #wrapper {
        margin: 8px;
        border: none;
    }

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

    #wrapper .footer {
        padding: 16px;
    }

    #wrapper .header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 659px) {
    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }
}

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