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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 906px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 20px 40px 30px;
}

#wrapper .left {
    width: 75%;
}

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

#wrapper .text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 15px;
    flex-wrap: wrap;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.2;
    color: #004685;
}

#wrapper h3 {
    font-size: 17px;
    line-height: 1.2;
    color: #004685;
    margin-bottom: 13px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

#wrapper .button a {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    color: #004F9F !important;
    border: 3px solid;
    border-color: #004F9F;
    border-radius: 50px;
    padding: 10px 30px;
    transition: .2s;
}

#wrapper .button a:hover {
    color: #e62a32 !important;
    border-color: #e62a32;
}

#wrapper ul {
    margin: 0 0 16px 26px;
    list-style: none;
}

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

#wrapper ul li:before {
    content: "\002022";
    color: #000;
    font-size: 25px;
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 1;
}

#wrapper ul ul {
    margin: 0;
}

#wrapper ul ul li:before {
    content: "\0025cb";
    font-size: 15px;
    top: 0px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

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

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

    #wrapper .left {
        width: 80%;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media all and (max-width: 500px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .flex {
        display: block;
    }

    #wrapper .left {
        width: auto;
    }

    #wrapper .award {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}