* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 860px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Source Sans 3", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

#wrapper ul ul {
    margin: 0;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 3% 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}

#wrapper .article {
    padding: 2% 5% 0;
}

#wrapper .footer {
    padding: 0 5% 5%;
    display: flex;
    column-gap: 20px;
    align-items: center;
}

#wrapper .para {
    font-size: 10px;
    line-height: 1.2;
    margin: 0;
}

#wrapper .co-1 {
    color: #235198;
}

#wrapper .co-2 {
    color: #31818E;
}

#wrapper .co-3 {
    color: #833B6B;
}

#wrapper .co-4 {
    color: #DA8A00;
}

#wrapper .button a {
    display: inline-block;
    padding: 12px 30px;
    background: #235198;
    color: #fff !important;
    border-radius: 6px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper .color {
    color: #235198;
}

#wrapper .width {
    flex: 1 1 0;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #235198;
    text-align: center;
}

#wrapper h1 .span {
    display: block;
    font-size: 20px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #235198;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #235198;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 25px 13px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 1px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media all and (max-width: 859px) {
    #wrapper {
        margin: 0;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media all and (max-width: 699px) {
    #wrapper .footer {
        flex-direction: column;
        align-items: center;
    }

    #wrapper .button {
        display: flex;
        justify-content: center;
        margin: 15px 0 25px;
    }
}

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}