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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Jost", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .text p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .background {
    background: #F1CB48;
    padding: 20px 50px;
    margin: 0 -50px;
}

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

#wrapper .left {
    width: 48%;
}

#wrapper .right {
    width: 40%;
}

#wrapper .header {
    position: relative;
}

#wrapper .article {
    padding: 30px 40px;
}

#wrapper .footer {
    padding: 16px;
    background: #D0CDCC;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    column-gap: 8%;
    row-gap: 15px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 28px;
    font-family: "Work Sans", Arial, sans-serif;
    font-weight: 600;
    background: url(background.png) no-repeat;
    background-size: 100%;
    width: 390px;
    height: 330px;
    position: absolute;
    top: -40px;
    padding: 78px 15px 35px 43px;
    left: -11px;
    line-height: 1.2;
}

#wrapper h2 {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 700;
}

#wrapper h1 .block {
    display: block;
    font-weight: 400;
}

#wrapper h1 .small {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

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

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

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

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

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

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

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

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 10px 16px;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 699px) {

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

@media all and (max-width: 499px) {
    #wrapper h1 {
        position: static;
        padding: 38px 16px;
        background-size: 100% 100%;
        width: auto;
        height: auto;
        max-width: 300px;
    }
}