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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 950px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #494948;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    position: relative;
}

#wrapper .text {
    font-size: 15px;
}

#wrapper .text a {
    color: #494948 !important;
}

#wrapper .small {
    font-size: 14px;
    color: #A7A2A4;
}

#wrapper .logo {
    position: absolute;
    bottom: 3%;
    right: 5%;
}

#wrapper .width {
    padding-right: 200px;
}

#wrapper .img {
    background: url(background.png) no-repeat;
    max-width: 313px;
    height: 183px;
    padding: 25px 30px 10px 40px;
    margin-top: -14%;
    position: relative;
}

#wrapper .banner {
    position: absolute;
    bottom: 14%;
    right: 0;
}

#wrapper .big {
    text-align: justify;
    font-size: 15px;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 0;
}

#wrapper .article {
    padding: 20px 50px;
}

#wrapper .footer {
    padding: 0;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 30px 0;
    font-size: 34px;
    font-weight: 700;
    color: #DA0812;
    text-align: center;
    line-height: 1.3;
}

#wrapper .block {
    display: block;
    font-size: 70%;
}

#wrapper h2 {
    margin: -3px 0 0 -21px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    transform: rotate(-6deg);
}

#wrapper h3 {
    font-size: 16px;
    font-weight: 400;
    color: #DA0812;
}

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

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

#wrapper ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 3px;
    z-index: 10;
}

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

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

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

    #wrapper p {
        text-align: left;
    }

    #wrapper .banner {
        bottom: 21%;
        width: 31%;
    }

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

    #wrapper .article {
        padding: 16px;
    }

}

@media (max-width: 859px) {
    #wrapper ul {
        padding-right: 0;
    }

    #wrapper .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    #wrapper .banner {
        display: none;
    }

    #wrapper .width {
        padding-right: 0;
    }
    #wrapper h1{
        font-size: 30px;
    }
    #wrapper .big{
        text-align: left;
    }
}