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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background: #fff url(background.jpg);
    overflow: hidden;
    position: relative;
}

#wrapper .width2 {
    padding-right: 260px;
}

#wrapper .width4 {
    padding-right: 126px;
}

#wrapper .banner {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 420px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .width {
    max-width: 540px;
}

#wrapper article {
    padding: 20px 70px 1px;
}

#wrapper footer {
    background: url(background-bottom.png) no-repeat;
    background-size: 100% 100%;
    min-height: 101px;
    padding: 5.5% 70px 10px;
}

#wrapper footer p {
    color: #fff;
    margin-bottom: 0;
    font-size: 19px;
}

#wrapper footer p a {
    color: #fff !important;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 27px;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

#wrapper h1 strong {
    color: #EE3131;
    font-weight: 900;
    font-size: 25px;
}

#wrapper h2 {
    font-size: 37px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
}

#wrapper h3 {
    font-size: 16px;
    font-weight: 900;
    color: #EE3131;
}

#wrapper .width3 {
    max-width: 280px;
}

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

#wrapper ul {
    margin: 0 0 17px 6px;
    list-style: none;
}

#wrapper ul .li {
    width: 77%;
}

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

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

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

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

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

    #wrapper h1 strong {
        white-space: normal;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper .banner {
        width: 40%;
        max-width: 100%;
    }

    #wrapper footer {
        padding: 36px 16px 16px;
        min-height: auto;
    }
}

@media (max-width: 799px) {
    #wrapper .banner {
        position: static;
        display: flex;
        justify-content: end;
        width: auto;
    }

    #wrapper .width2,
    #wrapper .width4 {
        padding-right: 0;
    }

    #wrapper ul {
        max-width: 100%;
    }

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

    #wrapper ul .li {
        width: auto;
    }

    #wrapper .width {
        max-width: 100%;
    }
}