/*
[Master Stylesheet] 
Project: Impel Car Dealer Html
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
 1. Index Page
-------------------------------------------------------------------*/

/********************************************************
    body start
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
:root {
    --impl-primary-color: #FF5536;
    --impl-gradient-color: linear-gradient(84.1deg, #FF5536 0%, #FF8D59 100%);
    --impl-white-color: #ffffff;
    --impl-font-color: #797979;
    --impl-heading-color: #222222;
    --impl-bg-color: #333333;
    --impl-border-radius: 10px;
    --impl-box-shadow: 2px 4px 12.9px 0px #0000000D;
    --impl-transition: all 0.3s;
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Arimo", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--impl-font-color);
    position: relative;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 10px;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    height: 4px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: var(--impl-primary-color);
    min-height: 150px;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
    text-decoration: none;
    -webkit-transition: var(--impl-transition);
    -moz-transition: var(--impl-transition);
    -ms-transition: var(--impl-transition);
    -o-transition: var(--impl-transition);
    transition: var(--impl-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: var(--impl-transition);
    -moz-transition: var(--impl-transition);
    -ms-transition: var(--impl-transition);
    -o-transition: var(--impl-transition);
    transition: var(--impl-transition);
    margin: 0;
    padding: 0;
    word-break: break-word;
    text-transform: capitalize;
    line-height: 1.15 !important;
}

body h3 {
    font-size: 34px ;
    font-weight: 700 ;
}

body h4 {
    font-size: 28px ;
    font-weight: 700;
}

body h5 {
    font-size: 22px ;
    font-weight: 700 ;
}

body h6 {
    font-size: 18px ;
    font-weight: 500 ;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

::placeholder {
    color: #80929D;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #80929D;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
    line-height: 1.625;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: var(--impl-heading-color) !important;
	border: 1px solid #ccc;
	border-radius: 3px;
}
/********************************************************
    Common Style
********************************************************/

body.menu-open {
    overflow: hidden;
}

.impl_main_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container-fluid {
    max-width: 1920px;
}

.row>* {
    padding-right: calc(var(--bs-gutter-x)* .625);
    padding-left: calc(var(--bs-gutter-x)* .625);
}

.row {
    row-gap: 30px;
}

.impl_body_overlay {
    position: fixed;
    background: rgb(0 0 0 / 40%);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    cursor: zoom-in;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-open .impl_body_overlay {
    opacity: 1;
    visibility: visible;
}

.impl_section_wrapper {
    padding: 80px 0;
}

.impl_section_heading {
    text-align: center;
    margin-bottom: 25px;
}

.impl_section_heading h3 {
    color: var(--impl-heading-color);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--impl-bg-color);
    color: var(--impl-white-color);
    border-radius: 50%;
    transition: var(--impl-transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
    display: block !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--impl-gradient-color);
}

/********************************************************
    Go to Top Style
********************************************************/
.go-top{
    background-color: var(--impl-primary-color) !important;
}
.impl_top_icon a {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: var(--impl-transition);
    transform: translateY(100px);
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}

.impl_top_icon a span {
    position: relative;
    animation: border-transform 4s linear infinite alternate forwards;
}

.impl_top_icon a span::before {
    position: absolute;
    content: "";
    width: 62px;
    height: 38px;
    background: url(../images/car-light.png);
    background-repeat: no-repeat;
    top: -8px;
    left: 0;
    opacity: 0;
}

.impl_top_icon a:hover span::before {
    animation: light .8s linear infinite alternate;
}

@keyframes border-transform {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes light {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.impl_top_icon a:active {
    background-color: var(--impl-black-color);
}

.impl_top_icon a.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/********************************************************
    Loader Style
********************************************************/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
}

.spinner {
    position: relative;
    max-width: 200px;
    width: 200px;
}

.ball {
    border-radius: 50%;
    background: linear-gradient(84.1deg, #FF5536 0%, #FF8D59 100%);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 20px;
    left: 50px;
    animation: loading 1.2s linear infinite;
}

.ball:nth-of-type(2) {
    animation-delay: 0.4s;
}

.ball:nth-of-type(3) {
    animation-delay: 0.8s;
}

@keyframes loading {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        transform: translate3d(33px, 0, 0);
    }
    60% {
        transform: translate3d(66px, 0, 0);
    }
    80% {
        transform: translate3d(99px, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(99px, 0, 0) scale(0.5);
        opacity: 0;
    }
}

/********************************************************
    Button Style
********************************************************/

.impl_btn {
    min-height: 45px;
    border-radius: 5px;
    min-width: 140px;
    width: fit-content;
    color: var(--impl-white-color);
    padding: 5px 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--impl-gradient-color);
    gap: 10px;
    line-height: normal;
    white-space: nowrap;
}

.impl_btn:hover {
    transform: scale(.95);
    color: var(--impl-white-color);
}

.impl_fiter_tab li a.impl_btn {
   color: var(--impl-font-color);
}
/********************************************************
    Pre Header Section Style
********************************************************/

.impl_preheader {
    position: relative;
    background-color: var(--impl-bg-color);
    padding: 15px 0;
}

.impl_preheader_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 50px;
    flex-wrap: wrap;
}

.impl_header_social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.impl_header_social li a svg,
.impl_user_login svg {
    fill: #CDCDCD;
    transition: var(--impl-transition);
}

.impl_header_social li a:hover svg,
.impl_preheader_info li a svg,
.impl_user_login:hover svg {
    fill: var(--impl-white-color);
}

.impl_preheader_info li a,
.impl_preheader_info li p {
    color: #CDCDCD;
    display: flex;
    align-items: center;
    gap: 5px;
}

.impl_preheader_info li a:hover {
    color: var(--impl-white-color);
}

.impl_preheader_info {
    display: flex;
    align-items: center;
    gap: 20px 50px;
    flex-wrap: wrap;
}

.impl_user_login {
    display: none;
}
 ul.auto-menu li.current-menu-item a{
    color: var(--impl-primary-color);
 }
  ul.auto-menu li:hover>a{
    color: var(--impl-primary-color);
  }
/********************************************************
    Header Section Style
********************************************************/

.impl_banner_section {
    position: relative;
    background-size: auto;
    overflow: hidden;
    background-position: center;
}
.impl_bnr{
    overflow: unset;
}

.impl_banner_section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    animation: impl_ud 2.5s infinite alternate;
}

@keyframes impl_ud {
    0% {
        transform: translate(0)
    }
    to {
        transform: translateY(-10px)
    }
}

.impl_header_wrapper {
    position: relative;
    z-index: 9;
}

.impl_navbar {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 20px;
}

.impl_navbar .impl_logo {
    min-width: 250px;
    min-height: 80px;
    padding: 15px;
    background: var(--impl-gradient-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.impl_nav_item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.impl_navbar_nav {
    display: flex;
    gap: 50px;
}

.impl_res_logo,
.impl_toggle_btn {
    display: none;
}

.impl_navbar_nav li a {
    color: var(--impl-heading-color);
}

.impl_navbar_nav li a:hover,
.impl_navbar_nav li a.active {
    color: var(--impl-primary-color);
}

.impl_menu_dd {
    position: relative;
}

.impl_menu_dd > a img {
    display: none;
}

.impl_sub_menu {
    position: absolute;
    min-width: 210px;
    background-color: #fff;
    top: 25px;
    left: 0;
    border-bottom: 3px solid #f15b5b;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2em);
    z-index: 1;
    
}

.impl_sub_menu li a {
    padding: 10px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #ececec;
}

.impl_sub_menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

.impl_navbar_btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

.impl_search_area {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--impl-bg-color);
    width: 100%;
    text-align: center;
    padding: 40px 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-200%);
    transition: var(--impl-transition);
}

.impl_search_area.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.srch_inner {
    margin: 0 auto;
    position: relative;
    max-width: 800px;
}

.srch_inner form {
    position: relative;
}

.srch_inner input[type="text"] {
    width: 100%;
    min-height: 45px;
    padding: 0px 65px 0 15px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.srch_inner button {
    position: absolute;
    right: 2px;
    top: 2px;
    min-width: 48px;
    min-height: 41px;
}

.impl_search_close {
    position: absolute;
    right: 20px;
    top: 15px;
}

.impl_toggle_btn {
    cursor: pointer;
}

.impl_toggle_btn a {
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.impl_toggle_btn span {
    background: #222;
    border-radius: 10px;
    height: 3px;
    margin: 3px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.impl_toggle_btn span:nth-of-type(1) {
    width: 50%;
}

.impl_toggle_btn span:nth-of-type(2) {
    width: 100%;
}

.impl_toggle_btn span:nth-of-type(3) {
    width: 75%;
}

.menu-open .impl_toggle_btn span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(3px, 0px);
}

.menu-open .impl_toggle_btn span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}

.menu-open .impl_toggle_btn span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(13px, -5px) rotatez(45deg);
}

/********************************************************
    Banner Section Style
********************************************************/

.impl_banner_wrapper {
    position: relative;
    padding: 70px 0 150px;
}

.impl_banner_text {
    text-align: center;
}

.impl_banner_text h6 {
    font-size: 18px;
    color: var(--impl-primary-color);
}

.impl_banner_text h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--impl-heading-color);
}

