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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 1030px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #373A36;
    overflow: hidden;
    font-family: "Roboto", Arial, sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}

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

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

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 30px 70px 30px 100px;
}

#wrapper .footer {
    padding: 30px 200px 50px 120px;
    background: #535653;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -20px;
    position: relative;
}

#wrapper .left {
    width: 49%;
}

#wrapper .right {
    width: 48%;
}

#wrapper .font {
    font-size: 12px;
}

#wrapper strong {
    font-weight: 700;
}


#wrapper .link {
    background: #373A36;
    padding: 22px 23px 22px 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(19% 0, 100% 0, 100% 100%, 0% 100%);
}

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

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

#wrapper h1 {
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
}

#wrapper h1 .small {
    font-size: 26px;
    font-weight: 400;
}


#wrapper h1 .block {
    font-size: 31px;
    display: block;
    font-weight: 400;
    margin-top: 7px;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #AFCB37;
}

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

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

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

#wrapper ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 11px;
    height: 5px;
    background: #AFCB37;
    clip-path: polygon(0 0, 100% 0, 73% 100%, 0% 100%);
}

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

#wrapper .mb {
    margin-bottom: 29px;
}

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

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

    #wrapper .article {
        padding: 16px 5%;
    }

    #wrapper .footer {
        padding: 16px 5% 60px;
        clip-path: polygon(4% 0, 100% 0, 100% 100%, 0% 100%);
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    #wrapper .footer {
        padding: 16px 16px 0;
        clip-path: none;
    }

    #wrapper .link {
        position: static;
        width: 222px;
        margin: 20px -16px 0 auto;
    }

    #wrapper .mb {
        margin-bottom: 28px;
    }

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

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

    #wrapper h1 {
        font-size: 29px;
        line-height: 1.2;
    }

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