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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 990px;
    margin: 16px auto;
    border: 1px solid #0066b3;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    color: #0066B3;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    background: #fff;
    padding: 12px 25px;
    color: #0066B3 !important;
    border-radius: 6px;
    transition: 0.5s;
}

#wrapper .button a:hover {
    box-shadow: 0 2px 15px #fff;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 30px 68px 10px;
}

#wrapper .footer {
    padding: 15px 75px;
    background: #0066B3;
}

#wrapper .footer p {
    color: #fff;
}

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

#wrapper strong {
    font-weight: 700;
}

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

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

#wrapper h4 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

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

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

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

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

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

#wrapper .content h3 {
    font-size: 20px;
    margin-bottom: 11px;
}

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

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

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

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

    #wrapper .nobr-1 {
        white-space: normal;
    }

    #wrapper h3 {
        font-size: 20px;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }
}