* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 990px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #E7E8E9;
    overflow: hidden;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #fff;
}


#wrapper .article {
    padding: 20px 40px;
}

#wrapper .footer {
    padding: 30px 16px;
    background: #4F4C4D;
}

#wrapper .footer a {
    color: #fff !important;
}

#wrapper .footer p {
    text-align: center;
    color: #fff;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .left,
#wrapper .right {
    width: 48%;
}

#wrapper .images {
    display: flex;
    justify-content: space-around;
}

#wrapper .images p {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
    gap: 12px;
    font-size: 13px;
    text-align: left;
}

#wrapper .images strong {
    display: block;
}

#wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #ed1c24;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #ed1c24;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #4b575f;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 25px 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #ed1c24;
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper ul.ul {
    gap: 20px;
    margin: 0 0 30px;
    display: flex;
    align-items: flex-start;
}

#wrapper ul.ul li {
    background: url(check.png) top center no-repeat;
    text-align: center;
    padding: 41px 0 0;
    font-size: 15px;
    place-self: center;
    width: 130px;
    min-height: 100px;
}

#wrapper ul.ul li:before {
    font-size: 0;
    display: none;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #ed1c24;
    color: #fff;
    transition: .2s;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}


@media (max-width: 989px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 16px;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper ul.ul {
        flex-wrap: wrap;
    }
}

@media all and (max-width:880px) {
    #wrapper .banner {
        width: 100%;
    }

    #wrapper .images {
        position: static;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
        margin: 25px 0;
    }

    #wrapper .images p {
        margin-left: 0 !important;
        margin-bottom: 15px;
    }
}

@media all and (max-width:760px) {

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }
}

@media all and (max-width:600px) {
    #wrapper ul {
        margin-left: 0;
    }
}