body,
html {
    font-family: "Nunito", sans-serif;
    background: #fff;
    padding: 0;
    margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.anchor {
    color: inherit;
    /* text-decoration: none; */
}

.header_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5em 0;
}

.header_flex .img_wrapper {
    display: block;
}

.header_flex .img_wrapper .logo_img {
    width: 100%;
    max-width: 17em;
    max-height: 3.75em;
    object-fit: contain;
}

.page_banner {
    position: relative;
}

.page_banner .banner_img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.page_banner .text_container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_banner .text_container .page_title {
    color: #fff;
    font-size: 3.5em;
    font-weight: 700;
}

.form_section {
    padding: 3.75em 0;
}

.form_section .text_container {
    text-align: center;
    padding: 0 0 3.75em;
}

.form_section .text_container .form_desc {
    max-width: 70%;
    margin: 0 auto;
}

.form_section .form_row {
    padding: 0 0 2.5em;
}

.form_section .form_row3 {
    padding: 0 0 1.25em;
}

.form_section .form_subhead {
    font-size: 1.5em;
    font-weight: 700;
}

.form_section .form-floating {
    position: relative;
    margin: 0 0 2.5em;
}

.form_section .form-floating .form-control,
.form_section .form-floating .form-select {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    outline: none !important;
    box-shadow: none;
}

.form_section .form-floating .notice {
    font-size: 0.875em;
    padding: 0.5em 0.75rem 0;
    opacity: 0.5;
}

.form_section .form-floating .datepicker {
    width: 100%;
    max-width: 100%;
}

.form_section .form-floating .datepicker .date-picker {
    padding: 1rem 0.75rem;
}

.form_section .error {
    font-size: 0.875em;
    padding: 0 0.75rem;
    color: red;
    position: absolute;
    margin: 0;
    top: calc(100% + .5em);
}

.form_section .form-check {
    position: relative;
}

.form_section .form-check .form-check-input {
    border: 1px solid #000;
    outline: none !important;
    box-shadow: none;
}

.form_section .form-check .form-check-label {
    cursor: pointer;
}

.form_section .form-check .error {
    display: inline;
    position: relative;
    bottom: auto;
    padding: 0;
}

.form_section .custom-upload-wrapper {
    position: relative;
    margin: 0 0 2.5em;
}
.form_section .custom-upload-wrapper .upload_icon {
    width: 100%;
    max-width: 1.375em;
    position: absolute;
    right: 1.5em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    pointer-events: none;
}

.form_section .custom-file-upload {
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
    padding: 1rem 0.75rem;
}

.form_section .submit_cta {
    margin: 2.5em auto 0;
    max-width: 7.5em;
}

.footer_sec {
    text-transform: uppercase;
    padding: 2.5em 0;
    background: #f5f5f5;
}

.footer_sec .anchor {
    color: inherit;
    text-decoration: none;
}

.footer_sec #copyright {
    display: block;
    text-align: right;
}

.thankyou_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thankyou_page .thankyou_sec {
    padding: 3.75em 0;
}

.thankyou_page .thankyou_sec .text_container {
    text-align: center;
}

.thankyou_page .thankyou_sec .text_container .page_title {
    font-size: 3.5em;
    font-weight: 700;
}

.thankyou_page .thankyou_sec .text_container .page_subtitle {
    font-size: 2.5em;
    font-weight: 700;
}

.thankyou_page .thankyou_sec .text_container .form_desc {
    max-width: 60%;
    margin: 1.5em auto 3.75em;
}


@media screen and (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .header_flex {
        padding: 1em 0;
    }

    .header_flex .img_wrapper .logo_img {
        max-width: 100%;
        max-height: 2.5em;
    }

    .page_banner {
        min-height: 400px;
        max-height: 400px;
        overflow: hidden;
    }

    .page_banner .text_container .page_title {
        font-size: 3.5em;
        text-align: center;
    }

    .form_section .form-floating {
        margin: 0 0 1.875em;
    }

    .form_section .form_row {
        padding: 0 0 10px;
    }

    .form_section .text_container .form_desc {
        max-width: 100%;
        text-align: left;
    }

    .footer_sec {
        padding: 2em 0;
        font-size: 0.875em;
    }

    .footer_sec #copyright {
        text-align: left;
        margin: 0.5em 0 0;
    }

    .thankyou_page .thankyou_sec {
        padding: 3.75em 0;
    }

    .thankyou_page .thankyou_sec .text_container {
        text-align: center;
    }

    .thankyou_page .thankyou_sec .text_container .page_title {
        font-size: 2.5em;
    }

    .thankyou_page .thankyou_sec .text_container .page_subtitle {
        font-size: 2em;
    }

    .thankyou_page .thankyou_sec .text_container .form_desc {
        max-width: 100%;
        text-align: left;
        margin: 1.5em auto 2.5em;
    }

    .form_section .error {
        font-size: 12px;
    }
}