* {
    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: 900px;
    margin: 16px auto;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    padding: 20px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .logo {
    position: relative;
}

#wrapper .logo a {
    position: absolute;
    top: 6%;
    left: 2%;
    width: 21%;
    height: 34%;
    z-index: 1;
}

#wrapper .font {
    font-size: 18px;
    margin-bottom: 5px;
}

#wrapper .title {
    margin-top: -10%;
    position: relative;
}

#wrapper article {
    padding: 20px 60px;
}

#wrapper footer {
    padding: 25px 15px 3px 40px;
    background: #F1F1F1;
    position: relative;
}

#wrapper .flex {
    display: flex;
    column-gap: 5%;
}

#wrapper .width {
    flex: 1 1 0;
}

#wrapper footer:before {
    content: "";
    width: 50px;
    height: 30px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #F1F1F1;
    position: absolute;
    top: -30px;
    left: 14%;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    background: #000000;
    color: #fff;
    max-width: 420px;
    padding: 15px;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 9px;
    font-size: 23px;
    font-weight: 700;
    color: #CC0505;
}

#wrapper h3 {
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 400;
    background: #F1F1F1;
    color: #fff;
}

#wrapper h3 span {
    display: inline-block;
    padding: 8px 10px;
    background: #CC0000;
    min-width: 158px;
}

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

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

#wrapper .text {
    background: #CC0000;
    color: #fff;
    display: inline-block;
    margin: 0 0 0 30px;
    padding: 7px 10px;
    font-size: 20px;
}

#wrapper .left {
    width: 48%;
}

#wrapper .right {
    width: 49%;
}

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

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

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

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

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

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 12px;
    }

    #wrapper .logo a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

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

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

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

@media (max-width: 599px) {

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }

    #wrapper .mb0 {
        margin-bottom: 0;
    }

    #wrapper .flex {
        display: block;
    }

    #wrapper .flexbox {
        margin: 0;
    }

    #wrapper .title {
        margin-top: -14%;
    }

    #wrapper ul {
        margin-left: 0;
    }
}