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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 855px;
    margin: 16px auto;
    box-shadow: 0 0 10px 10px #cfcfcf;
    border: 1px solid #ccc;
    border-top-left-radius: 40px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .hide {
    display: none;
}

#wrapper .box {
    background: #fff;
    box-shadow: 4px 5px 10px #a0a0a0;
    padding: 15px;
    margin-bottom: 33px;
}

#wrapper .article {
    padding: 20px 40px 0 40px;
}

#wrapper .logo {
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
}

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

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

#wrapper .button a {
    display: inline-block;
    background: #f59e00;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all .4s ease-in-out;
}

#wrapper .button a:hover {
    box-shadow: 0 0 20px #cfcfcf;
    transform: translateY(-2px);
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 25px;
    font-weight: 700;
    color: #f59e00;
    width: 71%;
}

#wrapper h1 .small-1 {
    font-size: 10px;
    line-height: 1;
    position: relative;
    top: -3px;
}

#wrapper h1 span.small {
    font-size: 18px;
    display: block;
}

#wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: #f59e00;
    margin-bottom: 15px;
}

#wrapper h3 {
    padding: 15px;
    font-size: 22px;
    line-height: 1.1;
    background: #E3E3E3;
    font-weight: 700;
    color: #f59e00;
    border-top-left-radius: 20px;
    box-shadow: 4px 5px 10px #a0a0a0;
}

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

#wrapper ul {
    list-style: none;
}

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

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

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

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

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

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

@media all and (max-width: 690px) {
    #wrapper .logo {
        padding: 16px 16px 0;
        display: block;
    }

    #wrapper .logo .center {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }

    #wrapper h1 {
        font-size: 23px;
        text-align: center;
        margin-bottom: 16px;
        width: auto;
    }

    #wrapper h3 {
        font-size: 18px;
    }

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