* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 890px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    hyphens: auto;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper sup {
    line-height: 0;
}

#wrapper .logo {
    display: flex;
    justify-content: end;
    margin-bottom: 5px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0 30px 20px 110px;
    background: #0089C1;
}

#wrapper article {
    padding: 40px 110px;
}

#wrapper header p {
    font-size: 21px;
    margin-bottom: 0;
    color: #fff;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 5px;
    font-size: 44px;
    font-weight: 400;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 13px;
    font-size: 16px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0000ff;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
    text-align: justify;
}

#wrapper ul li {
    padding-left: 24px;
    position: relative;
}

#wrapper ul ul {
    margin: 0;
}

#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;
}
#wrapper .inherit{
    color: #000;
}
#wrapper .title{
    font-weight: 400;
        text-decoration: underline;
}
@media (max-width: 889px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
        text-align: left;
    }

    #wrapper article {
        padding: 16px 5%;
    }

    #wrapper header {
        padding: 0 16px 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper h2 {
        text-align: center;
        font-size: 30px;
    }

    #wrapper header p {
        text-align: center;
    }
}