* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff url(background.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    font-family: "Lato", Arial, sans-serif;
    font-size: 16px;
    color: #231F20;
    line-height: 1.3;
}

#wrapper .box-last {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 26px;
    gap: 10px;
}

#wrapper .justify {
    text-align: justify;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 30px 50px 0;
}

#wrapper .article {
    padding: 20px 70px 0;
}

#wrapper .footer {
    margin-top: -10%;
    padding: 0 0 0px 70px;
}

#wrapper .left {
    width: calc(100% - 420px);
}

#wrapper .right {
    width: 324px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-right: -4px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper p.center {
    text-align: center;
    font-size: 13px;
    padding-left: 12px;
}

#wrapper p.text-right {
    text-align: right;
    margin-bottom: 0;
    font-size: 15px;
}

#wrapper p.mb-0 {
    margin-bottom: 0;
}

#wrapper strong {
    font-weight: 900;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 900;
    color: #EE1C25;
}

#wrapper h3 {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    color: #231F20;
}

#wrapper h4 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    color: #EE1C25;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}

#wrapper ul {
    list-style: none;
}

#wrapper ul li {
    padding-left: 32px;
    position: relative;
}

#wrapper ul li:before {
    content: url(icon.png);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

@media all and (max-width:998px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper p.center {
        padding-left: 0;
    }

    #wrapper .justify {
        text-align: left;
    }

    #wrapper .footer {
        margin-top: -7%;
    }

    #wrapper .right {
        margin-right: 0;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media all and (max-width:799px) {

    #wrapper .header,
    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .footer {
        padding: 0 16px;
        margin-top: 30px;
    }
}

@media all and (max-width:760px) {
    #wrapper .box-last {
        display: block;
    }

    #wrapper .left {
        width: auto;
        margin-bottom: 16px;
    }

    #wrapper .right {
        margin: 0 auto;
        justify-content: center;
    }
}

@media all and (max-width:360px) {
    #wrapper .right img {
        width: 100px;
    }

    #wrapper .right {
        width: 270px;
    }
}