
*:not(i):not(em) {
    font-family: 'Poppins', sans-serif !important;
}


/* =========================================
   HELP DESK MAIN ROW
========================================= */

/* .help-desk-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
} */

.help-desk-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* =========================================
   LEFT CONTENT
========================================= */

.help-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
    box-sizing: border-box;
}

.help-heading {
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.3;
    color: #111;
    margin: 0 0 16px 0;
}

.help-heading .accent {
    color: #F23944;
}

.help-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

/* =========================================
   HELP DESK IMAGE
========================================= */

.help-left img {
    display: block;
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;

    margin-top: 35px;

    border-radius: 0.8rem;
    object-fit: contain;
}

/* =========================================
   FORM CARD
========================================= */

.help-desk-row .bg {
    background: #fff;

    box-shadow: 0 0 11px 0px #6e5b5b26;

    border-radius: 0.8rem;

    /* Equal top and bottom spacing */
    margin-top: 30px;
    margin-bottom: 30px;

    padding: 2.25rem 2rem;

    box-sizing: border-box;

    align-self: center;
}

/* =========================================
   FORM
========================================= */

.form_data {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

/* =========================================
   FORM HEADER
========================================= */

.hdr {
    display: flex;
    align-items: center;
}

.hdr h4 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.3;

    margin: 0 0 24px 0;

    color: #F23944;
}

/* =========================================
   FORM GROUP
========================================= */

form.form_data .form-group {
    width: 100%;

    /* Controlled spacing between fields */
    margin-top: 0 !important;
    margin-bottom: 16px !important;

    padding: 0 !important;

    box-sizing: border-box;
}

/* Remove Bootstrap mb-4 spacing */
form.form_data .form-group.mb-4 {
    margin-bottom: 16px !important;
}

/* =========================================
   LABEL
========================================= */

form.form_data .form-group > label:not(.error) {
    display: block;

    width: 100%;

    font-weight: 700;
    font-size: 0.85rem;

    color: #322a7d;

    margin-top: 0 !important;
    margin-bottom: 6px !important;

    padding: 0 !important;

    line-height: 1.4;
}

.form-group label .required,
span.required {
    color: #F23944;

    margin-left: 2px;
}

/* =========================================
   INPUT / SELECT / TEXTAREA
========================================= */

form.form_data .form-control {
    display: block;

    width: 100% !important;
    max-width: 100% !important;

    height: 47px;

    box-sizing: border-box !important;

    border: 1px solid #d7d7e0;

    border-radius: 0.6rem;

    padding: 0.7rem 0.9rem;

    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem;

    color: #333;

    background-color: #fff;
}

/* =========================================
   TEXT INPUTS
========================================= */

form.form_data input[type="text"],
form.form_data input[type="number"],
form.form_data input[type="tel"] {
    background-color: #fff;
}

/* =========================================
   SELECT
========================================= */

form.form_data select.form-control {
    display: block;

    width: 100% !important;
    max-width: 100% !important;

    height: 47px !important;
    min-height: 47px !important;

    padding: 0.7rem 0.9rem;

    background-color: #fff;

    color: #333;

    cursor: pointer;

    box-sizing: border-box !important;

    overflow: hidden;
}

/* =========================================
   QUERY TEXTAREA
========================================= */

form.form_data textarea.form-control {
    display: block;

    width: 100% !important;
    max-width: 100% !important;

    height: 120px !important;
    min-height: 120px !important;

    resize: vertical;

    box-sizing: border-box !important;

    /* Start typing from top */
    padding: 10px 14px !important;

    line-height: 1.5 !important;

    vertical-align: top !important;

    text-align: left !important;

    font-family: 'Poppins', sans-serif !important;

    border: 1px solid #d7d7e0;

    border-radius: 0.6rem;

    color: #333;

    background-color: #fff;
}

/* =========================================
   PLACEHOLDER
========================================= */

form.form_data .form-control::placeholder {
    font-weight: normal;

    color: #b3b3b3;

    opacity: 1;
}

form.form_data textarea.form-control::placeholder {
    color: #b3b3b3;

    opacity: 1;

    text-align: left;
}

/* =========================================
   NORMAL FOCUS
========================================= */

form.form_data .form-control:focus {
    box-shadow: none;

    border-color: #4C3FCA;

    outline: none;
}

/* =========================================
   SELECT OPTIONS
========================================= */

.form_data option {
    color: #666;
}

/* =========================================
   VALIDATION ERROR MESSAGE
========================================= */

