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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 976px;
    margin: 16px auto;
    border: 1px solid #000;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper span.color {
    color: #CC3333;
}

#wrapper .footer .background {
    background: #CC3333;
    width: 71%;
    height: 40px;
}

#wrapper .footer .background-2 {
    background: #231E20;
    height: 40px;
    padding: 14px 10px 0 0;
    width: 52%;
    text-align: center;
    position: relative;
    transform: skewX(-17deg);
    margin: 0 -7px 0 -6px;
}

#wrapper .footer .background-2 .box {
    transform: skewX(17deg);
    display: inline-block;
    margin: 0;
}

#wrapper .footer .background-2:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    background: #fff;
    height: 45px;
    width: 3px;
    transform: rotate(4deg);
}

#wrapper .footer .background-2 a {
    color: #fff;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

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

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    bottom: 40px;
    left: 108px;
    z-index: 6;
    background: #fff;
    width: 78%;
}

#wrapper h1 .span {
    display: block;
    font-size: 15px;
    font-weight: 400;
}

#wrapper h2 {
    margin: 25px 0;
    font-weight: 700;
    font-family: 'Open Sans', Arial, sans-serif;
    text-align: left;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #CC3333;
}

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

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

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

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 19px;
    position: absolute;
    top: -2px;
    left: 0;
    line-height: 1;
}

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

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

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

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

@media all and (max-width: 772px) {
    #wrapper .footer .background-2 {
        width: 74%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        height: 50px;
    }

    #wrapper .footer .background {
        width: 30%;
        height: 50px;
    }

    #wrapper .footer .background-2:before {
        height: 50px;
        top: 0;
    }
}

@media all and (max-width: 700px) {
    #wrapper .article {
        padding-left: 16px;
        padding-right: 16px;
    }

    #wrapper h1 {
        position: static;
        width: auto;
        padding: 10px 16px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}