* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 642px;
    margin: 16px auto;
    border: 7px solid;
    border-left-color: #B8082B;
    border-right-color: #F59B00;
    border-top-color: #85BC21;
    border-bottom-color: #008AC4;
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    padding: 16px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

#wrapper .content {
    padding-left: 10px;
}

#wrapper .footer p {
    color: #B8082B;
    font-size: 17px;
    margin-bottom: 0;
}

#wrapper .banner {
    margin: 0 -16px 15px;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 .span {
    font-size: 27px;
    white-space: nowrap;
}

#wrapper h1 {
    font-size: 32px;
    font-weight: 800;
    color: #B8082B;
}

#wrapper h3 {
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 700;
    color: #B8082B;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #442383;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #B8082B;
    color: #fff;
    border-radius: 5px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
    font-size: 19px;
}

#wrapper ul li {
    padding-left: 24px;
    position: relative;
}

#wrapper ul li:before {
    content: url(icon1.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .ul2 li:before {
    content: url(icon2.jpg);
}

#wrapper .ul3 li:before {
    content: url(icon3.jpg);
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 641px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .content {
        padding-left: 0;
    }

    #wrapper p {
        text-align: left;
    }

}

@media (max-width: 610px) {
    #wrapper h1 .span {
        white-space: normal;
    }
}

@media (max-width: 459px) {
    #wrapper .header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    #wrapper .header p {
        text-align: center;
    }

    #wrapper ul {
        font-size: 17px;
    }
}