/*
   IMPORTANT:
   label.error is the generated jQuery
   validation message.
*/

form.form_data label.error {
    display: block !important;

    width: 100% !important;

    /* Very small gap from input */
    margin-top: 3px !important;

    margin-bottom: 0 !important;

    padding: 0 !important;

    color: #F23944 !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 13px !important;

    font-weight: 500 !important;

    line-height: 18px !important;

    text-align: left !important;
}

/* =========================================
   VALIDATION ERROR BORDER
========================================= */

form.form_data input.error,
form.form_data select.error,
form.form_data textarea.error {
    border: 1px solid #F23944 !important;

    border-color: #F23944 !important;

    box-shadow: none !important;
}

/* =========================================
   NORMAL BORDER
========================================= */

form.form_data input.form-control:not(.error),
form.form_data select.form-control:not(.error),
form.form_data textarea.form-control:not(.error) {
    border-color: #d7d7e0;
}

/* =========================================
   ERROR FIELD FOCUS
========================================= */

form.form_data input.error:focus,
form.form_data select.error:focus,
form.form_data textarea.error:focus {
    border-color: #F23944 !important;

    box-shadow:
        0 0 0 0.1rem rgba(242, 57, 68, 0.12) !important;
}

/* =========================================
   GENERAL ERROR
========================================= */

form.form_data .error {
    color: #F23944;

    font-size: 13px;

    text-align: left;
}

/* =========================================
   REQUEST BUTTON CONTAINER
========================================= */

.rqst-btn-container {
    display: flex;

    justify-content: flex-start;

    align-items: center;

    width: 100%;
}

/* =========================================
   SEND BUTTON
========================================= */

