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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 928px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background: #fff url(background.jpg) no-repeat;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    padding: 80px 32px 20px;
    line-height: 1.3;
    position: relative;
    background-size: cover;
}

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

#wrapper .big {
    font-size: 16px;
    margin-bottom: 10px;
}

#wrapper .big2 {
    font-size: 17px;
    margin-bottom: 25px;
}

#wrapper .just {
    text-align: justify;
    padding-right: 153px;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    position: absolute;
    top: 14px;
    right: 45px;
}

#wrapper .article {
    padding: 20px 26px 20px;
    background: rgba(255, 255, 255, .9);
}

#wrapper h3.title {
    color: #C12227;
    font-size: 32px;
    margin-bottom: 25px;
}

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

#wrapper strong {
    font-weight: 700;
}

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

#wrapper h1 {
    margin: 0 0 20px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

#wrapper h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}

#wrapper h3.mb-1 {
    margin-bottom: 4px;
}

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

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

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

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

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

@media (max-width: 927px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 90px 3% 7%;
        background-size: cover;
        text-wrap: pretty;
    }

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

    #wrapper .just {
        text-align: left;
    }

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

    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    #wrapper {
        padding-top: 20px;
    }

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

    #wrapper .article {
        padding: 16px;
    }

    #wrapper h1,
    #wrapper .just {
        padding-right: 0;
    }
}

@media (max-width: 499px) {
    #wrapper h1 {
        font-size: 25px;
        line-height: 1.2;
    }
}