.page-content {
    /* margin: 50px auto; */
    margin-bottom: 50px;
    width: 100%;
}

.page_heading_banner {
    width: 100%;
    overflow: hidden;
    height: auto;
    max-height: 250px;
}

.page_heading_banner img {
    width: 100%;
}

.page_heading {
    text-align: center;
    text-decoration: underline;
}






.main_content {
    width: 100%;
    padding: 20px 0;
}

.contact_container {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 20px auto;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
    flex-direction: row;
}

.left_cont {
    align-items: flex-start;
    width: 50%;
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.left_cont img {
    height: 80px;
    margin-bottom: 20px;
}

.right_cont {
    width: 50%;
}

.contact_data {
    margin: 5px;
    color: #fff;
}

.contact_data a {
    color: #fff;
}

.contact_container .inluke-icons {
    margin-right: 10px;
    font-size: 20px;
}

.customer_contact_form {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    padding-top: 0;
    border-radius: 4px;
    background-color: #fff;
}

.contact_msg {
    height: 110px;
    padding-top: 3px;
}

@media screen and (max-width: 800px) {
    .contact_container {
        flex-direction: column;
        height: auto;
        border-radius: 0;
    }

    .left_cont {
        width: 100%;
    }

    .right_cont {
        width: 100%;
    }
}

/* ---------------------------------- */
.form_input_wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.form_field {
    display: block;
    padding: 20px 12px 3px 14px;
    border-radius: 4px;
    border: 1px solid #d4d6d8;
    outline: none;
    width: 100%;
    line-height: normal;
    height: 48px;
    color: var(--dark-blue);
    -webkit-appearance: none;
    resize: none;
    font-size: 1rem;
    box-shadow: 0 1px rgb(212 214 216 / 25%) inset;
    transition: border-color .2s ease-in-out,
        box-shadow .2s ease-in-out,
        color .2s ease-in-out;
    /* font-weight: 500; */
}

.form_field:focus {
    border: 2px solid var(--dark-blue);
}

.form_floating_label {
    position: absolute;
    left: 14px;
    top: 0;
    line-height: 48px;
    font-size: 1rem;
    color: #677279;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out,
        -webkit-transform .2s ease-in-out;
    pointer-events: none;
}

.form_field:focus+.form_floating_label,
.form_field.is_filled+.form_floating_label {
    -webkit-transform: translateY(-6px) scale(0.8);
    transform: translateY(-6px) scale(0.8);
}


/* Password Show/Hide btn */
.show_password {
    height: 70%;
    width: 45px;
    position: absolute;
    top: 7px;
    right: 0;
    font-size: 24px;
    color: #9a9b9c;
}

.show_password>.icon-hide {
    color: var(--dark-blue);
}

.primary_btn {
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 6px;
    padding: 0px 30px;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
}

.primary_btn:hover {
    opacity: 0.8;
}

.form_submit,
.popover_btn {
    width: 100%;
    height: 46px;
    margin-top: 20px;
}


.contact_msg {
    height: 110px;
    padding-top: 3px;
}

.popover_header {
    text-align: center;
    padding: 15px 0px;
}

.popover_title {
    font-size: 20px;
    padding: 5px 0px;
    color: var(--dark-blue);
}

.contact_data {
    margin: 5px;
    color: #fff;
}

.contact_data a {
    color: #fff;
    text-decoration: none;
}

.contact_data i {
    margin-right: 10px;
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}