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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 940px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Hind", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    position: relative;
}

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

#wrapper .banner {
    position: absolute;
    top: 0;
    right: 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    background: #EBECEC;
    padding: 27px 60px;
}

#wrapper .article {
    padding: 20px 60px;
}

#wrapper .footer {
    padding: 20px 60px;
    background: #EBECEC;
}

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

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

#wrapper .width {
    border-top: 1px solid #7F5307;
    max-width: 320px;
    padding-top: 15px;
}

#wrapper .flexbox>div {
    width: 48%;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper .color {
    color: #7F5307;
}

#wrapper h3.border {
    border-top: 1px solid #7F5307;
    padding-top: 6px;
}

#wrapper h1 .span {
    display: block;
    font-size: 29px;
    margin-bottom: 10px;
}

#wrapper h1 {
    margin-bottom: 34px;
    font-size: 34px;
    font-weight: 400;
    font-family: "Crimson Text", Times, serif;
    color: #7F5307;

    line-height: 1;
}

#wrapper h2 {
    margin-bottom: 17px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
}

#wrapper h3 {
    margin-bottom: 13px;
    font-size: 31px;
    font-family: "Crimson Text", Times, serif;
    font-weight: 400;
    color: #7F5307;
}

#wrapper .banner img:nth-of-type(2) {
    display: none;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #7F5307;
    color: #fff;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
    text-align: justify;
}

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

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

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

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

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

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .logo {
        padding: 25px 16px;
    }

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

@media (max-width: 709px) {
    #wrapper .flexbox>div {
        width: 100%;
    }

    #wrapper .banner img:nth-of-type(2) {
        display: inline;
    }

    #wrapper .banner {
        position: static;
    }

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

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

    #wrapper .banner img:nth-of-type(1) {
        display: none;
    }
}