* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    padding: 44px 44px 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    margin-bottom: 5%;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 34px;
    font-weight: 400;
}

#wrapper h3.title {
    color: #333;
    font-size: 16px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #001a8b;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #001a8b;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    padding: 40px 44px;
    margin: 0 -44px;
    justify-content: end;
    background: #F5F5F9;
}

#wrapper .button a {
    display: inline-block;
    padding: 8px 10px;
    background: #00188c;
    color: #fff;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #3366AA;
    text-decoration: underline;
}

#wrapper ul {
    margin-bottom: 17px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 16px 16px 0;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 499px) {
    #wrapper header {
        display: flex;
        justify-content: center;
    }

    #wrapper .button {
        justify-content: center;
    }
}