@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    background: #f7f7f7;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    overflow-y:auto;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
 
::-webkit-scrollbar-track {
  background-color: #dfad0021;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background:#ff9100;
}

ul {
    list-style-type: none;
}

.container {
    max-width: 1400px !important;
}

input {
    background: #f1f1f1 !important;
    border-radius: 100px !important;
    padding: 0 15px !important;
    border: 2px solid transparent !important;
    height: 55px !important;
    font-weight: 700 !important;
    transition: .2s !important;
    outline: none !important;
}

input:focus {
    background: #fff !important;
    border: 2px solid #ff9100 !important;
    box-shadow: none !important;
    transition: .2s !important;
}

select {
    background: #f1f1f1;
    border-radius: 100px;
    padding: 0 15px;
    border: 2px solid transparent;
    height: 55px;
    font-weight: 600;
    outline: none !important;
}

select:focus {
    background: #fff !important;
    border: 2px solid #ff9100;
    box-shadow: none;
    transition: .2s;
}

input:disabled {
    opacity: .5 !important;
    cursor: not-allowed !important;
}

button:disabled {
    opacity: .5 !important;
    cursor: not-allowed !important;
}

a:disabled {
    opacity: .5 !important;
    cursor: not-allowed !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-primary {
    color: #ff9100 !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #ff9100 !important;
}

.text-dark {
    color: #111010 !important;
}

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #777777;
}

.text-gray-1 {
    color: #ddd;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.btn-theme {
    background: #ff9100 !important;
    border: #ff9100 !important;
    color: #fff !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.07) !important;
    transition: .2s;
}

.btn-theme:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    transition: .2s;
}

.btn-theme:active {
    opacity: .7;
}

.btn-theme-dark {
    background: #1d1c1c !important;
    border: #1d1c1c !important;
    color: #fff !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.07) !important;
    transition: .2s;
}

.btn-theme-dark:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    transition: .2s;
}

.btn-theme-dark:active {
    opacity: .7;
}

.border-bottom-gray {
    border-bottom: 1px solid #ddd;
}

/*///////////// top nav for info /////////////*/

.top_nav_fr_info {
    width: 100%;
    background: #111010;
    height: 50px;
}

.top_nav_fr_info_left_Sec {
    width: 50%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.top_nav_fr_info_right_Sec {
    width: 50%;
    float: right;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: flex-end;
}

/* .top_nav_fr_info_right_Sec ul {
    list-style-type: none;
    width: auto;
    display: inline-block;
    margin: 0;
}

.top_nav_fr_info_right_Sec ul li {
    float: left;
    padding: 0 17px;
} */

/*///////////// Main navbar ///////////////*/

.custom_nav_bar_main {
    background: #fff;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
}

.custom_nav_bar_main nav.navbar.navbar-expand-lg {
    padding-right: 0;
    padding-left: 0;
}

/* .custom_nav_bar_main nav.navbar.navbar-expand-lg .nav-item{
	display: flex;
	align-content: center;
	align-items: center;
} */

.custom_nav_bar_main nav.navbar.navbar-expand-lg .nav-item .get_quote_btn {
    background: #fff;
    padding: 12px clamp(1.25rem, 1.1806rem + 0.3704vw, 1.875rem);
    color: #ff9100 !important;
    border-radius: 4px;
    border: 1px solid #ff9100;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.04);
    transition: .2s;
}

.custom_nav_bar_main nav.navbar.navbar-expand-lg .nav-item .get_quote_btn:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.07);
    transition: .2s;
}

.custom_nav_bar_main nav.navbar.navbar-expand-lg .nav-item .get_quote_btn:active {
    opacity: .7;
}

/*////////////////// Header ////////////////*/

