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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 885px;
    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 .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #2F6D65;
    color: #fff !important;
    border-radius: 25px;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #324A6D;
}

#wrapper .hide {
    display: none;
}

#wrapper .pad {
    padding: 10px 21px 20px;
}

#wrapper .article {
    margin-top: 12px;
    padding: 0 60px;
    position: relative;
}

#wrapper .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

#wrapper .nav>a {
    margin-right: 10px;
}

#wrapper .footer {
    padding: 20px 60px 30px 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

#wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 1.1;
    color: #2F6D65;
    text-align: center;
}

#wrapper h3 {
    padding: 8px 10px;
    font-size: 18px;
    background: #2F6D65;
    color: #fff;
    line-height: 1.1;
}

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

#wrapper .content {
    padding: 10px;
    background: #DBE5F1;
}

#wrapper ul {
    list-style: none;
}

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

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

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

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

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

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

    #wrapper p {
        text-align: left;
    }

    #wrapper .header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media all and (max-width: 690px) {

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }
}

@media all and (max-width: 526px) {
    #wrapper .footer {
        flex-direction: column;
    }

    #wrapper .center {
        display: flex;
        justify-content: center;
    }

    #wrapper .pad {
        padding-left: 0;
        padding-right: 0;
    }
}

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

    #wrapper ul li {
        padding-left: 16px;
    }
}