body {
    background-color: #F7F7F9;
}

.nav-padding {
    position: relative;
    width: 100%;
    height: 15vh;
    background-color: #FFFFFF;
}

.job-title {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #4FA247;
    color: #FFFFFF;
    margin: 30px auto;
    padding-bottom: 40px;
    border-radius: 10px;
    box-shadow: 5px 8px 30px 1px rgba(0, 0, 0, 0.21);
}

.job-title h4 {
    margin: 10px auto;
}

.job-title h4:last-of-type {
    margin-bottom: 0;
}

.job-title h4 i {
    margin-right: 10px;
}

.job-subheading {
    height: 100px;
    display: flex;
}

.job-staff {
    float: right;
    margin: 0 0 0 auto;
}

.job-details {
    margin-bottom: 50px;
}

.job-requirements {
    height: 100%;
    margin: 30px auto;
}

.buttons {
    height: 20vh;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.open-text h3 {
    color: var(--blue);
}

.open-text li {
    margin: 0 0 10px 0;
    display: flex;
}

.open-text li i {
    width: 30px;
    margin-top: 4px;
    color: var(--pale-blue);
}

.open-text li p {
    width: calc(100% - 30px);
    margin: 0;
}

.diversity_message {
    margin-top: 30px;
}

.application_cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
    background: var(--pale-blue);
    box-shadow: 0px 3px 6px #00000029;
    border: 10px solid #FFFFFF;
    border-radius: 20px;
    box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.application_cta h3 {
    margin: -5px 0 0 0;
    color: var(--blue);
    text-align: center;
}

.application_cta .buttons_container {
    display: flex;
    justify-content: center;
}

.application_cta .buttons_container .button1 {
    margin-left: 0;
    margin-right: 0;
}

.application_cta .buttons_container .button1:last-of-type {
    margin-left: 30px;
}

.incentive_card {
    margin-bottom: 80px;
}

.incentive_card p {
    text-align: center;
    margin: 20px 0 0 0;
}

.brown_card {
    background-color: var(--brown);
    color: var(--white);
    margin-top: -30px;
    margin-bottom: 140px;
}

.brown_card h3 {
    color: var(--white);
}

@media(max-width: 1200px) {
    .incentive_card {
        margin-top: 20px;
        margin-bottom: 50px;
    }
}

@media(max-width: 750px) {
    .brown_card {
        margin-bottom: 120px;
    }
}

@media(max-width: 900px) {
    .application_cta .buttons_container {
        flex-direction: column;
        align-items: center;
    }

    .application_cta .buttons_container .button1:last-of-type {
        margin-left: 0;
    }
}

@media(max-width: 600px) {
    .application_cta .buttons_container .button1 {
        width: 100%;
    }

    .brown_card {
        margin-bottom: 50px;
    }
}

@media(max-width: 390px) {
    .application_cta .buttons_container .button1 i {
        display: none;
    }
}

@media print {
    .navigation, .footer, .contact-title, .contact-wrapper, .application_cta, .temp_spacer {
        display: none !important;
    }
}