/* ===============================
   Job Single Page Layout
   =============================== */

#main_con {
    padding: 50px 0;
}

/* Desktop layout stays float-based (theme default) */
.job-form-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 35px 30px;
    border-radius: 6px;
}

/* Sticky form on desktop */
@media (min-width: 992px) {
    .job-form-box {
        position: sticky;
        top: 120px; /* header offset */
    }
}

/* ===============================
   MOBILE FIX (IMPORTANT)
   =============================== */
@media (max-width: 991px) {

    /* Kill floats */
    .col_three_fifth,
    .col_two_fifth,
    .col_half,
    .col_full {
        float: none !important;
        width: 100% !important;
        margin-right: 0 !important;
    }

    /* Ensure stacking order */
    .job-form-col {
        margin-top: 40px;
    }

    /* Remove sticky */
    .job-form-box {
        position: static;
    }

    /* Clear any clearfix weirdness */
    .clearfix::after {
        content: "";
        display: block;
        clear: both;
    }
}

/* ===============================
   Typography polish
   =============================== */
#main_con h1 {
    margin-bottom: 20px;
    font-family:Dosis, arial, sans-serif;
}

#main_con h3 {
    margin-top: 10px;
    font-family: Dosis, arial, sans-serif;
    margin-bottom: 10px;
}
p,ul li{
    font-family:Dosis, arial, sans-serif;
}