@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');
:root
{
    --whiteColor: #fff;
    --blackColor: #000;
    --orangeColor: #E74624;
    --brownYellowColor: rgb(241 141 22);
    --textSecoundryCOlor: #838994;
    --secoundryColor: #0078D0;
    --skyBlue: #0ea8fe;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.1s linear;
}

html,body
{
    width: 100%;
    min-height: 100%;
}
body
{
    position: relative;
}
a
{
    text-decoration: none;
    color: inherit;
}
li
{
  list-style: none;
}

header
{
    background-color: unset !important;
    box-shadow: unset !important;
    position: unset !important;
}

.container
{
    margin: 0 auto;
    max-width: 1200px;
}

.page_open_location_box
{
    width: 100%;
    max-width: 800px;
    font-size: 15px;
    margin: 0 auto;
    padding: 0px 15px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.profile_image_service
{
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--orangeColor);
    color: var(--whiteColor);
    display: flex;
    justify-content: center;
    align-items: center;
}
.user_need_service_name
{
    font-size: 13px;
    font-weight: 500;
}


.user_need_service_main_container
{
    width: 100%;
    padding: 50px 0;
}

.user_need_service_main_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main_banner_main_box
{
    width: 50%;
    border-radius: 25px;
    overflow: hidden;
}

.main_banner_main_box img
{
    width: 100%;
    margin-right: -50px;
}

.popup_form_box_main
{
    width: 100%;
    max-width: 450px;
    min-height: 300px;
}

.form_box_main
{
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 1);
    border-radius: 25px;
    /* box-shadow: 0 0 25px rgba(0, 0, 0, 0.25); */
    position: relative;
}

.form_box_main form
{
    width: 100%;
    padding: 15px;
}

.form_box_main form h2
{
    width: 100%;
    font-size: 24px;
    font-weight: 500;
}

.form_box_main form .input_box
{
    width: 100%;
}

.form_box_main form .input_box label
{
    font-size: 21px;
    font-weight: 700;
    color: var(--textPrimeryColor);
}

.form_box_main form .input_box input,select
{
    width: 100%;
    margin: 10px 0;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid var(--textSecoundryCOlor);
    outline: none;
    -webkit-appearance: none;
}

.form_box_main form button
{
    font-size: 21px;
    background-color: var(--secoundryColor);
    color: var(--whiteColor);
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 10px;
    border: 0;
    cursor: pointer;
}

.form_2_banner
{
    width: 35%;
    padding: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
}



.questions_container
{
    width: 100%;
    padding: 0 15px;
}

.questions_box
{
    width: 100%;
}

.question_card_box
{
    width: 100%;
    padding: 5px 0;
}

.question_card_box .question
{
    width: 100%;
    font-size: 24px;
    font-weight: 500;
}

.question_card_box .option_main_box
{
    width: 100%;
    max-height: 250px;
    margin: 15px 0;
    padding: 5px 5px;
    padding-top: 0px;
    overflow-y: auto;
}

.question_card_box .option_main_box .options_input_box
{
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.question_card_box .option_main_box .options_input_box input[type='radio'],.question_card_box .option_main_box .options_input_box input[type='checkbox']
{
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.question_card_box .option_main_box .options_input_box .input_type_text
{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 18px;
}

.question_card_box .option_main_box .options_input_box label
{
    flex-grow: 1;
    cursor: pointer;
    font-size: 16px;
}

.question_card_box .buttons
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.question_card_box .buttons .btn_next
{
    font-size: 21px;
    background-color: var(--secoundryColor);
    color: var(--whiteColor);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
}

.question_card_box .question_banner_image_box
{
    width: 35%;
    padding: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.question_card_box .question_banner_image_box img
{
    width: 100%;
}


.customer_support_details_container
{
    width: 100%;
}

.customer_support_details_box
{
    width: 100%;
    padding: 0 25px;
    padding-top: 25px;
}

.icons_main_box
{
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.icons_main_box .icons_box
{
    width: 60px;
    height: 60px;
    border: 2px solid var(--blackColor);
    border-radius: 50%;
    background: #fff;
}

.icons_main_box .icons_box:hover
{
    filter: invert(100%);
}

.icons_main_box .icons_box a
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
}



.thankyou_message_box
{
    width: 100%;
}

.thankyou_message_box h3
{
    width: 100%;
    padding: 10px;
    font-size: 32px;
    font-weight: 400;
    color: #0078D0;
}


.thankyou_message_box p
{
    width: 100%;
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
}




footer
{
    width: 100%;
}

.footer_box
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.footer_box>a
{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.footer_box>a>img
{
    width: 100%;
    max-width: 150px;
    padding: 5px;
}

.copy_rights_main_container
{
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: var(--whiteColor);
}

.copy_rights_main_box
{
    width: 100%;
    padding: 30px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500px;
}

@media screen and (max-width: 767px)
{
    .user_need_service_main_container
    {
        padding: 0;
    }
    .user_need_service_main_box
    {
        justify-content: center;
    }
    .main_banner_main_box
    {
        width: 90%;
        padding: 25px;
    }
    .popup_form_box_main
    {
        width: 100%;
    }
    
    .question_card_box .question
    {
        font-size: 21px;
        padding-right: 0;
    }
    .form_box_main form
    {
        padding-bottom: 20px;
    }
    .form_box_main form .input_box
    {
        width: 100%;
    }
    .form_box_main form h2
    {
        font-size: 21px;
        padding-right: 0;
    }
    .vender_list_main_container h2
    {
        padding-right: 0;
        font-size: 21px;
    }
    .vender_card_box
    {               
        flex: 0 0 calc(100% - 10px);
        justify-content: center;
    }
    .reating_vendow,
    .vendor_bio_details
    {
        text-align: center;
    }
    .vendor_details_box
    {
        flex-basis: calc(100%);
        padding: 5px 0;
    }
    .vender_icons_box,
    .vender_card_box .vender_name_box
    {
        justify-content: center;
    }
    .vender_card_box .vender_name_box
    {
        font-size: 18px;
        padding: 10px;
    }
    .vender_icons_box a
    {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
    .laser_leads__form_2 .form_2_banner
    {
        display: none;
    }
    .copy_rights_main_box
    {
        padding: 5px 0;
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }
    .copy_rights_main_box p
    {
        padding: 10px;
    }
    .footer_box>a
    {
        font-size: 16px;
    }
    .footer_box>a>img
    {
        max-width: 140px;
    }
}