* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Source Sans 3", Arial, sans-serif;
    color: #444444;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.74);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 30px 40px;
}

#wrapper footer {
    padding: 40px 40px 25px;
    background: #333;
    color: #fff;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -40px 30px;
    padding: 20px 40px;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    background: #f4ab00;
    color: #fff;
    line-height: 1;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper .mb16 {
    margin-bottom: 16px;
}

#wrapper h1 span {
    font-size: 20px;
}

#wrapper h3 {
    margin-bottom: 16px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

#wrapper h3::before {
    content: '';
    border-top: 3px solid #f4ab00;
    width: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #f4ab00;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:not(:last-child) {
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
    color: #f4ab00;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .logo {
    padding: 30px 40px;
}

#wrapper footer a {
    color: #fff !important;
}

#wrapper a:hover {
    color: #f4ab00 !important;
}

#wrapper .application-button {
    display: inline-block;
    margin: 4px 0 20px;
    padding: 12px 28px;
    background-color: #f4ab00;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

#wrapper .application-button:hover {
    color: #fff !important;
    opacity: 0.85;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 30px 16px;
    }

    #wrapper footer {
        padding: 40px 16px 25px;
    }

    #wrapper .logo {
        padding: 30px 16px;
    }

    #wrapper h1 {
        margin: 0 -16px 30px;
        padding: 20px 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }
}