* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 938px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #232323;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    margin: 20px 6%;
    display: flex;
    justify-content: end;
}

#wrapper .article {
    padding: 0 6% 30px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper p.center {
    text-align: center;
}

#wrapper p.my-1 {
    margin: 30px 0 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

#wrapper h2 {
    margin: 30px 0 16px;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    color: #00B0F0;
}

#wrapper h3 {
    margin: 30px 0;
    font-size: 16px;
    font-weight: 700;
    color: #00B0F0;
}

#wrapper h3.mb-1 {
    margin-bottom: 16px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0000ff;
    text-decoration: none;
}

#wrapper ul {
    list-style: none;
}

#wrapper ul li {
    padding-left: 55px;
    position: relative;
    line-height: 1.4;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 22px;
    position: absolute;
    top: -1px;
    left: 28px;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media all and (max-width: 937px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webit-hyphens: auto;
    }

    #wrapper p {
        text-align: left;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper .header {
        justify-content: center;
    }

    #wrapper h1 {
        font-size: 23px;
    }

    #wrapper ul li {
        padding-left: 15px;
    }

    #wrapper ul li:before {
        left: 0;
    }

    #wrapper h2 {
        font-size: 16px;
    }

    #wrapper h3 {
        font-size: 15px;
    }
}