@font-face {
    font-family: 'Gill Sans';
    src: url('GillSansNova-Book.woff2') format('woff2'), url('GillSansNova-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('GillSansNova-CnExtraBold.woff2') format('woff2'), url('GillSansNova-CnExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Gill Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 10%;
    right: 6%;
    width: 13%;
    height: 30%;
}

#wrapper article {
    padding: 30px 135px 16px 60px;
}

#wrapper footer {
    padding: 0 169px 16px 60px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .min {
    color: #494848;
    text-align: justify;
    font-size: 12px;
}

#wrapper .link {
    border-bottom: 2px solid #0A2B68;
    padding: 16px 0 10px;
    margin-bottom: 10px;
}

#wrapper .link a {
    color: #0A2B68 !important;
    letter-spacing: 3px;
    font-size: 29px;
}

#wrapper h1+p {
    width: 645px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 42px;
    font-weight: 400;
    color: #1C3A73;
    line-height: 1.1;
}

#wrapper .block {
    display: block;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 400;
    color: #4D4B4F;
    letter-spacing: 2px;
    padding-top: 16px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 55px 16px 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\25A0';
    color: #6E6E6E;
    font-size: 16px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper header a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper article {
        padding: 16px 16px 0;
    }

    #wrapper footer {
        padding: 0 16px 16px;
    }

    #wrapper .block {
        display: inline;
    }

    #wrapper h1+p {
        width: auto;
    }

    #wrapper ul {
        margin-right: 0;
    }
}