/* ============================= */
/* open segment: reset/base      */
/* ============================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
}
/* ============================= */
/* close segment: reset/base     */
/* ============================= */


/* ============================= */
/* open segment: page structure  */
/* ============================= */
.page-wrap {
    width: 100%;
}

.top-header {
    background: white;
    text-align: center;
    padding: 18px 15px 14px 15px;
}

.top-header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.main-content {
    background: #000;
    padding: 0 20px 40px 20px;
}

.content-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.site-footer {
    background: #1f1f1f;
    color: #e5e5e5;
    text-align: center;
    font-size: 12px;
    padding: 14px 15px;
    border-top: 1px solid #3a3a3a;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
/* ============================= */
/* close segment: page structure */
/* ============================= */


/* ============================= */
/* open segment: hero            */
/* ============================= */
.hero-section {
    text-align: center;
    padding: 38px 0 28px 0;
}

.hero-section h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-divider {
    max-width: 760px;
    margin: 26px auto 20px auto;
    border-top: 1px solid #8e8e8e;
}

.hero-section h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.home-button-row {
    margin-top: 26px;
}

.home-btn {
    display: inline-block;
    background: #f7921e;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 0;
    min-width: 86px;
    text-align: center;
}

.home-btn:hover {
    background: #ff9f30;
}
/* ============================= */
/* close segment: hero           */
/* ============================= */


/* ============================= */
/* open segment: form styles     */
/* ============================= */
.form-section {
    padding-top: 18px;
}

.required-note {
    font-size: 14px;
    margin: 0 0 8px 0;
}

.required {
    color: #ff2a2a;
}

.application-form {
    width: 100%;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
    color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    height: 42px;
    border: 1px solid #bdbdbd;
    background: #fff;
    color: #000;
    font-size: 15px;
    padding: 8px 10px;
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
    border-color: #f7921e;
}

.char-note {
    color: #d5d5d5;
    font-size: 12px;
    margin-top: 6px;
}

.radio-group {
    margin-top: 8px;
}

.radio-label {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 8px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}

.form-disclaimer {
    font-size: 13px;
    color: #e1e1e1;
    line-height: 1.8;
    margin: 10px 0 26px 0;
}

.submit-row {
    margin-top: 14px;
}

.submit-btn {
    background: #f7921e;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #ff9f30;
}
/* ============================= */
/* close segment: form styles    */
/* ============================= */


/* ============================= */
/* open segment: responsive      */
/* ============================= */
@media screen and (max-width: 768px) {
    .main-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section h2 {
        font-size: 18px;
    }

    .form-group label,
    .required-note,
    .radio-label,
    .form-disclaimer {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select {
        height: 40px;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        max-width: 180px;
    }
}
/* ============================= */
/* close segment: responsive     */
/* ============================= */