* {
    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: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 822px;
    margin: 16px auto;
    border: 2px solid #0079be;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 15%;
    right: 7%;
    width: 49%;
    height: 52%;
}

#wrapper article {
    padding: 25px 30px 0;
}

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

#wrapper .flexbox div {
    width: 46%;
}

#wrapper footer {
    padding: 0 30px;
}

#wrapper .link {
    margin: 0 -30px;
    background: url(background.jpg) 0 0 no-repeat;
    padding: 16px 30px;
    height: 71px;
    font-size: 32px;
}

#wrapper .link a {
    color: #fff !important;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 0 16px -30px;
    padding: 10px 40px 10px;
    font-size: 38px;
    font-weight: 700;
    background: #0F2B5C;
    display: inline-block;
    color: #fff;
    width: 90%;
}

#wrapper h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper h3.big {
    font-size: 23px;
    margin-bottom: 25px;
}

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

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

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

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

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

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

    #wrapper header a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

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

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

    #wrapper footer {
        padding: 0 16px;
    }

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

}

@media (max-width: 699px) {
    #wrapper .flexbox div {
        width: 100%;
    }

    #wrapper h1 {
        width: auto;
        padding-right: 16px;
        font-size: 34px;
    }

}

@media (max-width: 400px) {
    #wrapper p.link {
        font-size: 25px;
    }

}