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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 756px;
    margin: 16px auto;
    border: 2px solid #0e4e9c;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #0A4F99;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#wrapper .big {
    font-size: 19px;
}

#wrapper .qrcode {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 25px 0;
}

#wrapper .qrcode div {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex: 1 1 0;
}

#wrapper .qrcode div p {
    font-size: 14px;
    margin-top: -14px;
}

#wrapper .footer .small {
    margin-bottom: 0;
}

#wrapper .small {
    font-size: 15px;
    text-align: justify;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .benefit {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

#wrapper .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 113px;
}

#wrapper .icon p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 0;
}

#wrapper .content {
    width: 48%;
}


#wrapper .article {
    padding: 10px 40px 16px;
    background: #0E4E9C;
}

#wrapper .article * {
    color: #fff;
}

#wrapper .footer {
    padding: 10px 40px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 18px;
    font-weight: 400;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0A4F99;
    white-space: nowrap;
    text-decoration: none;
}

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

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

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

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

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

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

    #wrapper .small {
        text-align: left;
    }

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

    #wrapper .icon {
        width: 110px;
    }

    #wrapper .benefit {
        justify-content: space-around;
        gap: 15px;
        padding-right: 0;
        flex-wrap: wrap;
    }

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

@media (max-width: 629px) {
    #wrapper .logo {
        position: static;
        display: flex;
        margin-top: 15px;
        justify-content: center;
    }

    #wrapper .qrcode div p br {
        display: none !important;
    }
}

@media (max-width: 599px) {
    #wrapper .content {
        width: 100%;
    }
}