* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    padding: 16px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}

#wrapper .banner {
    position: relative;
}

#wrapper .banner a {
    position: absolute;
    top: 5%;
    left: 3%;
    width: 46%;
    height: 26%;
}

#wrapper .left {
    width: 65%;
}

#wrapper .right {
    width: 33%;
    background: #d61e39;
    padding: 10px;
    margin-bottom: 10px;
}

#wrapper .right p,
#wrapper .right h3 {
    color: #fff;
}

#wrapper .right p {
    font-size: 13px;
    line-height: 1.4;
}

#wrapper .box {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    padding: 10px 20px;
    margin: 10px 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 24px;
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 18px;
    font-weight: 700;
    font-style:italic;
}


#wrapper h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper .left ul li {
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -3px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .banner a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 699px) {
    #wrapper header {
        flex-direction: column;
    }

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }

    #wrapper .right p {
        font-size: 15px;
        line-height: 1.3;
    }
}