* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 960px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #494948;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper .small {
    font-size: 11px;
}

#wrapper .footer .mb0 {
    margin-bottom: 2px;
}

#wrapper .button {
    display: flex;
    justify-content: end;
    margin: 16px;
}

#wrapper .button a {
    display: inline-block;
    background: #676767;
    padding: 10px 20px;
    color: #fff !important;
    transition: 0.5s;
}

#wrapper .button a:hover {
    background: #EF232A;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .blue {
    color: #1a3f74 !important;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    margin-left: 16px;
    width: 600px;
}

#wrapper .article p,
#wrapper .article ul {
    text-align: justify;
}

#wrapper .footer {
    padding: 16px;
    background: #ededed;
    width: 320px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

#wrapper .footer p {
    margin-bottom: 30px;
}

#wrapper .footer p.box-blue {
    background: #1A3F74;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
}

#wrapper .footer p.box-blue::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-top-color: #1A3F74;
    border-bottom: 0;
    margin-left: -30px;
    margin-bottom: -30px;
}

#wrapper .footer p.box-white {
    background: #fff;
    padding: 10px;
    margin-bottom: 30px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper h1 {
    padding: 20px 16px;
    font-size: 28px;
    line-height: 1.1;
    background: #1A3F74;
    text-align: center;
    color: #fff;
}

#wrapper h3 {
    margin: 16px 0;
    font-size: 15px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #494948;
    text-decoration: none;
}

#wrapper ul {
    list-style: none;
    margin-bottom: 20px;
}

#wrapper ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\25a0';
    color: #1A3F74;
    font-size: 11px;
    position: absolute;
    top: 1px;
    left: 8px;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media all and (max-width: 959px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        flex: 1 1 0;
    }

    #wrapper .flex {
        column-gap: 20px;
    }

    #wrapper .article p,
    #wrapper .article ul {
        text-align: left;
    }
}

@media all and (max-width: 699px) {
    #wrapper .footer {
        width: 100%;
    }
}

@media all and (max-width: 599px) {

    #wrapper .article,
    #wrapper .footer {
        width: auto;
    }

    #wrapper .article {
        margin-right: 16px;
    }

    #wrapper .footer {
        padding-bottom: 40px;
    }
}

@media all and (max-width: 499px) {
    #wrapper .button {
        justify-content: center;
    }

    #wrapper ul li {
        padding-left: 15px;
    }

    #wrapper ul li:before {
        left: 0;
    }
}