form.form_data .rqst-btn {
    display: block !important;

    width: 100% !important;

    min-height: 47px;

    height: auto !important;

    margin: 10px 0 0 0 !important;

    padding: 0.85rem 0 !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 1rem !important;

    font-weight: 700 !important;

    line-height: 1.4 !important;

    text-align: center !important;

    color: #fff !important;

    background: #F23944 !important;

    border: none !important;

    border-radius: 0.6rem !important;

    opacity: 1 !important;

    visibility: visible !important;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

/* =========================================
   SEND BUTTON - NORMAL
========================================= */

form.form_data .rqst-btn,
form.form_data .rqst-btn:visited,
form.form_data .rqst-btn:focus {
    color: #fff !important;

    background: #F23944 !important;
}

/* =========================================
   SEND BUTTON - HOVER
========================================= */

form.form_data .rqst-btn:hover {
    color: #fff !important;

    background: #d9313b !important;
}

/* =========================================
   SEND BUTTON - ACTIVE
========================================= */

form.form_data .rqst-btn:active {
    color: #fff !important;

    background: #c92d36 !important;
}

/* =========================================
   SEND BUTTON - DISABLED
========================================= */

form.form_data .rqst-btn:disabled {
    color: #fff !important;

    background: #F23944 !important;

    opacity: 0.7 !important;

    cursor: not-allowed;
}

#name,
#phnNo,
#email,
#requirement {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 0 !important;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}


/* =========================================
   LARGE DESKTOP
   1200px+
========================================= */

/* @media (min-width: 1200px) {

    .help-desk-row {
        gap: 50px;
    }

    .help-left {
        padding: 30px 0;
    }

    .help-heading {
        font-size: 2.2rem;
    }

    .help-sub {
        font-size: 1rem;

        max-width: 530px;
    }

    .help-left img {
        width: 100% !important;

        max-width: 560px !important;

        margin-top: 35px;
    }

    .help-desk-row .bg {
        padding: 2.25rem 2rem;

        margin-top: 30px;
        margin-bottom: 30px;
    }
} */

@media (min-width: 1200px) {

    .help-desk-row {
        gap: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .help-desk-row > .help-left {
        padding-left: 0 !important;
        padding-right: 5px !important;
    }

    .help-desk-row > .bg {
        padding-left: 5px !important;
        padding-right: 0 !important;
    }

    .help-left {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .help-heading {
        font-size: 2.2rem;
    }

    .help-sub {
        font-size: 1rem;
        max-width: 530px;
    }

    .help-left img {
        width: 100% !important;
        max-width: 560px !important;
        margin-top: 35px;
    }

    .help-desk-row .bg {
        background: #fff;
        box-shadow: 0 0 11px 0px #6e5b5b26;
        border-radius: 0.8rem;

        margin-top: 30px;
        margin-bottom: 30px;

        /* More space inside the card */
        padding: 2.25rem 3rem !important;

        box-sizing: border-box;
        align-self: center;
        
    }
}

/* =========================================
   LAPTOP
   992px - 1199px
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .help-desk-row {
        gap: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .help-left {
        padding: 25px 0;
    }

    .help-heading {
        font-size: 1.8rem;
    }

    .help-sub {
        font-size: 0.9rem;

        max-width: 480px;
    }

    .help-left img {
        width: 100% !important;

        max-width: 500px !important;

        margin-top: 30px;
    }

    .help-desk-row .bg {
        padding: 1.75rem 1.5rem;

        margin-top: 30px;
        margin-bottom: 30px;
    }
}


/* =========================================
   TABLET
   Below 992px
========================================= */

@media (max-width: 991px) {

    .help-desk-row {
        flex-direction: column;

        gap: 25px;
    }

    .help-left,
    .help-desk-row .bg {
        width: 100%;

        max-width: 100%;
    }

    .help-left {
        padding: 20px 0;

        align-items: center;

        text-align: center;
    }

    .help-heading {
        font-size: 2rem;
    }

    .help-sub {
        font-size: 0.95rem;

        max-width: 100%;
    }

    .help-left img {
        width: 100% !important;

        max-width: 560px !important;

        height: auto !important;

        margin: 25px auto 0;
    }

    .help-desk-row .bg {
        padding: 2rem;

        margin-top: 25px;
        margin-bottom: 25px;
    }
}


/* =========================================
   MOBILE
   Below 768px
========================================= */

@media (max-width: 767px) {

    .help-desk-row {
        flex-direction: column;

        gap: 20px;
    }

    .help-left,
    .help-desk-row .bg {
        width: 100%;

        max-width: 100%;
    }

    .help-left {
        padding: 15px 0;

        align-items: center;

        text-align: center;
    }

    .help-heading {
        font-size: 1.7rem;

        line-height: 1.35;

        margin-bottom: 12px;
    }

    .help-sub {
        font-size: 0.9rem;

        line-height: 1.5;
    }

    .help-left img {
        width: 100% !important;

        max-width: 500px !important;

        height: auto !important;

        margin: 20px auto 0;
    }

    .help-desk-row .bg {
        padding: 1.5rem;

        margin-top: 25px;
        margin-bottom: 25px;
    }

    .hdr h4 {
        font-size: 1.5rem;

        margin-bottom: 20px;
    }

    form.form_data .form-control {
        font-size: 0.9rem;

        padding: 0.65rem 0.8rem;
    }

    /* Mobile textarea */
    form.form_data textarea.form-control {
        height: 110px !important;

        min-height: 110px !important;

        padding: 10px 12px !important;

        line-height: 1.5 !important;

        vertical-align: top !important;
    }

    /* Mobile error */
    form.form_data label.error {
        font-size: 12px !important;

        margin-top: 3px !important;

        line-height: 17px !important;
    }
}


/* =========================================
   SMALL MOBILE
   Below 575px
========================================= */

@media (max-width: 575px) {

    .help-left {
        padding: 10px 0;
    }

    .help-heading {
        font-size: 1.5rem;
    }

    .help-sub {
        font-size: 0.85rem;
    }

    .help-left img {
        margin-top: 20px;
    }

    .help-desk-row .bg {
        padding: 1.25rem;

        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hdr h4 {
        font-size: 1.4rem;
    }

    form.form_data .form-control {
        font-size: 0.85rem;
    }

    form.form_data select.form-control {
        height: 45px !important;

        min-height: 45px !important;
    }

    form.form_data textarea.form-control {
        height: 110px !important;

        min-height: 110px !important;

        padding: 10px 12px !important;

        line-height: 1.5 !important;
    }

    .rqst-btn {
        font-size: 0.9rem !important;

        padding: 0.75rem 0 !important;
    }
}


/* =========================================
   EXTRA SMALL MOBILE
   Below 375px
========================================= */

@media (max-width: 375px) {

    .help-heading {
        font-size: 1.35rem;
    }

    .help-sub {
        font-size: 0.82rem;
    }

    .help-desk-row .bg {
        padding: 1rem;

        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hdr h4 {
        font-size: 1.3rem;
    }

    form.form_data textarea.form-control {
        height: 105px !important;

        min-height: 105px !important;

        padding: 9px 10px !important;
    }

    form.form_data label.error {
        font-size: 11px !important;

        margin-top: 3px !important;
    }
}

