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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 920px;
    margin: 16px auto;
    box-shadow: 0 0 10px 10px #cfcfcf;
    border-right: 150px solid #636362;
    padding: 50px 70px;
    background-color: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    position: relative;
}

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

#wrapper p span.green {
    color: #9DC73C;
}

#wrapper .hide {
    display: none;
}

#wrapper .ul {
    width: 74%;
}

#wrapper .logo {
    display: flex;
    margin-right: -60px;
    justify-content: end;
}

#wrapper .banner {
    position: absolute;
    right: -150px;
    top: 25%;
    width: 344px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#wrapper .footer {
    margin-top: 40px;
    width: 78%;
}

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

#wrapper strong {
    font-weight: bold;
}

#wrapper h1 {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.2;
    color: #9DC73C;
}

#wrapper h3 {
    margin-bottom: 6px;
    font-size: 18px;
    color: #636462;
}

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

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

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

#wrapper ul li:before {
    content: "\002022";
    color: #000;
    font-size: 21px;
    position: absolute;
    top: -2px;
    left: 0;
    line-height: 1;
}

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

@media (max-width: 919px) {
    #wrapper {
        border: none;
        padding: 16px;
        margin: 0;
        border-right: 110px solid #636362;
    }

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

    #wrapper h1 span {
        display: inline;
    }

    #wrapper .ul {
        padding-right: 250px;
        width: auto;
    }

    #wrapper .banner {
        right: -110px;
    }

    #wrapper .logo {
        margin: 0;
    }

    #wrapper .footer {
        margin: 0;
        width: auto;
    }
}

@media (max-width: 767px) {
    #wrapper {
        border: none;
    }

    #wrapper .banner {
        position: static;
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        gap: 0;
        flex-direction: row;
    }

    #wrapper .banner img {
        width: 49%;
    }

    #wrapper .ul {
        padding-right: 0;
    }
}

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .logo {
        justify-content: center;
    }
}