.header_main_Section {
    background-image: url(../../images/header_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* height: calc(100vh - 170px); */
    height: 100%;
    background-position: center;
    width: 100%;
}

.overlay_header {
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header_main_title_Sec h1 {
    font-size: 55px;
}

.get_fre_quote_btn_hedr a {
    border-radius: 5px !important;
    padding: 20px 50px;
}

.header_main_form_Sec {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
    padding: 20px;
}

.header_main_form_Sec form input {
    background: #f1f1f1;
    border-radius: 100px;
    padding: 0 15px;
    border: 2px solid transparent;
    height: 55px;
    font-weight: 500;
    transition: .2s;
}

.header_main_form_Sec form input:focus {
    border: 2px solid #ff9100;
    box-shadow: none;
    transition: .2s;
}

.header_main_form_Sec form textarea {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 10px 15px;
    border: 2px solid transparent;
    height: 115px;
    font-weight: bold;
    transition: .2s;
}

.header_main_form_Sec form textarea:focus {
    border: 2px solid #ff9100;
    box-shadow: none;
    transition: .2s;
}

.header_main_form_Sec form select {
    background: #f1f1f1;
    border-radius: 100px;
    padding: 0 15px;
    border: 2px solid transparent;
    height: 55px;
    font-weight: 600;
}

.header_main_form_Sec form select:focus {
    border: 2px solid #ff9100;
    box-shadow: none;
    transition: .2s;
}

/*//////////////////////////////////////*/

section {
    /*margin: 115px 0 !important;*/
    padding: 115px 0 !important;
}

/*////// our services section ///////*/

.our_srvcs_Sec {
    margin-top: 0 !important;
    background: #fff;
}

.section_heading_cntnr:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.our_srvcs_Sec_crd {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 215px;
    padding: 30px;
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .07);
}

.overlay_serv_crd {
    height: 100%;
    width: 100%;
    background: #1c1c1c;
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.our_srvcs_Sec_crd_head:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.serv_icons_view {
    position: absolute;
    right: -20px;
    bottom: 10px;
}

/*////// counter section ///////*/

.counter_section {
    background-image: url(../../images/counter_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.overlay_counter_section {
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .55;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section_heading_cntnr_counter:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

/*///////// Video section ////////////*/

.section_heading_cntnr_video:before {
    content: "";
    position: absolute;
    top: -15px;
    right: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.video_iframe_Sec {
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .12);
}

.video_section_all_adv_listing {
    list-style-type: none;
    padding: 10px 0;
    width: 100%;
    display: inline-block;
}

.video_section_all_adv_listing li {
    float: left;
    width: 50%;
}

/*//////// testimonial section //////////*/

.testimonial_section {
    background-image: url(../../images/testimonial_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.overlay_testimonial {
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section_heading_testimonial:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.testimonials_section_all_comnts {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .12);
    margin: 30px 0;
    padding: 50px;
}

.client_img_conatiner_contain {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background: #f7f7f7;
    overflow: hidden;
}

.client_img_conatiner_contain img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.owl-carousel-testimonials .owl-nav {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
}

.owl-carousel-testimonials .owl-dots {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-carousel-testimonials .owl-dots .owl-dot {
    outline: 0;
}

.owl-carousel-testimonials .owl-dots .owl-dot.active span {
    background: #ff9100 !important;
}

.owl-carousel-expert-says .owl-nav {
    position: absolute;
    top: 45%;
    left: 0%;
    transform: translate(0%, -50%);
    /*height:0;*/
    margin: 0;
    width: 100%;
    margin: 0;
}

.owl-carousel-expert-says .owl-nav .owl-prev {
    font-size: 45px !important;
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, .15) !important;
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translate(0%, -50%);
}

.owl-carousel-expert-says .owl-nav .owl-next {
    font-size: 45px !important;
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, .15) !important;
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translate(0%, -50%);
}

.owl-carousel-expert-says .owl-nav button {
    outline: none !important;
}

.owl-carousel-expert-says .owl-nav button span {
    line-height: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    top: -5px;
}


/*///////////// App promotion ////////////*/

.section_heading_cntnr_app_prmt:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

/*//////// newsletter section //////////*/

.newsletter_section_bg_img {
    background-image: url(../../images/newsletter_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    border-radius: 7px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.overlay_newsletter_section {
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section_heading_newsltr_counter:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

/*/////////// Footer section /////////*/

.footer_section {
    padding-top: 100px;
    padding-bottom: 55px;
    background: #2e2c2c;
    margin-top: 0;
}

.footer_all_sep_Secs h5:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 15px;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 55px;
}

.footer_all_sep_Secs ul li a:hover {
    color: #ff9100;
}

.copyright_section {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 20px;
    background: #1d1c1c;
}

.copyright_section a:hover {
    color: #ff9100;
}

.whatsapp_btn_fixd {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
}

.whatsapp_btn_fixd img {
    width: 35px;
    height: 35px;
}

.messenger_btn_fixd {
    position: fixed;
    bottom: 85px;
    right: 25px;
    z-index: 9999;
}

.messenger_btn_fixd img {
    width: 35px;
    height: 35px;
}


/*//////////// about us page ///////////*/

.header_bredcrumb_main_Section {
    background-image: url(../../images/header_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
    width: 100%;
}

.heading_bredcrmb_Sec:after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/*/////*/

.about_us_Sec_1_img {
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 07%);
}

.about_us_Sec_1_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.section_heading_rhgt_perm_sec:before {
    content: "";
    position: absolute;
    top: -15px;
    right: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.prgress_bar_sec .progress {
    height: 5px;
    background: #ddd !important;
}

.prgress_bar_sec .progress .progress-bar {
    background: #1c1c1c;
}

/*//////// get quote on our services ///////*/

.extra_get_Quote_on_Serv_section .section_heading_cntnr_counter:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.extra_get_Quote_on_Serv_section {
    background-image: url(../../images/get_quote_on_serv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    position: relative;
}

.extra_get_Quote_on_Serv_section .overlay_counter_section_get_quote_serv_pg {
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.our_Services_crds__sec_btm_01 {
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
}

.our_Services_crds__sec_btm_01 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*/////// faq //////*/

.section_heading_cntnr_faq:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

.all_faq_container_main_faq_list_ol {
    background: #fff;
    padding: 20px 40px;
    padding-left: 60px;
    border-radius: 4px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .04);
}

.counter_faq_Sec_digit {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1d1c1c;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    position: absolute;
    left: -40px;
    top: 4px;
    font-size: 12px;
    font-weight: bold;
}

/*///////// contact us page /////////*/

.contact_s_info_Sec_01_left {
    background: #fff;
    padding: 25px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 7px rgb(0 0 0 / 4%);
}

.contact_s_info_Sec_01_left_sep h5:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 55px;
}

.section_heading_cntnr_get_in_tch:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0%;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 100px;
}

/*/////// login sign up page ////////*/

.login_sec_head_main {
    background-image: url(../../images/login_signup_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 215px;
    padding: 20px;
    position: relative;
}

.login_sec_head_main_on_position {
    position: absolute;
    bottom: 25px;
    left: 0;
    padding: 20px;
}

.login_form_Sec_container {
    height: 100%;
    background: white;
    border-radius: 10px 10px 0 0;
    position: relative;
    top: -30px;
    padding-top: 40px;
}

.login_form_Sec_container02 {
    padding: 20px 15px !important;
}

.login_form_Sec_container_form .get_otp_btn .btn-theme {
    border: 1px solid #ff9100 !important;
    background: #fff !important;
    color: #ff9100 !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    font-size: 15px;
}

.login_form_Sec_container_form .get_otp_btn .btn-theme .material-icons {
    line-height: 0;
    position: relative;
    top: 5px;
    font-size: 20px;
    margin-left: 4px;
}

.login_form_Sec_container_form .enter_mbl_nmbr input {
    height: 50px !important;
}

.social_login_sign_up_btns button {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

/*Expert_says_section*/


.expert_says_section_all_comnts {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .12);
    /* margin: 30px 0; */
    height: 100%;
    padding: 24px;
}

.expert_client_img_conatiner_contain .client_img_conatiner_contain {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background: #f7f7f7;
    overflow: hidden;
}

.expert_client_img_conatiner_contain .client_img_conatiner_contain img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.expert_client_img_conatiner_contain h5:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    transform: translate(0%, -50%);
    border-top: 2px dashed #ff9100;
    width: 55px;
}

.expert_rating_str_sec_bg_clr {
    background: #fff3d9;
    padding: 5px;
    border-radius: 3px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert_rating_str_sec_bg_clr .material-icons {
    color: #ccc;
    margin: 0 1px;
    font-size: 18px;
}

.expert_rating_str_sec_bg_clr .material-icons.active {
    color: #ffae00;
}

.social_links_footer span {
    border-radius: 4px;
    background: #1d1c1c;
    width: 50px;
    height: 50px;
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
}

/*/////// track order side bar css /////////*/

.track_pkg_figure_dv {
    display: flex;
    margin: 0 !important;
}

.track_pkg_figure_dv img {
    width: 70px;
    height: 70px;
    border-radius: 15%;
    border: 1.5px solid #ff9100;
    margin-right: 12px;
    padding: 10px;
}

.track_pkg_figure_dv figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.track_pkg_figure_dv figcaption h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

.track_pkg_figure_dv figcaption h6 {
    font-size: 1rem;
    font-weight: 300;
}

.track_pkg_figure_dv figcaption h2 {
    font-size: 1.6rem;
    font-weight: 500;
}

.order-track {
    margin-top: 12px;
    padding: 20px 15px;
    border-top: 1px dashed #999;
    display: flex;
    flex-direction: column;
}

.order-track-step {
    display: flex;
    height: 100px;
}

.order-track-step:last-child {
    overflow: hidden;
    height: 100px;
}

.order-track-step:last-child .order-track-status span:last-of-type {
    display: none;
}

.order-track-status {
    margin-right: 15px;
    margin-top: 5px;
    position: relative;
}

.order-track-status-dot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff9100;
    position: relative;
}

.order-track-status-dot:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.order-track-status-line {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 100px;
    background: #ff9100;
}

.order-track-status-dot.inactive {
    background: #ddd !important;
}

.order-track-status-line.inactive {
    background: #ddd !important;
}

.order-track-text-stat {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.order-track-text-sub {
    font-size: 14px;
    font-weight: 500;
}

.order-track {
    transition: all .3s height 0.3s;
    transform-origin: top center;
}


/*//////////// responsive 1200px ////////////////*/

@media screen and (max-width:1200px) {

    .custom_nav_bar_main .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 13px;
    }

    #subscriberForm button {
        margin-top: 20px !important;
    }

}

/*//////////// responsive 991px ////////////////*/

@media screen and (max-width:991px) {

    .header_main_title_Sec h1 {
        font-size: 38px;
    }

    .get_fre_quote_btn_hedr a {
        padding: 17px 35px;
        font-size: 13px;
    }

    .section_heading_cntnr_video {
        margin-top: 50px;
    }

}


/*//////////// responsive 767px ////////////////*/

@media screen and (max-width:767px) {

    .container {
        max-width: 650px;
    }

    .header_main_title_Sec.text-center h1 {
        font-size: 34px !important;
    }

    .header_main_title_Sec.text-center p.text-light.font-18.font-400 {
        font-size: 14px !important;
    }

    .header_main_title_Sec.text-center p.text-light.font-18.font-400 br {
        display: none;
    }

    .header_main_title_Sec.text-center .header_route_img_sec.mb-5 {
        height: 50px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 25px !important;
    }

    .get_fre_quote_btn_hedr a {
        border-radius: 3.5px !important;
        padding: 17px 35px;
        font-size: 13px;
    }

    section {
        padding: 85px 0 !important;
    }

    .text-left.mb-5.section_heading_cntnr_app_prmt.text-dark.position-relative {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }

    .section_heading_cntnr {
        font-size: 26px !important;
    }

    .section_heading_cntnr_counter {
        font-size: 26px !important;
    }

    .section_heading_cntnr_video {
        font-size: 26px !important;
        margin-top: 50px;
    }

    .section_heading_testimonial {
        font-size: 26px !important;
    }

    .section_heading_newsltr_counter {
        font-size: 26px !important;
    }

    .section_heading_rhgt_perm_sec {
        font-size: 26px !important;
        margin-top: 50px;
        margin-bottom: 20px !important;
    }

    .section_heading_cntnr_faq {
        font-size: 26px !important;
    }

    .header_bredcrumb_main_Section {
        height: 200px !important;
    }

    h1.heading_bredcrmb_Sec {
        font-size: 28px !important;
    }

    .all_faq_container_main_faq_list_ol {
        padding: 20px 20px;
        padding-left: 25px;
    }

    .about_us_Sec_1_img {
        height: 270px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .contact_s_info_Sec_01_left_sep.row.mx-0 .col-lg-2.px-2.m-auto.text-center {
        text-align: left !important;
        margin-bottom: 10px !important;
    }

    .get_in_touch_col_6_sec {
        padding: 0 15px !important;
        margin-top: 30px !important;
    }

    .section_heading_cntnr_get_in_tch {
        font-size: 20px;
    }

    .newsletter_section_bg_img {
        padding: 15px !important;
        padding-top: 35px !important;
    }

    .newsletter_section_bg_img .row.mx-0.py-4.px-4 {
        padding: 10px 0 !important;
    }

    .newsletter_section_bg_img #subscriberForm {
        margin-top: 20px !important;
    }

    .text-gray.font-18.font-400.text-center.w-75.mx-auto.my-4 {
        width: 100% !important;
        font-size: 14px !important;
    }

    .counter_Section.pl-5 {
        padding: 0 !important;
    }

    .counter_Section.pl-5 h1.font-bold.text-primary {
        font-size: 34px !important;
    }

    .counter_Section.pl-5 h5 {
        font-size: 20px;
    }

    .testimonials_section_all_comnts {
        padding: 20px !important;
    }

    .testimonials_section_all_comnts .client_img_conatiner .text-dark.w-75.font-500.font-15.mx-auto.mt-4.mb-5 {
        font-size: 14px !important;
        width: 100% !important;
    }

    .owl-carousel-testimonials .owl-dots {
        bottom: 30px;
    }

    /*///////////// get quote all steps form ///////////*/

    #myForm.get_quote_form_Sec_container_form {
        padding: 0 !important;
    }

}


/*//////////// responsive 575px ////////////////*/

@media screen and (max-width:575px) {

    section {
        padding: 45px 0 !important;
    }

    .header_main_Section .col-lg-12.col-md-12.col-sm-12.py-5.mx-auto {
        padding: 17px 0 !important;
    }

    .custom_nav_bar_main .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 600 !important;
    }

    .custom_nav_bar_main nav.navbar.navbar-expand-lg .nav-item .get_quote_btn {
        margin-top: 10px;
    }

    .custom_nav_bar_main .navbar-nav {
        padding: 15px 0;
        border-top: 1px solid #ddd;
        margin-top: 15px;
    }

    .counter_Section.pl-5 h5 {
        font-size: 14px !important;
    }

    .video_iframe_Sec {
        height: 200px !important;
    }

    .all_steps_main_Sec {
        padding: 20px 0 !important;
    }

    .get_free_quote_Sec_main {
        padding: 20px 0 !important;
    }

    .get_free_quote_Sec_main .container.position-relative {
        padding: 0 !important;
    }

    .img-fluid.app_mockup_img_sec {
        margin-top: 25px !important;
        top: 0 !important;
    }

    .video_section_all_adv_listing li {
        float: left;
        width: 100%;
    }

}

.nav-link {
    padding: 0;
    font-size: 14px;
}

.navbar-nav {
    align-items: center;
    gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0rem;
    padding-left: 0rem;
}

.semibold {
    font-weight: 600;
}

.text-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    /* Limits content to 3 lines */
    -webkit-line-clamp: 3;
    /* Required for WebKit browsers */
}

@media screen and (max-width:992px) {

    .navbar-nav {
        align-items: self-start;
        padding: 16px;
    }

}

@media screen and (max-width:575px) {

    .left_sec_email .labelMenu {
        span {
            display: none;
        }
    }

}

.stickyTop {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

.navbarstickyTop {
    position: sticky;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 8;
}

.navbar img {
    width: 70px;
}

@media (max-width:575px) {
    .navbar img {
        width: 70px;
    }
}


/* tracking order */
.yellow-filter {
    filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(1733%) hue-rotate(359deg) brightness(101%) contrast(107%);
}

.booking-status-container {
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.driver-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.driver-img {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
}

.driver-details h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.driver-details p {
    margin: 0;
    font-size: 14px;
    color: #242424;
}

.booking-status {
    overflow: auto;
    height: calc(100vh - 300px);
}

.booking-status h4 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.status-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 2px;
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 16px;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border: 1px solid transparent;
    background-color: #fff;
    box-shadow: 0px 0px 6px #d9d9d9;
}

.status-icon img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(7%) saturate(6%) hue-rotate(8deg) brightness(93%) contrast(83%);
}

.status-text h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.status-text p {
    margin-bottom: 0px;
    font-size: 13px;
    color: #5D6375;
}

.status-item.active .status-icon {
    background: #fff7ee;
    border-color: #ff9100;

    img {
        filter: brightness(0) saturate(100%) invert(51%) sepia(92%) saturate(783%) hue-rotate(359deg) brightness(101%) contrast(106%);
    }
}


.progress-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    width: 2px;
    background: #ddd;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 25%;
    background: #ff9100;
    transition: height 0.3s ease;
}

.status-item.active~.progress-bar .progress {
    height: calc(100% / 5 * 2);
    /* Example for active step */
}

.status-text .view-details {
    color: #ff9100;
    font-size: 12px;
    text-decoration: none;
}

.status-text .view-details:hover {
    text-decoration: underline;
}