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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 970px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Source Serif 4", Times, serif;
    color: #58585A;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper .font {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
}

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

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

#wrapper .qrcode a {
    color: #F78F21 !important;
}

#wrapper .qrcode p {
    margin-bottom: 0;
}

#wrapper .qrcode {
    display: flex;
    column-gap: 10px;
    align-items: flex-end;
    position: absolute;
    bottom: 50px;
    right: 40px;
}

#wrapper .content {
    width: 48%;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .header p {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    background: rgba(247, 143, 33, 0.67);
    padding: 16px 46px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
    color: #fff;
    width: 71%;
}

#wrapper .article {
    padding: 30px 40px;
    position: relative;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #F28E04;
    color: #fff !important;
    border-radius: 5px;
    transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

#wrapper .button a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 22px;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 34px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", Arial, sans-serif;
}


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

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

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

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

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

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

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

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .qrcode {
        bottom: 32px;
        right: 16px;
    }
}

@media (max-width: 767px) {
    #wrapper .qrcode {
        position: static;
        justify-content: center;
    }

    #wrapper .content {
        width: 100%;
    }

    #wrapper .header p {
        width: 100%;
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .header p {
        background: #f78f21;
        position: static;
        transform: none;
    }
}