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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 736px;
    margin: 16px auto;
    border: 2px solid #000;
    background-color: #fff;
    overflow: hidden;
    font-family: "Lora", Times, serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 25px 20px;
    display: flex;
    justify-content: center;
}

#wrapper .banner {
    box-shadow: 1px 10px 16px -7px #000;
    position: relative;
}

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

#wrapper .footer {
    padding: 20px 30px;
    background: #F68B32;
}

#wrapper .title {
    background: #000;
}

#wrapper .icon {
    padding: 16px 10px;
    border-right: 5px solid #fff;
    justify-content: center;
    align-items: center;
    display: flex;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 33px;
    font-weight: 800;
    font-family: "Raleway", Arial, sans-serif;
    flex: 1;
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

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

#wrapper .title {
    background: #F33E37;
    display: flex;
}

#wrapper h3 {
    margin-bottom: 3px;
    font-size: 20px;
    font-weight: 800;
    font-family: "Raleway", Arial, sans-serif;
    color: #EF3F39;
    position: relative;
}

#wrapper h3:before {
    content: "";
    width: 20px;
    height: 24px;
    background: #EF3F39;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 1px;
    left: -30px;
}

#wrapper .font {
    font-family: "Raleway", Arial, sans-serif;
    font-size: 19px;
    margin-bottom: 0;
}

#wrapper .font strong {
    font-weight: 600;
}

#wrapper .footer :is(p, a) {
    color: #fff !important;
}

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

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

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

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

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

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

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

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

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

}