.impl_banner_tab {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.impl_banner_tab li a {
    font-size: 18px;
    color: var(--impl-heading-color);
}

.impl_banner_tab li a.active,
.impl_banner_tab li a:hover {
    color: var(--impl-primary-color);
}

.impl_banner_pane {
    display: none;
}

.impl_banner_form {
    background-color: var(--impl-white-color);
    box-shadow: var(--impl-box-shadow);
    border-radius: var(--impl-border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.impl_banner_dropdown {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.impl_banner_dropdown span {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 50px;
}

.impl_banner_dropdown span::after {
    position: absolute;
    content: "";
    background-color: #F1F1F1;
    width: 1px;
    height: 43px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.impl_banner_dropdown span:first-child {
    padding-left: 20px;
}

.impl_banner_dropdown span:last-child::after {
    display: none;
}

.impl_banner_dropdown select {
    color: var(--impl-font-color);
    cursor: pointer;
    position: relative;
    width: 100%;
    padding: 20px 15px;
    border: none;
}
.form-select:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

.impl_banner_slider {
    position: relative;
    margin-top: 40px;
    padding-left: 65px;
}

.impl_banner_slider .swiper {
    max-width: 970px;
    max-height: 321px;
}

.impl_banner_slider::before {
    position: absolute;
    content: "";
    bottom: -40px;
    left: 45px;
    width: 229px;
    height: 199px;
    background-repeat: no-repeat;
}

.impl_banner_slider::after {
    position: absolute;
    content: "";
    bottom: -40px;
    width: 229px;
    height: 359px;
    background-repeat: no-repeat;
    z-index: 1;
    left: 45px;
}

.impl_banner_img {
    text-align: center;
    overflow: hidden;
}

.impl_banner_img img {
    transition: all 2s;
    transform: translateX(-100%);
}

.impl_banner_slider .swiper-slide-active .impl_banner_img img {
    transform: translateX(0);
}

.impl_banner_slider .swiper-button-prev {
    left: 0;
}

.impl_banner_slider .swiper-button-next {
    right: 0;
}

/********************************************************
    Browse By Type Section Style
********************************************************/

.impl_type_slider {
    position: relative;
}

.impl_type_box {
    text-align: center;
}

.impl_type_img {
    min-height: 115px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFDFDF;
    border-radius: var(--impl-border-radius);
}

.impl_type_img svg {
    fill: var(--impl-font-color);
    transition: var(--impl-transition);
}

.impl_type_box:hover .impl_type_img svg {
    fill: var(--impl-primary-color);
}
.impl_type_box:hover .impl_type_img{
    border-color: var(--impl-primary-color);
}
.impl_type_text {
    margin-top: 15px;
}

.impl_type_text p {
    color: var(--impl-font-color);
    font-size: 18px;
    transition: var(--impl-transition);
    line-height: 1.15;
}

.impl_type_box:hover .impl_type_text p {
    color: var(--impl-heading-color);
}

.impl_type_slider .swiper-button-prev {
    left: -60px;
}

.impl_type_slider .swiper-button-next {
    right: -60px;
}
.impl_banner_shape {
    position: absolute;
    content: "";
    bottom: -40px;
    width: 229px;
    height: 359px;
    background-repeat: no-repeat;
    z-index: 1;
    left: 45px;
}
/********************************************************
    Ad Section Style
********************************************************/

.impl_ad_wrapper,
.impl_video_wrapper {
    padding-top: 0 !important;
}

.impl_ad_box {
    position: relative;
    border-radius: var(--impl-border-radius);
    padding: 30px 30px 60px;
    background-size: cover;
    background-repeat: no-repeat;
}


.impl_ad_text {
    position: relative;
    max-width: 300px;
    z-index: 1;
}

.impl_ad_text h3 {
    color: var(--impl-heading-color);
    margin-bottom: 10px;
}

.impl_ad_btn {
    position: relative;
    margin-top: 20px;
    z-index: 1;
}

.impl_ad_img {
    position: absolute;
    right: 15px;
    bottom: 8px;
}

/********************************************************
    About Section Style
********************************************************/

.impl_about_wrapper,
.impl_choose_wrapper,
.impl_news_wrapper {
    background-color: #FFEEE2;
    border-radius: 20px;
}

.impl_about_heading,
.impl_choose_heading,
.impl_booking_heading {
    margin-bottom: 20px;
}

.impl_about_heading p {
    color: var(--impl-primary-color);
}

.impl_about_heading h3 {
    margin-top: 10px;
    color: var(--impl-heading-color);
}

.impl_about_list {
    margin-top: 20px;
}

.impl_about_list li {
    position: relative;
    /* padding-left: 25px; */
    margin-bottom: 15px;
    line-height: 1.625;
    display: flex;
    gap: 10px;
}

.impl_about_list li:last-child {
    margin-bottom: 0;
}

.impl_about_list li::before {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    left: 0;
    top: 2px;
}

.impl_about_btn {
    margin-top: 25px;
}

/********************************************************
    Explore Section Style
********************************************************/

.impl_fiter_tab {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ECECEC;
    max-width: fit-content;
    margin: auto;
    gap: 5px 8px;
    flex-wrap: wrap;
    padding: 2px;
    border-radius: 5px;
}

.impl_fiter_tab li a {
    padding: 0 20px;
    min-width: 65px;
    color: var(--impl-font-color);
    background: transparent;
    min-height: 44px;
}

.impl_fiter_tab li a.active {
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}

.impl_explore_box {
    position: relative;
    background-color: var(--impl-white-color);
    border-radius: 5px 5px 0 0;
    border: 1px solid #ECECEC;
    padding: 5px;
}

.impl_explore_img {
    position: relative;
    border-radius: 10px 10px 0 10px;
    overflow: hidden;
    max-height: 250px;
}

.impl_explore_img>img {
    min-height: 250px;
    width: 100%;
    object-fit: cover;
}

.impl_explore_img::before {
    position: absolute;
    content: "";    
    min-width: 138px;
    min-height: 54px;
    bottom: 0;
    right: -1px;
    background-repeat: no-repeat;
    background-size: contain;
}

.impl_veh_price {
    position: absolute;
    right: -2px;
    bottom: 0;
    background-size: cover;
    padding: 20px 15px 10px 25px;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    width: 138px;
    height: 54px;
    text-align: center;
}

.impl_veh_price h5 {
    color: var(--impl-heading-color);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.impl_explore_card:hover .impl_veh_price h5 {
    color: var(--impl-primary-color);
}
.impl_explore_text p{
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.impl_explore_links {
    position: absolute;
    left: 10px;
    bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--impl-transition);
}

.impl_explore_card:hover .impl_explore_links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.impl_explore_links li a {
    width: 34px;
    height: 34px;
    background: var(--impl-heading-color);
    transition: var(--impl-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.impl_explore_card:hover .impl_explore_links a {
    transform: rotate(360deg);
    transition-delay: .1s;
}

.impl_explore_links li a:hover {
    /* background: var(--impl-gradient-color); */
    /* transform: translateY(-5px); */
}

.impl_explore_links li .compare-button a:hover{
    transform: translateY(-5px);
}
.impl_explore_detail {
    padding: 0 10px;
}

.impl_explore_text {
    margin: 15px 0;
}

.impl_explore_text h6 {
    color: var(--impl-heading-color);
    margin-bottom: 5px;
}

.impl_explore_card:hover .impl_explore_text h6 {
    color: var(--impl-primary-color);
}

.impl_explore_bottom {
    display: flex;
    justify-content: space-between;
    text-align: center;
    background-color: #F6F6F6;
    padding: 15px;
    transition: var(--impl-transition);
    border-radius: 0 0 5px 5px;
}

.impl_explore_card:hover .impl_explore_bottom {
    background-color: #FFF3EA;
}

.impl_explore_info svg {
    fill: var(--impl-font-color);
    transition: var(--impl-transition);
}

.impl_explore_card:hover .impl_explore_info svg {
    fill: var(--impl-primary-color);
}

.impl_explore_info h6 {
    margin-top: 5px;
    font-weight: 400;
    color: var(--impl-font-color);
}

.impl_explore_card:hover .impl_explore_info h6 {
    color: var(--impl-primary-color);
}

/********************************************************
    We offer Section Style
********************************************************/

.impl_offer_wrapper {
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    padding: 40px 0;
}

.impl_offer_box {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.impl_offer_icon {
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--impl-border-radius);
    border: 1px solid #464646;
}

.impl_offer_text h4 {
    color: var(--impl-white-color);
}

.impl_offer_text p {
    color: #cdcdcd;
}

/********************************************************
    Why Choose Us Section Style
********************************************************/

.impl_choose_heading h3 {
    color: var(--impl-heading-color);
}

.impl_choose_text {
    margin-bottom: 45px;
}

.impl_choose_text p {
    margin-bottom: 20px;
}

.impl_choose_box {
    background-color: var(--impl-white-color);
    box-shadow: var(--impl-box-shadow);
    border-radius: var(--impl-border-radius);
    text-align: center;
    padding: 40px 30px 35px;
}
/*
.impl_choose_icon {
    border-radius: 20px;
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impl_choose_info {
    margin-top: 20px;
}
*/
.impl_choose_icon.icon_1 {
    background: linear-gradient(180deg, #DB08A0 0%, #FF68D5 100%);
    box-shadow: 7px 6px 22px 0px #DB08A04D;
}

.impl_choose_icon.icon_2 {
    background: linear-gradient(180deg, #0837DB 0%, #6F8FFF 100%);
    box-shadow: 7px 6px 22px 0px #1642DF4D;
}

.impl_choose_icon.icon_3 {
    background: linear-gradient(180deg, #F31220 0%, #FF848B 100%);
    box-shadow: 7px 6px 22px 0px #F312204D;
}

.impl_choose_icon.icon_4 {
    background: linear-gradient(180deg, #7228B7 0%, #AE63F3 100%);
    box-shadow: 7px 6px 22px 0px #7228B74D;
}



.impl_choose_info h6 {
    font-weight: 600;
    color: var(--impl-heading-color);
    margin-bottom: 5px;
}

/********************************************************
    Testimonial Section Style
********************************************************/

.impl_testimonial_box {
    position: relative;
    background-color: var(--impl-white-color);
    box-shadow: 0px 0px 50px 0px #0000000F;
    border-radius: var(--impl-border-radius);
    padding: 25px 0;
    cursor: pointer;
}

.impl_testi_shape {
    position: absolute;
    top: 0px;
    right: 0px;
}

.impl_testimonial_head {
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px solid #F0F0F0;
}

.impl_testi_client {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
}

.impl_testi_client>img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--impl-border-radius);
}

.impl_client_info p {
    font-weight: 600;
    color: var(--impl-heading-color);
    margin-bottom: 5px;
    transform: var(--impl-transition);
}

.impl_testimonial_box:hover .impl_client_info p {
    color: var(--impl-primary-color);
}

.impl_testi_rating {
    display: flex;
    gap: 10px;
}

.impl_testimonial_text {
    margin-top: 25px;
    padding: 0 30px;
}

.impl_testi_quote {
    position: absolute;
    right: 25px;
    top: 8px;
    z-index: 1;
}

/********************************************************
    Video Section Style
********************************************************/

.impl_video_content {
    position: relative;
    margin-left: auto;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 150px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    background-position: left;
}

.impl_video_content h3 {
    position: relative;
    color: var(--impl-white-color);
    max-width: 542px;
    margin: auto;
}

.impl_video_content a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--impl-white-color);
    border-radius: 50%;
    margin: 30px auto 0;
}

/********************************************************
    News Section Style
********************************************************/

.impl_news_card {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: var(--impl-border-radius);
    box-shadow: var(--impl-box-shadow);
    background-color: var(--impl-white-color);
    gap: 20px;
    overflow: hidden;
}

.impl_news_img {
    position: relative;
    min-width: 370px;
    overflow: hidden;
}

.impl_news_img img {
    min-height: 305px;
    width: 100%;
    object-fit: cover;
}

.impl_news_full {
    padding: 20px 25px 20px 0;
}

.impl_news_text h6 {
    font-weight: 400;
    color: var(--impl-heading-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-align: left;
}

.impl_news_card:hover .impl_news_text h6,
.impl_news_box:hover .impl_news_text h6 {
    color: var(--impl-primary-color);
}

.impl_news_text p {
    color: var(--impl-font-color);
    margin: 20px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-align: left;
}

.impl_writer_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.impl_writer_info img {
    width: 50px;
    height: 50px;
    border-radius: var(--impl-border-radius);
    object-fit: cover;
}

.impl_writer_info p {
    color: var(--impl-heading-color);
    font-weight: 600;
}

.impl_writer_info span {
    font-size: 14px;
    color: var(--impl-font-color);
}

.impl_news_box {
    padding: 5px;
    background-color: var(--impl-white-color);
    box-shadow: var(--impl-box-shadow);
    border-radius: var(--impl-border-radius);
    overflow: hidden;
}

.impl_news_box .impl_news_img {
    min-width: 100%;
    max-height: 212px;
    border-radius: var(--impl-border-radius);
}

.impl_news_box .impl_news_img img {
    min-height: 212px;
}

.impl_news_box .impl_news_text {
    padding: 20px 20px 15px;
}

.impl_news_box .impl_news_text h6 {
    -webkit-line-clamp: 2;
    line-height: 1.33;
}

/********************************************************
    Newsletter Section Style
********************************************************/

.impl_newsletter_wrapper {
    position: relative;
}

.impl_newsletter_wrapper .container {
    position: relative;
    z-index: 2;
}

.impl_newsletter_text {
    text-align: center;
}

.impl_newsletter_text h3 {
    color: var(--impl-heading-color);
    margin-bottom: 10px;
}

.impl_newsletter_form {
    position: relative;
    max-width: 770px;
    margin: auto;
    z-index: 1;
}

.impl_newsletter_form input {
    padding: 10px 155px 10px 15px;
    min-height: 45px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    width: 100%;
    background: transparent;
}

.impl_newsletter_form .impl_btn {
    position: absolute;
    right: 0;
    top: 0;
}

.impl_newsletter_img {
    position: absolute;
    left: 0;
    bottom: -55px;
    z-index: 1;
}

/********************************************************
    Footer Section Style
********************************************************/

.impl_footer_wrapper {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.impl_footer_img {
    bottom: -45px;
    position: absolute;
    right: 0;
}

.impl_footer_wrapper .container {
    z-index: 1;
    position: relative;
}

.impl_footer_wrapper .container>.row {
    align-items: flex-end;
}

.impl_footer_text {
    max-width: 325px;
    margin: 25px 0 20px;
}

.impl_footer_text p {
    color: #CDCDCD;
}

.impl_footer_social , .auto-social-icon{
    display: flex;
    align-items: center;
    gap: 45px;
}

.impl_footer_social li a svg , .auto-social-icon li a svg{
    fill: #cdcdcd;
    transition: var(--impl-transition);
}

.impl_footer_social li a:hover svg ,.auto-social-icon li a:hover svg{
    fill: var(--impl-white-color);
}

.impl_footer_heading {
    margin-bottom: 20px;
}

.impl_footer_heading h6 {
    color: var(--impl-white-color);
    font-size: 20px;
}

.impl_footer_links li {
    list-style: inside;
    margin-bottom: 15px;
}

.impl_footer_links li:last-child {
    margin-bottom: 0;
}

.impl_footer_links li a,
.impl_footer_address li a {
    color: #CDCDCD;
}

.impl_footer_links li a:hover,
.impl_footer_address li a:hover {
    color: var(--impl-white-color);
}

.impl_footer_address li {
    margin-bottom: 15px;
}

.impl_footer_address li a {
    display: flex;
    gap: 10px;
}

.impl_footer_address li a svg {
    min-width: 20px;
}

/********************************************************
    Copyright Section Style
********************************************************/

.impl_copyright_wrapper {
    padding: 12px 0;
    background-color: #171717;
}

.impl_copyright_text {
    text-align: center;
}

.impl_copyright_text p {
    color: var(--impl-white-color);
}

/*-------------------------------------------------------------------
 2. About Page
-------------------------------------------------------------------*/

/********************************************************
    Inner Pagea Banner Style
********************************************************/

.impl_page_banner_section {
    position: relative;
    background: url(../images/page_bnr.jpg) no-repeat top;
    background-size: cover;
}

.impl_page_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px 30px;
    flex-wrap: wrap;
}

.impl_page_heading h3 {
    text-transform: uppercase;
    color: var(--impl-bg-color);
}

.impl_page_heading p {
    color: var(--impl-heading-color);
}

.impl_page_heading p a {
    color: var(--impl-heading-color);
    transition: var(--impl-transition);
}

.impl_page_heading p a:hover {
    color: var(--impl-primary-color);
}

.impl_page_heading p a svg {
    width: 16px;
    fill: var(--impl-heading-color);
    transition: var(--impl-transition);
    margin-top: -4px;
}

.impl_page_heading p a:hover svg {
    fill: var(--impl-primary-color);
}

.impl_page_wrapper {
    position: relative;
    padding: 70px 0;
}

/********************************************************
    Booking Section Style
********************************************************/

.impl_booking_heading p, .impl_contact_heading p {
    color: var(--impl-primary-color);
}

.impl_booking_heading h3, .impl_contact_heading h3 {
    margin-top: 10px;
    color: var(--impl-heading-color);
}

.impl_booking_box {
    background-color: var(--impl-white-color);
    border-radius: var(--impl-border-radius);
    box-shadow: var(--impl-box-shadow);
    border: 1px solid #ECECEC;
    padding: 30px 20px;
    position: relative;
}

.impl_booking_box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 30px;
    background-color: #ECECEC;
    width: 1px;
    height: calc(100% - 60px);
}

.impl_booking_box span {
    position: relative;
}

.impl_booking_box span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 33.33%;
    background-color: #ECECEC;
    width: 100%;
    height: 1px;
    transform: translateY(50%);
}

.impl_booking_box span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 66.66%;
    background-color: #ECECEC;
    width: 100%;
    height: 1px;
    transform: translateY(50%);
}

.impl_booking_card {
    padding: 15px 20px;
    min-height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impl_booking_card h6 {
    color: var(--impl-heading-color);
    margin-top: 5px;
}

.impl_history_tab {
    display: flex;
    align-items: center;
    gap: 15px 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
    margin: 40px 0 20px;
}

.impl_history_tab li a {
    color: var(--impl-heading-color);
    padding-bottom: 22px;
}

.impl_history_tab li a.active {
    color: var(--impl-primary-color);
    border-bottom: 1px solid var(--impl-primary-color);
}

.impl_history_pane {
    display: none;
}

.impl_history_pane h6 {
    color: var(--impl-heading-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.impl_history_pane p {
    margin-bottom: 20px;
}

.impl_history_pane p:last-child {
    margin-bottom: 0;
}

/*-------------------------------------------------------------------
 3. Purchase Car Page
-------------------------------------------------------------------*/

/********************************************************
    Listing Section Style
********************************************************/

.impl_fiter_box {
    background-color: var(--impl-white-color);
    box-shadow: var(--impl-box-shadow);
    padding: 30px 20px;
    border: 1px solid #ececec;
}

.impl_fiter_heading h5 {
    color: var(--impl-heading-color);
}

.impl_filter_dd {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    min-width: fit-content;
}

.impl_filter_dd:last-child {
    margin-bottom: 0;
}

.impl_filter_dd span {
    position: relative;
    display: block;
    width: 100%;
}

.impl_filter_dd span::before {
    position: absolute;
    top: 50%;
    right: 15px;
    content: "";
    background-repeat: no-repeat;
    width: 12px;
    height: 7px;
    z-index: 1;
    transform: translateY(-50%);
}

.impl_filter_dd select {
    color: var(--impl-font-color);
    cursor: pointer;
    position: relative;
    width: 100%;
    padding: 15px 35px 15px 15px;
    border: 1px solid #ececec;
    appearance: none;
}

.impl_filter_heading {
    margin-bottom: 15px;
}

.impl_filter_heading p {
    color: var(--impl-heading-color);
    font-weight: 500;
}

.impl_select_color {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.impl_select_color li {
    width: calc(50% - 10px);
    position: relative;
}

.impl_select_color li label {
    padding-left: 20px;
    line-height: normal;
}

.impl_select_color li input[type=checkbox] {
    display: none;
}

.impl_select_color label::before {
    content: "";
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    border-radius: 2px;
}

.impl_select_color li:nth-child(1) label::before {
    background-color: black;
}

.impl_select_color li:nth-child(2) label::before {
    background-color: blue;
}

.impl_select_color li:nth-child(3) label::before {
    background-color: brown;
}

.impl_select_color li:nth-child(4) label::before {
    background-color: green;
}

.impl_select_color li:nth-child(5) label::before {
    background-color: red;
}

.impl_select_color li:nth-child(6) label::before {
    background-color: orange;
}

.impl_select_color li:nth-child(7) label::before {
    background-color: purple;
}

.impl_select_color li:nth-child(8) label::before {
    background-color: gray;
}

.impl_select_color li label::after {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s opacity;
    position: absolute;
    top: 4px;
    left: 2px;
    border: 2px solid var(--impl-white-color);
    transform: rotate(317deg);
    width: 10px;
    height: 5px;
    border-top: 0;
    border-right: 0;
    content: '';
}

.impl_select_color li input:checked+label::after {
    opacity: 1;
    visibility: visible;
}

.impl_range_slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.impl_range_slider .impl_progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--impl-primary-color);
}

.range-input {
    position: relative;
}

.range-input input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-input input[type="range"]::-webkit-slider-thumb {
    height: 14px;
    width: 14px;
    background: var(--impl-primary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.range-input input[type="range"]::-moz-range-thumb {
    height: 14px;
    width: 14px;
    background: var(--impl-primary-color);
    border: none;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price-input {
    margin-top: 10px;
    position: relative;
    display: flex;
}

.price-input .input-min,
.price-input .input-max {
    width: 100%;
}

.price-input .input-max {
    text-align: right;
}

.impl_filter_btn a {
    width: 100%;
}

.impl_sort_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.impl_sort_left h6 {
    color: var(--impl-heading-color);
}

.impl_pagination {
    display: flex;
    justify-content: flex-end;
}

.impl_pagination ul {
    display: flex;
    gap: 5px;
}

.impl_pagination ul li {
    padding: 10px 0;
}

.impl_pagination ul li a {
    border: 1px solid #ececec;
    padding: 10px 15px;
    color: var(--impl-font-color);
    border-radius: 5px;
}

.impl_pagination ul li a.active,
.impl_pagination ul li a:hover {
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}

.impl_sort_right {
    display: flex;
    gap: 15px;
}

.impl_sort_right .impl_filter_dd {
    margin-bottom: 0;
}

/*-------------------------------------------------------------------
 4. Services Page
-------------------------------------------------------------------*/

/********************************************************
    Service Section Style
********************************************************/

.impl_service_tab {
    display: flex;
    flex-wrap: wrap;
}

.impl_service_tab li {
    width: 50%;
}

.impl_service_tab li a {
    position: relative;
    color: var(--impl-font-color);
    text-align: right;
    display: flex;
    background-color: var(--impl-white-color);
    border: 1px solid #ececec;
    padding: 50px 20px;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.impl_service_tab li a.active {
    background-color: var(--impl-primary-color);
}

.impl_service_tab li a h5 {
    position: absolute;
    color: #ececec;
    top: 20px;
    left: 20px;
}

.impl_service_tab li a.active h5 {
    transform: scale(1.2);
    color: rgb(255 255 255 / 70%);
}

.impl_service_tab li a svg {
    width: 60px;
    fill: var(--impl-primary-color);
}

.impl_service_tab li a.active svg {
    fill: var(--impl-white-color);
}

.impl_service_tab li a.active h6 {
    color: var(--impl-white-color);
}

.impl_service_pane {
    display: none;
}

.impl_service_img {
    max-height: 375px;
    overflow: hidden;
}

.impl_service_img img {
    min-height: 375px;
    width: 100%;
    object-fit: cover;
}

.impl_service_text {
    margin-top: 20px;
}

.impl_service_text h5 {
    color: var(--impl-heading-color);
    margin-bottom: 15px;
}

.impl_service_btn {
    margin-top: 20px;
}



/*-------------------------------------------------------------------
 5. Listing - Single Page
-------------------------------------------------------------------*/

.big-img {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.display-img{
  width: 100%;
}

.img-selection {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.img-thumb{
  max-width: 140px;
  max-height: 140px;
  cursor: pointer;
  transition: .3s ease;
  opacity: .5;
}

.img-thumb:hover, .img-thumb.selected{
  opacity: 1;
}

.impl_auto_name{
    margin-bottom: 10px;
}

.impl_auto_name h5, .impl_auto_price h6{
    color: var(--impl-heading-color);
}

.impl_auto_text {
    padding-bottom: 20px;
    margin: 10px 0 20px;
    border-bottom: 1px solid #ececec;
}

.impl_auto_rating {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.impl_auto_rating img {
    max-width: 18px;
}

.impl_auto_rating p, .impl_auto_price span{
    font-size: 14px;
}

.impl_auto_price span a svg {
    width: 14px;
    margin-top: -3px;
}

.impl_auto_price h6{
    margin-bottom: 5px;
}

.impl_auto_btn {
    margin-top: 15px;
}

.impl_auto_tab{
    display: flex;
    gap: 15px 30px;
    border-bottom: 1px solid #ececec;
}

.impl_auto_tab li a h6{
    color: var(--impl-heading-color);
    padding-bottom: 20px;
}

.impl_auto_tab li a.active  h6{
    color: var(--impl-primary-color);
    border-bottom: 1px solid var(--impl-primary-color);
}

.impl_auto_pane{
    display: none;
}

.table-responsive .table>tbody tr td{
    padding: 15px;
    border-bottom: 1px solid #ececec;
    color: var(--impl-font-color);
    white-space: nowrap;
}

.table-responsive .table>tbody tr td:first-child {
    color: var(--impl-heading-color);
    padding-left: 0;
    width: 100%;
}

.table-responsive .table>thead tr th{
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--impl-primary-color);
    color: var(--impl-heading-color);
    white-space: nowrap;
}


/*-------------------------------------------------------------------
 6. Blogs Page
-------------------------------------------------------------------*/

/********************************************************
    Blogs Section Style
********************************************************/
.impl_blog_wrapper{
    overflow: hidden;
}

.impl_blog_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3333336b;
    backdrop-filter: blur(2px);
    transform: scale(0);
}

.impl_news_box:hover .impl_blog_link {
    transform: scale(1);
    transition: var(--impl-transition);
}

.impl_blog_link a {
    background-color: var(--impl-primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/*-------------------------------------------------------------------
 7. Blogs Single Page
-------------------------------------------------------------------*/

/********************************************************
    Blogs Section Style
********************************************************/

.impl_blog_image{
    overflow: hidden;
    border-radius: var(--impl-border-radius);
}

.impl_blog_full li {
    list-style-type: square;
    color: var(--impl-primary-color);
}

.impl_blog_full h6 {
    color: var(--impl-heading-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
    margin: 15px 0 5px;
    line-height: 1.5;
}

.impl_blog_full p {
    font-size: 14px;
    font-weight: 500;
}

.impl_full_info p{
    margin-bottom: 20px;
}

.impl_full_info p:last-child{
    margin-bottom: 0;
}

.impl_tags {
    font-size: 16px;
    display: flex;
    border-bottom: 1px solid #ececec;
    align-items: center;
    padding-bottom: 20px;
    gap: 15px 20px;
    flex-wrap: wrap;
}

.impl_tags li a {
    color: var(--impl-heading-color);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impl_tags li a.active {
    color: var(--impl-primary-color);
    border: 1px solid var(--impl-primary-color);
}

.impl_author_card {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.impl_author_img img {
    width: 70px;
    min-width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--impl-border-radius);
}

.impl_author_info span{
    font-size: 14px;
    color: var(--impl-primary-color);
}

.impl_author_info p {
    max-width: 450px;
}

.impl_author_name {
    font-weight: 600;
    color: var(--impl-heading-color);
}

.impl_author_info .impl_social_icon {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    justify-content: flex-start;
}

.impl_author_info .impl_social_icon svg {
    fill: #797979;
}

.impl_comment_heading h5{
    color: var(--impl-heading-color);
}

.impl_comment_card {
    display: flex;
    gap: 20px;
    position: relative;
    margin-bottom: 15px;
}

.impl_comm_user_thumb img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--impl-border-radius);
}

.impl_comm_info h6 {
    margin-bottom: 5px;
}

.impl_comm_info span {
    color: var(--impl-primary-color);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.impl_input_flex {
    display: flex;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.impl_input_flex:last-child{
    margin-bottom: 0;
}

.impl_input {
    width: 100%;
    position: relative;
}

.impl_input input {
    padding: 0 15px;
    position: relative;
    height: 45px;
    background-color: transparent;
    display: block;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ececec;
}

.impl_input textarea {
    resize: none;
    width: 100%;
    padding: 15px;
    min-height: 171px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #ececec;
}

.impl_comm_btn {
    margin-top: 25px;
}

.impl_side_heading h5 {
    color: var(--impl-heading-color);
}

.impl_blog_card {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.impl_blog_img img {
    width: 130px;
    min-width: 130px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 90px;
}

.impl_blog_detail li {
    list-style-type: square;
    color: var(--impl-primary-color);
}

.impl_blog_detail p {
    margin: 5px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
    color: var(--impl-heading-color);
    font-weight: 600;
    line-height: 1.15;
}

.impl_blog_detail span {
    font-size: 14px;
    font-weight: 500;
}

/*-------------------------------------------------------------------
 8. Sell Page
-------------------------------------------------------------------*/

/********************************************************
    Sell Section Style
********************************************************/

.impl_sell_tab{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ececec;
}

.impl_sell_tab li a {
    text-align: center;
    padding-bottom: 20px;
    display: block;
    border-bottom: 2px solid transparent;
}

.impl_sell_tab li a.active{
    border-bottom: 2px solid var(--impl-primary-color);
}

.impl_sell_tab li a p {
    width: 30px;
    height: 30px;
    color: var(--impl-primary-color);
    border: 2px solid var(--impl-primary-color);
    border-radius: 50%;
    background-color: transparent;
    margin: 0 auto 10px;
}

.impl_sell_tab li a.active p{
    color: var(--impl-white-color);
    background-color: var(--impl-primary-color);
}

.impl_sell_tab li a h6{
    color: var(--impl-heading-color);
}

.impl_sell_pane{
    display: none;
}

input[type="file"]{
    display: none;
}

.impl_input label {
    padding: 30px 20px;
    position: relative;
    background-color: transparent;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ececec;
    cursor: pointer;
    text-align: center;
}

.impl_input label svg {
    width: 24px;
    fill: #80929D;
}

.impl_input label span {
    color: #80929D;
    display: block;
    margin-top: 10px;
}

.impl_condition_card {
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.impl_condition_heading{
    margin-bottom: 15px;
}

.impl_condition_heading p {
    color: var(--impl-heading-color);
    font-weight: 500;
}

.impl_select_condition {
    display: flex;
    align-items: center;
    gap: 15px 30px;
    flex-wrap: wrap;
}

.impl_select_condition li input[type=radio] {
    display: none;
}

.impl_select_condition li label {
    position: relative;
    padding-left: 20px;
    line-height: normal;
}

.impl_select_condition label::before {
    content: "";
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--impl-primary-color);
}

.impl_select_condition label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: var(--impl-primary-color);
    border-radius: 50%;
    transition: var(--impl-transition);
    transform: scale(0);
}

.impl_select_condition li input:checked+label::after {
    transform: scale(1);
}

.impl_sell_btn {
    margin-top: 20px;
}

/*-------------------------------------------------------------------
 9. Compare Page
-------------------------------------------------------------------*/

/********************************************************
    Compare Section Style
********************************************************/

.impl_compare_table .table>tbody tr td{
    width: 25%;
}

.impl_compare_table .table>tbody tr td:first-child{
    width: 25%;
}

/*-------------------------------------------------------------------
 10. Contact Page
-------------------------------------------------------------------*/

/********************************************************
    Contact Section Style
********************************************************/

.impl_contact_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--impl-white-color);
    box-shadow: 0px 0px 50px 0px #0000000F;
    border-radius: var(--impl-border-radius);
    padding: 20px;
}

.impl_contact_icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--impl-gradient-color);
    border-radius: 5px;
}

.impl_contact_icon img {
    max-height: 24px;
    max-width: 24px;
    object-fit: contain;
}

.impl_contact_text h6 {
    color: var(--impl-heading-color);
}

.impl_contact_text a, .impl_contact_text p {
    color: var(--impl-font-color);
    word-break: break-word;
}

.impl_contact_form {
    background-color: var(--impl-white-color);
    box-shadow: 0px 0px 50px 0px #0000000F;
    border-radius: var(--impl-border-radius);
    padding: 30px;
}

.impl_form_btn{
    margin-top: 25px;
}

.impl_contact_form .response {
    margin-top: 10px;
}

/********************************************************
    Map Section Style
********************************************************/

.impl_map_wrapper {
    overflow: hidden;
}

.impl_map_content {
    width: 100%;
}

.impl_map_content iframe {
    width: 100%;
    height: 500px;
}
.toast {
    background: #ff7010;
}

.toast-success {
   background: green;
}

.toast-error {
    background: red;
}
.add_to_wishlist.wishlisted {
    background: var(--impl-gradient-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
a.compare.button.added span{
    display:none;
}
.cart-loader {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	opacity: 1;
	cursor: wait;
	z-index: 9999;
}

.add_to_cart.added-to-cart {
	 background: var(--impl-gradient-color);
	border-radius: 50%;
	transition: background-color 0.3s ease;
}
.add_to_compare.compared {
    background: var(--impl-gradient-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.compare.button.added {
    background: var(--impl-gradient-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
/* new css start */
.blog-page .single-post .item ul li a, .atc_metadata ul li span a, .sidebar-widgets .item ul li a:hover{
    color: var(--impl-primary-color);
}
.blog-page .single-post .item img{
    border-color: var(--impl-primary-color);
}
.entry-footer span a{
    color: var(--impl-primary-color);
}
.sidebar-widgets .item ul li a:before{
    background-color: var(--impl-primary-color);
}
.comment-form .form-submit input{
    background: var(--impl-gradient-color);
}
.comment-form .form-submit input:hover,button.wp-block-search__button.wp-element-button:hover{
    transform: scale(.95);
    color: var(--impl-white-color);
}
button.wp-block-search__button.wp-element-button{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}
.comment-form .row{
    row-gap: 15px;
}
input#wp-comment-cookies-consent{
    height: 17px;
}
h4.entry-title{
    font-size: 20px !important;
}
a#autocar_newsletters img {
    display: none;
}
 .blog-page .blog-classic-post .item ul li a{
    color: var(--impl-primary-color);
 }
 .blog-page .blog-classic-post .item img{
    border-color: var(--impl-primary-color);
 }
 .primary-button a{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
    text-transform: capitalize;
 }
  .primary-button a:hover{
    transform: scale(.95);
    color: var(--impl-white-color);
}
.ac_shopping_cart_menu{
    border-right: none;
}
a.added_to_cart.wc-forward {
    min-height: 45px;
    border-radius: 5px;
    min-width: 140px;
    width: fit-content;
    color: var(--impl-white-color);
    padding: 5px 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--impl-gradient-color);
    gap: 10px;
    line-height: normal;
    white-space: nowrap;
}
.ac_shopping_cart_menu .ac_minicart_icon{
    padding: 0 0;
}
.ac_shopping_cart_menu .ac_shopping_cart ul > li > ul.ac_mini_cart {
    background: #ffffff;
    border-top: 2px solid var(--impl-primary-color);
}
.ac_mini_cart li small, .ac_mini_cart li .ci-total {
    color: #000000;
    background: rgb(251 251 251);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.ac_mini_cart li .ci-item .ci-item-info h5 a{
    color: var(--impl-heading-color);
}
.ac_mini_cart li .ci-item .item_delete a{
    background-color: var(--impl-primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-btn{
    display: flex;
}
.ac_mini_cart li .cart-btn a{
    background: var(--impl-gradient-color);
}
.ac_mini_cart li  .cart-btn a:nth-child(2) {
    background: #484848;
}
.ac_mini_cart li  .cart-btn a:nth-child(2)::before{
    background: var(--impl-primary-color);
}
body .cv-quick-short h3{
    font-size: 22px;
    margin-bottom: 13px;
}
.cv-login-close.close{
    position: absolute;
    right: -10px;
    top: -10px;
    border-radius: 50px;
    color: #fff;
    background: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.cv-login-close.close span{
    margin-top: -5px;
}
div#producontent {
    padding: 30px 20px;
}   
div#producontent .row{
    align-items: center;
}
.impl_explore_box{
    margin-bottom: 20px;
    margin-top: 15px;
}
.cv_price_pop ins {
    background-color: unset;
    color: #222;
    font-weight: 500;
    font-size: 18px;
}
a.added_to_cart.wc-forward {
  display: inline-block;
  line-height: 35px;
  text-align: center;
  margin-left: 5px
}
a.cv-price-cart.add_to_cart.notify_cart.product_type_simple.add_to_cart_button.ajax_add_to_cart.cv-btn.producontent.impl_btn.added{
      display: inline-block;
  line-height: 35px;
  text-align: center;
}
.coupon label{
    display: none;
}
.woocommerce .ac_cart_form table.shop_table tr td .button, .woocommerce .checkout_coupon button{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}
.woocommerce .cart-collaterals .cart_totals .checkout-button{
    background: var(--impl-gradient-color);
}
.wc-block-components-button {
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
    transition: all .3s ease !important;
}
.wc-block-components-button:hover{
     transform: scale(.95);
    color: var(--impl-white-color);
}
.ac_product_single .ac_product_content .product_meta a{
    color: var(--impl-primary-color);
}
.ac_product_box .ac_product_content span.price ins, .ac_product_single .ac_product_content .price ins, .ac_product_box .ac_product_content span.price span.amount, .ac_product_single .ac_product_content .price span.amount {
    color: var(--impl-primary-color);
}
.woocommerce span.onsale{
    background: var(--impl-primary-color);
}
.woocommerce button.button.alt{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}
.woocommerce .ac_product_single .woocommerce-tabs .tabs.wc-tabs li.active a, .woocommerce .ac_product_single .woocommerce-tabs .tabs.wc-tabs li:hover a {
    background: var(--impl-gradient-color);
}
.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.ac_product_single .woocommerce-tabs .woocommerce-Tabs-panel .comment-form-rating span a[class*="star"], .ac_product_single .woocommerce-tabs .woocommerce-Tabs-panel .commentlist .star-rating span {
    color: var(--impl-primary-color);
}
.woocommerce .ac_product_single .woocommerce-tabs .woocommerce-Tabs-panel #respond input#submit{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}
.ac_product_box .ac_product_content .add_to_cart_button{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
}
a.compare.link {
    background-color: #484848;
    color: var(--impl-white-color);
    padding: 7px 15px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: capitalize;
    display: none;
}
.ac_product_box .ac_product_content {
    padding: 20px 13px;
}
.ac_product_box .ac_product_content .add_to_cart_button {
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
    text-transform: capitalize;
    font-size: 15px;
    border-radius: 5px;
}
.woocommerce .ac_product_content .button:before{
    border-radius: 5px;
}
.ac_product_box:hover {
    border: 1px solid #d7d7d7;
}
.ac_mini_cart li .ci-item .ci-item-info h5 a:hover{
    color: var(--impl-primary-color);
}
.woocommerce .ac_product_single section.related .ac_product_box .ac_product_content .ac_loop_title a:hover{
    color: var(--impl-primary-color);
}
.woocommerce-info::before, .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text a, .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a, .woocommerce-info .showcoupon, .woocommerce-message::before{
    color: var(--impl-primary-color);
}
.woocommerce-info, .woocommerce-message {
    border-top-color: var(--impl-primary-color);
}
.woocommerce.product.compare-button{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
}
 #yith-woocompare .added_to_cart, #yith-woocompare .button {
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
    padding: 7px 15px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: capitalize;
 }
.woocommerce .ac_cart_form table.shop_table tr td.product-name a{
    color: var(--impl-primary-color);
}
.product_info .image-wrap img{
    max-width: 200px;
    height: 135px;
    object-fit: cover;
}
.product_info .image-wrap{
    max-width: 200px;
    height: 135px;
    object-fit: cover;
    margin: auto;
}
table.compare-list tr.stock:not(.label-row) td.in-stock{
    background-color: unset !important;
}
span.availability-label {
    background: #f2fcde;
    padding: 8px 12px;
    border-radius: 50px;
}
span.cart_count{
    color: var(--impl-primary-color);
}
.impl_navbar_btn li a{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #222;
    border-radius: 50px;
    position: relative;
}
.impl_navbar_btn .impl_toggle_btn a{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    border: none;
    align-items: unset;
}
span.ps-bubble.yellow-bubble {
      color: #ffffff;
    position: absolute;
    right: -8px;
    top: -3px;
    width: 20px;
    height: 20px;
    background: #ff5c3a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 12px;
}
span.cart_count {
    color: #ffffff;
    position: absolute;
    right: -7px;
    top: -3px;
    width: 20px;
    height: 20px;
    background: #ff5c3a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 12px;
}
.ac_minicart_icon{
    height: unset !important;
}
.page-heading {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 400px;
}
.ci-item-info h5 a{
    width: 100%;
    height:unset;
    border: none;
}
.logged-in .impl_search_area{
    top: 30px;
}
 .page-heading .heading-content-bg .heading-content h2 {
    text-align: left;
}
.product-name a:visited{
    color: var(--impl-heading-color) !important;
}
.autocar_page .woocommerce-error::before, .autocar_page .woocommerce-info::before, .autocar_page .woocommerce-message::before {
    top: 15px !important;
    left: 15px !important;
    right: 0 !important;
}
.impl_navbar_btn li .cart-btn a{
    border-radius: unset;
}
.impl_navbar_btn li a.impl_btn{
    border-radius: 5px;
}
.page-heading .heading-content-bg .heading-content span {
    text-align: left;
    display: flex;
}
.ac_price_wrapper{
    background-color: var(--impl-primary-color);
}
.recent_car_wrapper:hover h4 a{
    color: var(--impl-primary-color);
}
.recent_car_img .ac_overlay a{
    color: var(--impl-primary-color);
    border-color: var(--impl-primary-color);
}
.recent_car_wrapper{
    margin-bottom: 10px;
}
.recent_car_wrapper:hover{
    border: 1px solid #ebebeb;
}
.recent-car{
    float: unset;
}
.recent-car-content{
    float: unset;
}
.ac_car_action ul li a{
    color: var(--impl-primary-color);
    border-color: var(--impl-primary-color);
}
.car-details ul li p{
    color: var(--impl-primary-color);
}
.car-details .contact-info i{
    background-color: var(--impl-primary-color);
}
.dealar_detial > ul >li > p, .dealar_detial > ul >li > p > span{
    color: var(--impl-heading-color) !important;
}
.contact-content .submit-coment .primary-button .wpcf7-submit, .changetimes, .changetimes:hover, .changetimes:focus{
    background: var(--impl-primary-color);
}
.section-heading i{
    background-color: var(--impl-primary-color);
}
 .car-banner-rent a {
    background-color: var(--impl-primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 36px;
    display: inline-block;
    padding: 0 9px;
    position: absolute;
    right: 0;
    top:15px
}
body .down-content a h4{
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}
.impl_product_slider{
    /* margin-bottom: 80px; */
}
.more-details .info-list ul li i{
    color: var(--impl-primary-color);
}
.more-details .contact-info i{
    background-color: var(--impl-primary-color);
}
.similar_cars_slider{
    margin-bottom: 80px;
}
.widget_search .search-submit{
    background: var(--impl-primary-color);
}
.widget_search .search-submit:hover{
    background: #484848;
}
body.logged-in .ac_compare_notification {
    top: 30px;
}
.ac_notification_btn a{
    background-color: var(--impl-primary-color);
}
.ac_notification_text i{
    color: var(--impl-primary-color);
}
footer{
    float: unset;
    width: unset;
}
.ac_product_filter .ac_shop_view ul li.active a, .ac_product_filter .ac_shop_view ul li:hover a{
    background-color: var(--impl-primary-color);
    border-color: var(--impl-primary-color);
}
#yith-woocompare-preview-bar{
    z-index: 999 !important;
}
.ac_product_box .ac_product_content .ac_loop_title a:hover{
    color: var(--impl-primary-color);
}
.impl_banner_btn button#car-search-submit {
height: 50px !important;
    margin: 0 0  0!important;
}
.impl_explore_text h6 a:visited{
    color: var(--impl-heading-color);
}
.impl_explore_text h6 a:hover{
    color: var(--impl-primary-color);
}
.impl_explore_text h6 a{
    color: var(--impl-heading-color);
}
.ac_product_single .ac_product_content .quantity input {
    height: 33px;
    border: 1px solid #eee;
}
.widget_product_search .woocommerce-product-search input {
    width: 62%;
    height: 38px;
    padding: 0 15px 0 15px;
    position: relative;
    border-radius: 0;
}
.widget_product_search .woocommerce-product-search button{
    background:var(--impl-primary-color);
}
.sidebar-widgets .search-form .search-submit{
    color: var(--impl-white-color) !important;
    background: var(--impl-gradient-color) !important;
}
a.yith-wcwl-add-to-wishlist-button:visited{
    color: var(--impl-heading-color);
}
.woocommerce-Price-amount.amount{
    color: var(--impl-primary-color) !important;
}
.woocommerce-MyAccount-navigation ul li a {
    padding: 10px 15px;
    background: #ffffff;
    display: block;
    color: #000000;
    border: 1px solid #eee;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link:hover a{
    background:var(--impl-gradient-color) ;
    color: var(--impl-white-color);
}
.woocommerce-MyAccount-content p a, .woocommerce-form-login p a{
    color: var(--impl-primary-color);
}
.woocommerce-MyAccount-content table td a.woocommerce-button, .woocommerce-MyAccount-content .woocommerce-Message .woocommerce-Button{
    background: var(--impl-gradient-color);
}
.woocommerce button.button {
    background: var(--impl-gradient-color);
    color: #fff;
}
a.added_to_cart.wc-forward {
    display: inline-block;
    line-height: 35px;
    text-align: center;
    margin-left: 5px;
    min-height: 35px !important;
    padding: 5px 10px !important;
    min-width: 100px;
    line-height: 25px;
    margin-bottom: -12px;
}
.woocommerce .woocommerce-ordering .orderby {
    height: 40px;
    border-radius: 0;
    padding: 0 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}
.page-heading .heading-content-bg .go-back ul li a:hover
{
    color: var(--impl-primary-color);
}
.page-heading .heading-content-bg .go-back ul li{
    font-size: 14px;
}
.ac_product_single .ac_product_slider_img{
    border: none;
}
.owl-carousel .owl-wrapper-outer{
    margin-bottom: 0;
}
.ac_product_box a.compare.button{
    display: none;
}
.ac_product_box .ac_product_content .add_to_cart_button{
    margin-right: 10px;
}
.pagination-content ul li.active{
    background-color: var(--impl-primary-color);
}
.autocar_page{
    margin-bottom: 80px;
}
.pagination-content ul li a:hover{
    background-color: var(--impl-primary-color);
}
.ac_car_compare{
    float: unset;
}
.ac_compare_section{
    float: unset;
}
.ac_products.row{
    padding-bottom: 60px;
}
.impl_form_btn .submitForm{
    background: var(--impl-gradient-color);
    color: var(--impl-white-color);
    border: none;
    box-shadow: none;
}
.impl_form_btn .submitForm:hover{
    background-color: #484848;
    box-shadow: none;
}
.ac_product_box .ac_product_content span.price, .ac_product_single .ac_product_content .price {
    margin-bottom: 0;
}
#producontent a.added_to_cart.wc-forward {
    display: inline-block;
    line-height: 35px;
    text-align: center;
    margin-left: 5px;
    min-height: 45px !important;
    padding: 5px 10px !important;
    min-width: 100px;
    line-height: 35px;
    margin-bottom: 0;
}
.atc_comments{
    padding-bottom: 60px;
}
.pagination-content ul li {
    background-color: #393939;
}
.blog-page {
    padding-bottom: 80px;
}
.compare_heading h1{
    background-color: var(--impl-primary-color);
}
.ac_addition_content ul li i{
    color: var(--impl-primary-color);
}
.ac_car_property ul li:hover a{
    background-color: var(--impl-primary-color);
}
.ac_compare_list ul li{
    color: #484848;
}
.car-item .down-content span{
    color: var(--impl-primary-color);
}
.ac_compare_list ul li a{
    color: var(--impl-heading-color);
}
.ac_compare_featurelist h3{
    color: var(--impl-heading-color);
    font-size: 20px;
}
.compare_link, .compare_link:hover{
    font-size: 18px;
}
.car-item .down-content .line-dec {
    margin-top: 15px;
    width: 40px;
    height: 2px;
    background-color: #eeeeee;
    margin-left: auto;
    margin-right: auto;
    display: none;
}
.ac_compare_wrapper .down-content h4 {
    margin-top: 0;
}
.ac_car_list_wrapper:hover {
    border: 1px solid var(--impl-primary-color);
}
.page-heading .heading-content-bg{
    z-index: 1;
}
.search-section .search-content .search-heading i, .car-search-submit, .primary-button a, .white-button a:before, .atc_searchform .search-submit, .widget_search .search-submit {
    color: #fff !important;
    background-color: var(--impl-primary-color) !important;
}
.auto-menu li ul.sub-menu > li:hover > a{
    color: var(--impl-primary-color);
}
.blog-page .blog-grid-post .item .down-content ul li a{
    color: var(--impl-primary-color);
}
.blog-page .blog-grid-post .item img{
    border-color: var(--impl-primary-color);
}
.search-section .search-content .search-heading i, .car-search-submit, .primary-button a, .white-button a:before, .atc_searchform .search-submit, .widget_search .search-submit{
    border-radius: 5px;
}
.primary-button a:before, .ac_notification_btn a:before{
    border-radius: 5px;
    background:#484848;
}
.page-heading{
    margin-top: -100px;
    padding-top: 100px;
}
.impl_header_btn .impl_btn{
    border: none;
}
.page-heading .heading-content-bg{
    background-color: unset;
    margin-bottom: unset;
    box-shadow: unset;
padding: 0;
}
.page-heading > .container{
    max-width: 1475px;
}
.page-heading .heading-content-bg .go-back ul li a{
    display: flex;
    align-items: center;
    gap: 5px;
}
.page-heading .heading-content-bg .go-back ul{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: end;
}
.page-heading .heading-content-bg .go-back ul li{
    color: #222;
    text-transform: capitalize;
    font-size: 16px;
}
.page-heading .heading-content-bg .go-back ul li a{
        color: #222;
}
.ac_shopping_cart_menu .ac_shopping_cart ul > li > ul.ac_mini_cart .cart-total{
    color: var(--impl-heading-color);
}
.page-heading .heading-content-bg .heading-content span {
    margin-top: 5px;
    color: var(--impl-heading-color);
}
.page-heading .heading-content-bg .heading-content h2 {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}
span.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-textarea{
    width: 100%;
    margin-bottom: 10px;
    height: 171px;
}
.impl_form_btn .submitForm{
    font-size: 16px !important;
}
.impl_form_btn .submitForm:hover{
  background: var(--impl-gradient-color);
}
.auto-menu li ul{
 border-top: 2px solid var(--impl-primary-color);
}
ul.auto-menu li a{
    color: var(--impl-heading-color);
}
.ac_shopping_cart_menu .ac_shopping_cart ul > li:hover > ul.ac_mini_cart{
	visibility: visible;
    opacity: 1;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

/* new css end */
/********************************************************
    Responsive CSS start
********************************************************/

/*============================ Min - Width Query ============================*/

@media (min-width: 1400px) {
    .impl_container {
        max-width: 1475px;
    }
    .impl_bg_container {
        max-width: 1870px;
    }
    .container {
        max-width: 1200px;
    }
}

/*============================ Max - Width Query ============================*/

@media (max-width: 1875px) {
    h3 {
        font-size: 33px;
    }
    .impl_navbar .impl_logo {
        min-width: 240px;
    }
    .impl_banner_text h1 {
        font-size: 55px;
    }
    .impl_banner_wrapper {
        padding: 70px 0 140px;
    }
    .impl_banner_section::before {
        background-size: contain;
    }
    .impl_ad_img {
        max-width: 320px;
    }
    .impl_newsletter_form {
        max-width: 600px;
    }
    .impl_footer_img {
        max-width: 230px;
    }
}

@media (max-width: 1700px) {
    h3 {
        font-size: 32px;
    }
    .impl_navbar .impl_logo {
        min-width: 230px;
    }
    .impl_nav_item {
        gap: 40px;
    }
    .impl_banner_text h1 {
        font-size: 50px;
    }
    .impl_banner_wrapper {
        padding: 70px 0 120px;
    }
    .impl_ad_img {
        max-width: 310px;
    }
    .impl_newsletter_form {
        max-width: 570px;
    }
    .impl_newsletter_img {
        max-width: 450px;
    }
    .impl_footer_wrapper {
        overflow: hidden;
    }
    .impl_footer_img {
        max-width: 210px;
        bottom: -10px;
        right: -50px;
    }
}

@media (max-width: 1499.98px) {
    h3 {
        font-size: 31px;
    }
    h4 {
        font-size: 27px;
    }
    .impl_navbar .impl_logo {
        min-width: 220px;
    }
    .impl_nav_item,
    .impl_navbar_nav {
        gap: 40px;
    }
    .impl_banner_text h1 {
        font-size: 45px;
    }
    .impl_banner_wrapper {
        padding: 70px 0 100px;
    }
    .impl_banner_slider {
        padding-left: unset;
    }
    .impl_ad_img {
        max-width: 300px;
    }
    .impl_newsletter_img {
        max-width: 390px;
    }
    .impl_footer_img {
        max-width: 190px;
        right: -80px;
    }
}

@media (max-width: 1399.98px) {
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 26px;
    }
    .impl_navbar .impl_logo {
        min-width: 210px;
    }
    .impl_nav_item,
    .impl_navbar_nav {
        gap: 25px;
    }
    .impl_navbar_btn {
        gap: 20px;
    }
    .impl_banner_text h1 {
        font-size: 40px;
        margin-top: 10px;
    }
    .impl_banner_slider::before,
    .impl_banner_slider::after {
        left: 15px;
    }
    .impl_banner_wrapper {
        padding: 70px 0 80px;
    }
    .impl_type_slider {
        padding: 0 60px;
    }
    .impl_type_slider .swiper-button-next {
        right: 0;
    }
    .impl_type_slider .swiper-button-prev {
        left: 0;
    }
    .impl_ad_img {
        max-width: 280px;
    }
    .impl_video_content {
        padding: 80px 15px;
    }
    .impl_news_img {
        min-width: 330px;
    }
    .impl_newsletter_img {
        max-width: 310px;
    }
    .impl_footer_img {
        max-width: 100px;
        right: 0;
    }
    .impl_footer_social {
        gap: 40px;
    }
}
@media (max-width: 1300px) {
    @media (max-width: 1200px) {
        ul.auto-menu {
            position: fixed;
            left: 0;
            width: 270px;
            left: -300px;
            background-color: var(--white);
            height: 100vh;
            z-index: 999999999999;
            top: 0;
            box-shadow: 0.781px 1.841px 10px 0px rgb(31 31 31 / 10%);
            transition: all 0.5s;
            overflow-x: hidden;
        }
    }
}
@media (max-width: 1300px) {
    @media (max-width: 1200px) {
        .sub-menu {
            display: none;
        }
      .sub-menu.open {
            display: block;
            position: unset;
            box-shadow: none;
            margin-top: 10px;
       }
     .has-submenu {
        position: relative;
        padding-right: 20px; /* jagah chhodne ke liye */
    }

.has-submenu::after {
  content: "▼"; /* Unicode arrow */
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #333; /* arrow color */
  pointer-events: none; /* click block na kare */
}
ul.auto-menu li a.has-submenu:after {
    top: 10px;
    right: 30px;
}
    }
}
@media (max-width: 1300px) {
    @media (max-width: 1200px) {
        ul.auto-menu li:nth-child(7) {
         opacity: 1;
        }
    }
}
@media (max-width: 1199.98px) {
    .impl_section_wrapper {
        padding: 70px 0;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 25px;
    }
    h5 {
        font-size: 21px;
    }
    .impl_preheader_info {
        gap: 20px 40px;
    }
    .impl_navbar .impl_logo {
        min-width: 200px;
    }
    .impl_res_logo,
    .impl_toggle_btn {
        display: block;
    }
    .impl_navbar_nav {
        position: fixed;
        left: -280px;
        top: 0;
        height: 100vh;
        background-color: #fef9f5;
        width: 280px;
        padding: 30px 20px;
        margin: 0;
        z-index: 111;
        transition: all 0.5s;
        flex-direction: column;
        gap: 20px;
    }
    .menu-open .impl_navbar_nav {
        left: 0;
    }
    .impl_res_logo {
        margin-bottom: 20px;
    }
    .impl_navbar_nav li a {
        padding: 0 0 5px;
        width: 100%;
        display: inline-flex;
        border-bottom: 1px solid #ff5a3933;
        align-items: center;
        justify-content: space-between;
    }
    .impl_sub_menu {
        position: relative;
        min-width: 100%;
        background-color: transparent;
        top: unset;
        left: unset;
        border-bottom: none;
        transform: none;
        height: 0;
    }
    .impl_menu_dd > a img {
    display: block;
}
    .impl_sub_menu.open {
        height: 100%;
    }
    .impl_sub_menu li a {
        padding: 20px 0 5px 15px;
    }
    .impl_banner_wrapper {
        padding: 70px 0 70px;
    }
    .impl_banner_text h6,
    .impl_banner_tab li a,
    .impl_type_text p {
        font-size: 17px;
    }
    .impl_banner_text h1 {
        font-size: 35px;
    }
    .impl_banner_slider::before,
    .impl_banner_slider::after,
    .impl_banner_slider .swiper-button-prev,
    .impl_banner_slider .swiper-button-next {
        display: none;
    }
    .impl_ad_img {
        max-width: 240px;
    }
    .impl_choose_box {
        padding: 30px 20px 25px;
    }
    .impl_video_content {
        padding: 70px 15px;
    }
    .impl_news_img {
        min-width: 305px;
    }
    .impl_newsletter_img {
        display: none;
    }
    .impl_footer_img {
        opacity: 0.1;
        max-width: fit-content;
    }
    .impl_footer_wrapper .container>.row {
        align-items: flex-start;
    }
    .impl_footer_social {
        gap: 35px;
    }
    .impl_history_tab {
        margin: 25px 0 20px;
    }
    .impl_history_pane h6,
    .impl_history_pane p {
        margin-bottom: 15px;
    }
    .impl_banner_shape{
        display: none;
    }
    ul.auto-menu li a{
        border: none;
    }
}

@media (max-width: 991.98px) {
    .impl_section_wrapper {
        padding: 60px 0;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 20px;
    }
    .impl_preheader_info {
        gap: 15px 30px;
    }
    .impl_navbar .impl_logo {
        min-width: unset;
        min-height: auto;
        padding: 10px;
    }
    .impl_banner_dropdown span {
        padding: 0 20px;
    }
    .impl_banner_text h6,
    .impl_banner_tab li a,
    .impl_type_text p {
        font-size: 16px;
    }
    .impl_banner_text h1 {
        font-size: 32px;
    }
    .impl_banner_wrapper {
        padding: 60px 0;
    }
    .impl_ad_img {
        opacity: 0.1;
    }
    .impl_offer_wrapper {
        background: #303030;
        border-left: 8px solid var(--impl-primary-color);
        border-right: 8px solid var(--impl-primary-color);
        border-radius: 20px;
    }
    .impl_choose_text {
        margin-bottom: 30px;
    }
    .impl_testi_client {
        align-items: flex-start;
        flex-direction: column;
    }
    .impl_video_content {
        background-position: center;
        border-radius: 10px;
        padding: 60px 15px;
    }
    .impl_footer_social {
        gap: 30px;
    }
    .impl_footer_social li a svg {
        max-height: 24px;
    }
    .impl_service_tab li {
        width: calc(100% / 3);
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 19px;
    }
    h6,
    .impl_footer_heading h6,
    .table-responsive .table>thead tr th {
        font-size: 17px;
    }
    .impl_section_wrapper {
        padding: 50px 0;
    }
    .impl_preheader_content,
    .impl_preheader_info {
        justify-content: center;
    }
    .impl_header_btn {
        display: none;
    }
    .impl_banner_wrapper {
        padding: 50px 0;
    }
    .impl_banner_tab {
        gap: 40px;
    }
    .impl_banner_dropdown span,
    .impl_banner_dropdown span:first-child {
        padding: 0 5px;
    }
    .impl_banner_text h6,
    .impl_banner_tab li a,
    .impl_type_text p {
        font-size: 15px;
    }
    .impl_banner_text h1 {
        font-size: 30px;
    }
    .impl_banner_slider {
        margin-top: 20px;
    }
    .impl_ad_img {
        max-width: 280px;
        opacity: 1;
    }
    .impl_testi_client {
        align-items: center;
        flex-direction: row;
    }
    .impl_video_content {
        padding: 50px 15px;
    }
    .impl_video_content a {
        margin: 20px auto 0;
    }
    .impl_news_card {
        flex-wrap: wrap;
    }
    .impl_news_full {
        padding: 0 20px 25px;
    }
    .impl_footer_text {
        max-width: 100%;
    }
    .impl_footer_social {
        gap: 30px;
    }
    .impl_footer_social li a svg {
        max-height: 22px;
    }
    .impl_service_tab li {
        width: calc(100% / 2);
    }
    .impl_service_tab li a {
        padding: 20px;
    }
    .impl_map_content iframe {
        height: 400px;
    }
    .impl_sell_tab {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    body,
    .impl_tags {
        font-size: 14px !important;
    }
    h3 {
        font-size: 22px !important;
    }
    h4 {
        font-size: 20px !important;
    }
    h5 {
        font-size: 18px !important;
    }
    h6,
    .impl_footer_heading h6,
    .table-responsive .table>thead tr th {
        font-size: 16px;
    }
    .impl_section_wrapper {
        padding: 40px 0;
    }
    .impl_section_heading {
        margin-bottom: 0;
    }
    .impl_btn {
        min-width: fit-content;
        min-height: 40px;
    }
    .impl_preheader_content {
        justify-content: space-between;
    }
    .impl_preheader_info,
    .impl_banner_dropdown span::after {
        display: none;
    }
    .impl_user_login {
        display: block;
    }
    .impl_nav_item {
        gap: 15px;
    }
    .impl_navbar_btn {
        gap: 10px;
    }
    .impl_banner_wrapper {
        padding: 40px 0;
    }
    .impl_banner_text h6,
    .impl_banner_tab li a,
    .impl_type_text p {
        font-size: 14px ;
    }
    .impl_banner_tab {
        gap: 30px;
    }
    .impl_banner_form {
        padding: 8px;
    }
    .impl_banner_form,
    .impl_banner_dropdown {
        flex-wrap: wrap;
    }
    .impl_banner_btn,
    .impl_banner_btn .impl_btn {
        width: 100%;
    }
    .impl_banner_text h1 {
        font-size: 28px;
    }
    .impl_banner_slider {
        margin-top: 10px;
    }
    .impl_type_wrapper {
        padding-bottom: 100px;
    }
    .impl_type_slider {
        padding: unset;
    }
    .impl_type_slider .swiper-button-prev,
    .impl_type_slider .swiper-button-next {
        top: unset;
        bottom: -60px;
    }
    .impl_type_slider .swiper-button-prev {
        left: calc(50% - 45px);
    }
    .impl_type_slider .swiper-button-next {
        right: calc(50% - 45px);
    }
    .impl_ad_img {
        max-width: 100%;
        opacity: 0.1;
    }
    .impl_explore_img::before {
        min-width: 120px;
        bottom: -7px;
    }
    .impl_explore_links {
        gap: 5px;
    }
    .impl_explore_links li a {
        width: 30px;
        height: 30px;
    }
    .impl_testimonial_box {
        padding: 20px 0;
    }
    .impl_testimonial_head {
        padding-bottom: 15px;
    }
    .impl_testi_client {
        align-items: flex-start;
        flex-direction: column;
    }
    .impl_testi_client,
    .impl_testimonial_text {
        padding: 0 20px;
    }
    .impl_testimonial_text {
        margin-top: 15px;
    }
    .impl_testi_quote {
        max-width: 40px;
    }
    .impl_testi_shape {
        max-width: 125px;
    }
    .impl_newsletter_form input {
        min-height: 40px;
        padding: 10px 105px 10px 15px;
    }
    .impl_footer_social {
        gap: 20px;
    }
    .impl_footer_social li a svg {
        max-height: 20px;
    }
    .impl_booking_box::before {
        display: none;
    }
    .impl_service_tab li a {
        padding: 20px 10px;
    }
    .impl_service_tab li a svg {
        width: 45px;
    }
    .impl_service_img img {
        min-height: 100%;
    }
    .impl_filter_dd {
        min-width: unset;
    }
    .impl_input_flex {
        flex-wrap: wrap;
    }
    .impl_contact_box,
    .impl_contact_form {
        padding: 20px 15px;
    }
    .impl_map_content iframe {
        height: 300px;
    }
}