@font-face {
    font-family: "Avenir LT Pro";
    src: url(AvenirLTPro-Roman.woff2) format("woff2"), url(AvenirLTPro-Roman.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url(AvenirLTPro-Black.woff2) format("woff2"), url(AvenirLTPro-Black.woff) format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url(AvenirLTPro-Heavy.woff2) format("woff2"), url(AvenirLTPro-Heavy.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url(AvenirLTPro-Medium.woff2) format("woff2"), url(AvenirLTPro-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 630px;
    margin: 16px auto;
    border: 3px solid #FFE900;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background: #fff url(background.jpg) no-repeat bottom left;
    overflow: hidden;
    font-family: "Avenir LT Pro", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .color {
    color: #006F47;
    font-weight: 600;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 10px 16px;
    background: #FFE900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

#wrapper .logo p a {
    color: #006F47;
}

#wrapper .logo p {
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 500;
}

#wrapper .width {
    max-width: 380px;
}

#wrapper .width p {
    text-align: left;
}

#wrapper .article {
    padding: 20px 25px 11%;
}

#wrapper .footer {
    padding: 0 25px 10px;
}

#wrapper .footer p {
    color: #fff;
    font-weight: 500;
    word-spacing: 1px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 .small {
    font-size: 23px;
    font-weight: 400;
}

#wrapper h1 .span {
    font-weight: 400;
    font-size: 22px;
    display: block;
}

#wrapper h1 {
    margin: 14px 0;
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
}

#wrapper h3 {
    margin: 3px 0 9px -25px;
    font-size: 16px;
    font-weight: 700;
    color: #007B37;
    letter-spacing: 1px;
    background: #FFE900;
    display: inline-block;
    padding: 2px 7px 2px 25px;
}

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

#wrapper ul {
    margin: 0 0 13px 24px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

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

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

    #wrapper .nobr-1 {
        white-space: normal;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .article {
        padding: 16px 16px 7%;
    }

    #wrapper .footer {
        padding: 16px 16px 13px;
    }

    #wrapper .footer p {
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper h1 {
        font-size: 35px;
    }

    #wrapper .width {
        max-width: 100%;
    }
}

@media (max-width: 399px) {
    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .footer p,
    #wrapper .footer p a {
        color: #000;
    }

    #wrapper {
        background-size: contain;
        padding-bottom: 35%;
    }
}