
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 77px;
    color: var(--primary-color);
    font-size: 14px !important;
}

a {
    color: #206bfb;
    text-decoration: none !important;
}

a:hover {
    /* color: #206bfb;*/
    text-decoration: none;
}

.text-grey {
    color: #bbb;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

p {
    line-height: 24px;
}

.p-0 {
    padding: 0px;
}

.p-6 {
    padding: 60px;
}

.p-2 {
    padding: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.pt-6 {
    padding-top: 120px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-9 {
    padding-bottom: 9rem !important;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mt-2 {
    margin-top: 20px;
}

.mb-2 {
    margin-bottom: 20px;
}
.width-8 {
    width: 8% !important;
}
.ml-2 {
    margin-left:20px;
}
.mr-2 {
    margin-right:20px;
}
.ml-1 {
    margin-left:10px;
}
.mr-1 {
    margin-right:10px;
}
/*======General=========*/

/* ----------------
    font-face font-face
    --------------------
*/

@font-face {
    font-family: 'Segoe UI Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Regular'), url('Segoe UI.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Italic'), url('Segoe UI Italic.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Bold'), url('Segoe UI Bold.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Bold Italic'), url('Segoe UI Bold Italic.woff') format('woff');
}


/* ----------------
    End font-face font-face
    --------------------
*/


/*=========color-profile command font-face library============*/
/*color pallete*/
:root {
    --primary-color: #454545;
    --primary-hover: #1d1d1b;
    --primary-green-color: #07C597;
    --primary-green-hover-color: #04b68b;
    --text-color: #4b4b4a;
    --text-inner-color: #757575;
    --light-blue: #F6F8FF;
    --red: red;
    /*--dark-grey: #454545;
    --dark-grey-hover: #1d1d1b;
    --primary-green: #07c597;
    --primary-green-hover: #04b68b;*/
}

.bg-lighter-blue {
    background: var(--light-blue);
}
.bg-greytwo {
    background: var(--bs-gray-400);
}

/*color pallete*/

/*font library*/
.font-12 {
    font-size: 12px;
}
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 18px;
}
.font-20 {
    font-size: 20px;
}

.font-24 {
    font-size: 24px;
}

.font-28 {
    font-size: 28px;
}

.font-32 {
    font-size: 32px;
}

.font-36 {
    font-size: 36px;
}

.font-40 {
    font-size: 40px;
}

.heading-font-28 {
    font-size: 28px;
}

.center-heading-font-22 {
    font-size: 22px;
}

.sub-heading-font-16 {
    font-size: 16px;
}
.border-radius-4 {
    border-radius: 4px;
}
.width-150 {
    width: 150px;
}

/*font library*/

/*Buttons library*/
.btn {
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

    .btn.btn-default {
        background: var(--primary-color);
        color: #fff;
    }

.btn-select {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
}

.btn-select.selected {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.btn.btn-default:hover {
    background: var(--primary-hover);
    color: #fff;
}

.btn.btn-border {
    border-color: var(--primary-color);
    background: white;
    color: var(--primary-color);
}

.btn.btn-border:hover {
    background: var(--primary-color);
    color: white;
}

.btn.btn-green {
    background: var(--primary-green-color);
    color: #fff !important;
}

.btn.btn-green:hover {
    background: var(--primary-green-hover-color);
    color: #fff !important;
}

.go-to-booking {
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    font-size: 15px;
}

.go-to-corner {
    display: inline-flex;
    align-items: center;
    padding: 15px 20px;
    justify-content: flex-end;
    position: relative;
    right: -32px;
    bottom: -16px;
    border-radius: 0px;
}

.txt-btn {
    border: 0px;
    background: transparent;
    padding: 2px;
    transition: all 0.5s ease;
    color: var(--text-color);
}

.txt-btn:hover {
    font-weight: 500;
}

.view-detail {
    border-radius: 50px;
    padding: 16px 16px;
    bottom: -45px;
    background: white;
    border: 1px solid #c5c4c4;
    position: absolute;
    right: 10px;
    color: #999;
    display: inline-flex;
    transition: all 1s ease;
}

.view-detail:before {
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    background: var(--primary-green-color);
    content: "";
    border-radius: 50%;
    z-index: 1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.view-detail .bx {
    position: relative;
    z-index: 2;
}

.view-detail:hover:before {
    transform: scale(1.0);
}

.view-detail:hover {
    /*    background: var(--primary-color);*/
    color: #fff !important;
    /* transform: rotate(-90deg);*/
}

.feedback-btn {
    position: fixed;
    top: 50px;
    right: -30px;
    display: flex;
    align-items: center;
    height: 100vh;
}

button.btn.feedback {
    background: #3E6AE1;
    color: #fff;
    border-radius: 0px;
    transform: rotate( -90deg );
}
ul.border-list li {
    border: 1px solid #444;
    border-radius: 4px;
    padding: 7px 15px;
}
label {
    font-weight: 500;
    font-size: 14px;
}

@media only screen and (max-width:767px) {
    .feedback-btn {
        display: none;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #171A20;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    text-decoration: none;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(8 39 72);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.header-banner {
    background: radial-gradient(124.01% 391.93% at 24.45% 26.34%, rgba(5, 5, 30, 1) 0%, rgba(5, 5, 30, 1) 100%), url(https://stimagesprodeastus.blob.core.windows.net/images/dot-bg.svg) repeat 100% 100%;
    background-blend-mode: hard-light;
    background-position: top;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    border-bottom: 1px solid #ddd;
}

#header.header-scrolled {
    padding: 0px 0;
}

#header .logo {
    font-size: 32px;
    margin: 0 25px 0 0;
    padding: 10px 25px 10px 0px;
    line-height: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#header .logo a {
    color: #5f687b;
}

#header .logo img {
    max-height: 40px;
}

#header .btn {
    font-size: 14px;
}

.bookcall {
    display: inline-flex;
}
.main-menu {
    margin-left: auto;
    margin-right: 5px;
}
.location {
    font-weight:500;
}
.location > span {
    font-size: 16px;
    left: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.phone {
    background: var(--primary-green-color);
    padding: 0 10px;
    border-radius: 50px;
    /*height: 39px;*/
    line-height: normal;
    display: flex;
    align-items: center;
    transition: 0.5s ease-in-out all;
}
span.appointment-call-nav {
    margin-right: -2px;
    font-size: 30px;
    transform: rotate( 2deg );
    color: #fff;
}

.appointment-phone-nav {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.appointment-phone-nav small {
    display: inline-flex;
    width: 100%;
}

.appointment-phone-nav span {
    font-weight: 600;
    font-size: 22px;
    color: var(--primary-color);
}
.link-hover:hover .phone{
    background: var(--primary-green-hover-color);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar-toggle {
    background: transparent;
    border: 0;
    display: block;
}
.navbar-toggler > span {
    background: #222;
    border-radius: 10px;
    height: 2.25px;
    margin: 3.3px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    display: inherit;
}
.navbar-toggler span:nth-of-type(1) {
    width: 16px;
    margin-left: 6px;
}
.navbar-toggler span:nth-of-type(2) {
    width: 25px;
}
.navbar-toggler span:nth-of-type(3) {
    width: 16px;
    margin-left: 3px;
}
.navbar-toggler[aria-expanded="true"] span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotateZ(48deg) translate(0px,8px);
    width: 20px;
    background: red;
}
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    transform-origin: top;
    transform: rotateZ(-50deg);
    background: red;
    width: 20px;
}
.navbar-toggler[aria-expanded="true"] span:nth-of-type(3) {
    transform-origin: bottom;
    width: 0px;
    transform: translate(30px,-11px) rotateZ(45deg);
    opacity: 0;
}


.navbar-nav {
    padding: 8px 0;
}
.navbar-nav > li > a {
    padding: 0px 20px !important;
    font-weight: 500;
    color: var(--primary-color) !important;
    transition: 0.3s;
    font-size: 15px;
    text-decoration: none;
}
.navbar li a:focus,
.navbar li a:hover,
.navbar li a.active {
    color: var(--primary-green-color) !important;
    text-decoration: none;
    cursor: pointer;
    transform: unset !important;
}
.navbar ul li a i {
    font-size: 22px;
    line-height: 0;
    margin-left: 5px;
}
.navbar .dropdown ul a {
    padding: 10px 20px !important;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--text-color);
    margin: 0px;
    border-bottom: 0px;
    transition: 0.3s;
}


.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul .focus:hover,
.navbar .dropdown ul li:hover > a {
    color: #000000 !important;
    background: #ececec !important;
}
.navbar li.user_logedin a:focus {
    color: white !important;
}
.dropdown-item.active {
    background: #ececec !important;
}



@media only screen and (min-width:768px) {
    .navbar-nav {
        align-items: center;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar li {
        position: relative;
    }

    .navbar li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 15px !important;
        font-weight: 500;
        color: var(--primary-color) !important;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 15px;
        text-decoration: none;
    }
    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 143%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    } 
}

@media (max-width:1200px) {
    .navbar li a {
        font-size: 14px;
        padding: 9px 8px !important;
    }
    .appointment-phone-nav {
        font-size: 15px;
    }
}
@media (max-width:992px) {
    .navbar li a {
        padding: 9px 5px !important;
        font-size: 13px;
    }

    .location > span {
        font-size: 13px;
    }
    #header .btn {
        font-size: 12px;
        padding: 4px 2px;
    }
}
@media only screen and (max-width: 767px) {
    #header .btn {
        font-size: 15px;
        padding: 8px 8px;
    }
    .navbar-collapse {
        position: absolute;
        left: 0;
        width: 100%;
        margin-top: 5.0%;
        background: white;
    }

    .navbar-nav {
        height: 100vh;
    }

    .navbar-nav > li > a {
        padding: 12px 20px !important;
    }
    .navbar li a {
        padding: 9px 25px !important;
        font-size: 15px;
        display: inline-block;
    }
    nav.navbar .navbar-toggler {
        display: block !important;
        margin-left: auto;
        width: 40px;
    }

    nav.navbar .collapse {
        display: none !important;
    }

    nav.navbar .collapse.show {
        display: flex !important;
    }

    .navbar-nav .dropdown-menu {
      
        margin: 0 20px 20px;
        border-width: 1px 0 0 0;
        border-radius: 0px;
    }

    .navbar-nav form {
        border-top: 1px solid #ddd;
        padding-top: 25px;
        margin-top: 12px;
        padding-bottom: 15px;
    }

    .location > span {
        font-size: 15px;
    }
    .user_logedin {
        border-top: 1px solid #ddd;
        padding-top: 30px;
        margin-top: 11px;
    }
    .user_logedin > .nav-link {
        margin-left: 20px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .navbar-collapse {
        margin-top: 21px;
    }

    #header > .container {
        padding: 0;
    }
}

.user_logedin > .nav-link {
    background: var(--primary-green-color);
    padding: 9px 13px !important;
    border-radius: 4px;
    color: white !important;
}
.user_logedin > .nav-link:hover {
     
    color: white !important;
}

.navbar ul li.user_logedin a i {
    font-size: 17px;
    margin-right: 6px;
    margin-left:0px; 
}
 
.signinbtn {
    border: 1px solid var(--primary-color);
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 8px 12px !important;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}

.signinbtn:hover {
    background: var(--primary-hover) !important;
    border: 1px solid var(--primary-hover) !important;
    color: #fff !important;
    transition: all 0.5s ease-in-out;
}


.navbar li.cart-icon a {
    position: relative;
    padding-left: 0px !important;
    padding-right: 34px !important;
}

.cart-icon a span {
    position: absolute;
    top: 3px;
    font-size: 11px;
    background: var(--primary-color);
    padding: 0px !important;
    border-radius: 10px;
    width: 17px;
    height: 17px;
    text-align: center;
    right: 27px;
    color: #fff;
}
.navbar-toggler {
   padding:0.19rem 0.5rem;
   border: 0px solid var(--primary-color) !important;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0 !important;
    box-shadow: none;
   
}

.location a {
    color: var(--primary-color);
    padding: 0px 0px 0px 25px;
}


/*Location popup*/
.custom-popup {
    max-width: 750px;
    width: 100%;
}

.custom-popup .k-header {
    background: #fff;
    border-bottom: 0px;
}

.custom-popup .k-header .k-dialog-title {
    text-align: center;
    display: block;
    color: var(--primary-color);
}

.custom-popup .k-window-actions {
    background: var(--primary-color);
}

.custom-popup .k-window-actions button {
    color: #fff;
}

.custom-popup .k-dialog-content {
    color: #fff;
}

.custom-popup hr {
    background-color: #e4e4e4;
    opacity: 1;
    width: 60%;
    margin: 20px auto 30px;
}

.custom-popup .input-group .input-group-text {
    background-color: var(--primary-green-color);
    font-size: 25px;
    color: #fff;
    padding: 3px 5px;
    border: 0px;
    border-radius: 0;
}

.success {
    color: var(--primary-green-color);
}

.k-scrollview-elements {
    color: white;
    position: absolute;
    width: 100%;
    top: 17px;
}

.k-scrollview-view {
    padding: 0px 30px;
}

a.k-scrollview-prev, a.k-scrollview-next {
    background: #00000078;
    opacity: 1;
    border-radius: 40px;
}

.k-scrollview-elements a span {
    font-size: 26px !important;
}

a.k-scrollview-prev {
    left: -13px;
    padding: 5px 1px 5px 7px;
}

a.k-scrollview-next {
    right: -13px;
    padding: 5px 7px 5px 1px;
}


/*Location popup*/
@media (max-width: 1366px) {
    /*.navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }*/

    #header .logo {
        margin: 0;
       /* padding: 18px 10px 18px 0px;*/
    }

    .appointment-phone-nav span {
        font-weight: 600;
        font-size: 17px;
        color: #393C41;
    }

   /* .navbar a {
        padding: 7px 5px !important;
    }*/

    .car-service-list {
        padding: 20px 4px !important;
        margin-right: 4px !important;
    }

    .car-service-list span.service-name {
        font-size: 13px !important;
    }
}


@media (max-width: 992px) {

    /* .navbar .dropdown ul li {
        min-width:100%;
    }
    .navbar ul {
        background: #fff;
    }

    .navbar ul li a {
        justify-content: flex-start;
        padding: 15px 15px 15px 15px !important;
    }*/
    #header {
        padding: 0px 0;
    }

    li.signinbtn {
        display: inline-flex;
    }

    .navbar ul li.signinbtn a {
        padding: 10px 20px !important;
    }
   
}

@media (max-width: 767px) {


   /* nav.navbar .navbar-toggler {
        display: block !important;
        margin-left: auto;
    }
    nav.navbar .collapse {
       
        display: none !important;
    }

    nav.navbar .collapse.show {
        display: flex !important;
    }
    .navbar-collapse {
        position: absolute;
        left: 0;
        width: 100%;
        margin-top: 13px;
        height: max-content !important;
        box-shadow: 0 3px 7px 0px #ccc;
    }
    #header .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .navbar .dropdown ul a {
        max-height: 148px;
        overflow: auto;
    }*/
    body {
        padding-top: 63px;
    }

    #header {
        padding: 0px 0;
    }

    .cart-icon a .dx-menu-item-text-container {
        left: 30px;
    }

    .main-menu {
        order: 3;
        margin-right: 0px;
        margin-left: 10px;
    }

    .location {
        order: 2;
        margin-left: auto;
    }

    .bookcall {
        order: 1;
    }
  
}

@media (max-width: 575px) {

    #header {
        padding: 0px 0;
    }
    
    #header .logo {
        padding: 16px 10px 16px 0;
        line-height: 0;
    }

    #header .logo img {
        max-height: 30px;
    }

    span.appointment-call-nav {
        font-size: 21px;
        width: 30px;
        height: 30px;
    }

   /* .navbar ul {
        padding: 10px;
    }

    .navbar ul li a {
        justify-content: flex-start;
        padding: 15px 15px 15px 15px !important;
        border-top: 0px;
    }

    .navbar li a:hover, 
    .navbar li a.active, 
    .navbar li:hover a {
        border-top: 0px;
       
    }
    .navbar-collapse {
        margin-top: 8px;
    }*/
    .navbar li.cart-icon a {
        position: relative;
        padding-left: 6px !important;
        margin-bottom: 10px;
    }

    .signinbtn {
        margin-top: 20px;
    }
    
}
/*==========================
    End Navigation
 ===========================
*/

section.outer-section {
    padding: 40px 0;
}


/*====================
  Banner
    ====================
*/

#hero {
    background: #F8F8F8;
}

h5 {
}

#hero h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

#hero h1 span {
    color: var(--primary-green-color);
}

.box-shadow {
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08);
}

.banner-form {
    padding: 50px 20px;
}

.banner-form .form-control .k-icon-button {
    background: transparent !important;
    border: 0px;
}

.banner-form .btn.btn-default {
    font-size: 16px;
}

.passwrd-group {
    position: absolute;
    right: 10px;
    bottom: 4px;
    z-index: 999;
}

a.book-btn {
    background: var(--primary-color);
    padding: 10px 10px;
    color: #fff !important;
    text-decoration: none;
    /* text-transform: capitalize;*/
    font-weight: 600;
    transition: background 0.5s ease-in-out;
    width: 100%;
    text-align: center;
}
.book-btn:disabled {
   opacity: 0.3;
}
a.book-btn:hover {
    color: #fff;
    background: var(--primary-hover);
    transition: background 0.5s ease-in-out;
    cursor: pointer;
}

.rating h3, .rating h6 {
    color: var(--primary-color);
}

    .rating h3 span {
        color: var(--primary-green-color);
    }

.k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected .k-link,
.k-calendar .k-calendar-td.k-state-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-state-selected .k-link,
.k-calendar .k-calendar-td.k-selected:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:hover .k-link,
.k-calendar .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected.k-hover .k-link,
.k-calendar .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner,
.k-calendar .k-calendar-td.k-state-selected:hover .k-link {
    background-color: #000000 !important;
}

@media only screen and (max-width:992px) {

    #hero h1 {
        font-size: 26px;
        /* text-align: center;*/
    }

        #hero h1 span {
            /*  font-weight: 200;*/
            font-size: 22px;
        }

    #hero h2 {
        font-size: 15px;
        /*text-align: center;*/
    }

    a.book-btn {
        padding: 10px 20px;
        margin: auto;
        font-size: 14px;
    }

    section.outer-section {
        padding: 40px 0;
        background: url(https://cronyadev.blob.core.windows.net/images/Homepage/home-hero-mobile.png) no-repeat;
        background-size: 100% 100%;
        margin-bottom: 40px;
        background-position: top 10px center;
    }
}

@media only screen and (max-width:765px) {
    #hero h1 br {
        display: none;
    }
}
/*=================
    Car service
=====================*/


ul.car-service {
    display: table;
    width: 100%;
}

.car-service li {
    display: table-cell;
    width: 13%;
}

.car-service-list {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px 4px;
    text-align: center;
    margin-right: 11px;
}

.car-service-list:hover {
    box-shadow: 0px 0px 10px 4px rgb(0 0 0 / 10%);
}

.car-service-list:hover span.service-name {
    color: #37B006;
    transition: color 0.25s;
}

.car-service li:last-child .car-service-list {
    margin-right: 0px;
}

.car-service-list span.service-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #212529;
    transition: 0.5s ease-in-out all;
}

.service-img {
    position: relative;
    transition: 0.5s ease-in-out all;
}

    .service-img img {
        width: 50px;
        height: 50px;
        transition: 0.5s ease-in-out all;
    }

.service.main-services .service-img img {
    position: absolute;
    right: 0;
    top: -20px;
}

.service.main-services p {
    margin-top: 20px;
}

.service .img-static {
    opacity: 1;
    display: inline-block;
}

.service .img-hover {
    opacity: 0;
    display: none;
}

.service:hover .img-static {
    opacity: 0;
    display: none;
}

.service:hover .img-hover {
    opacity: 1;
    display: inline-block;
}



@media only screen and (max-width: 992px) {
    ul.car-service {
        display: inline-block;
    }

    .car-service li {
        display: inline-block;
        width: 24.5%;
        margin-bottom: 20px;
    }

    .car-service-list {
        margin-right: 0;
    }

        .car-service-list span.service-name {
            font-size: 14px;
            font-weight: 400;
        }

    .list-inline-item:not(:last-child) {
        margin-right: 0px !important;
    }
}

@media only screen and (max-width: 768px) {

    .car-service li {
        display: inline-block;
        width: 24.3%;
        margin-bottom: 20px;
    }

    .car-service-list {
        padding: 20px 3px;
        margin-right: 0;
    }

        .car-service-list span.service-name {
            font-size: 12px;
            font-weight: 600;
        }

    .service-img {
        width: 40%;
        display: block;
        margin: auto;
    }
}

@media only screen and (max-width: 576px) {

    .car-service li {
        display: inline-block;
        width: 49%;
        margin-bottom: 20px;
    }

    .car-service-list {
        margin-right: 0;
    }

        .car-service-list span.service-name {
            font-size: 14px;
            font-weight: 400;
        }
}


.btn.fill-icon {
    /* border:1px solid inherit !important;*/
}

.btn.fill-icon {
    display: inline-flex;
    line-height: 14px;
    padding: 7px 7px;
    /* border-color: white !important;*/
    transition: 0.5s ease all;
    border-radius: 4px !important;
}
/*green edit icon*/
.btn.fill-green-icon {
    background: #5EDFB1;
    border-color: #5EDFB1 !important;
    color: #fff;
}

/*red edit icon*/
.btn.fill-red-icon {
    background: #FF5454;
    color: #fff;
    border-color: #FF5454 !important;
}

.btn.fill-green-icon:hover {
    background: #52d4a5;
    color: #fff;
}

.btn.fill-red-icon:hover {
    background: #ea4747;
    color: #fff;
}

.btn.fill-grey-icon {
    background: var(--i-darkgrey);
    color: #fff;
    border-color: var(--i-darkgrey) !important;
}

.btn.fill-grey-icon:hover {
    background: #222;
    color: #fff;
}

.btn.grey-border-icon {
    border-color: var(--i-darkgrey) !important;
    color: var(--i-darkgrey);
    /*  padding: 6px;*/
}

.btn.grey-border-icon:hover {
    background: var(--i-darkgrey) !important;
    color: #fff;
}

.k-button.btn.fill-icon.fill-green-icon {
    background: #5EDFB1 !important;
    border-radius: 4px !important;
    border-color: #5EDFB1 !important;
}

.k-button.btn.fill-icon.fill-red-icon {
    background: #FF5454 !important;
    border-color: #FF5454 !important;
}
/*==============================
    service packages
    ==========================*/

section.custom-space {
    padding: 100px 0;
  /*  overflow: hidden;*/
    position: relative;
}

.blue-bg {
    background: #FAFCFF;
}

.service-pkg {
    padding: 50px 30px 60px 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .service-pkg h3 {
        font-weight: bold;
        color: #393C41;
        font-size: 27px;
    }

    .service-pkg p {
        color: #757575;
        font-size: 16px;
    }

h4.price {
    color: #1D1D1B;
    font-size: 40px;
    font-weight: 600;
}

    h4.price span {
        font-weight: 200;
        background: inherit;
        display: unset;
        font-size: 27px;
        padding: 0px;
        color: #e82127;
    }

.service-pkg span {
    background: #F1F5F8;
    padding: 4px 11px;
    display: block;
    font-size: 18px;
    color: #5C5E62;
    margin: 10px 0px;
    font-weight: 600;
}

.service-pkg ul li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    color: #757575;
    margin: 8px 0px;
}

    .service-pkg ul li:last-child {
        font-weight: 600;
    }

    .service-pkg ul li:before {
        content: "\e9a4";
        font-family: 'boxicons' !important;
        position: absolute;
        left: -5px;
        color: var(--primary-green-color);
        font-size: 23px;
        top: -4px;
    }


.service-book {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

    .service-book a {
        background: #4c4b4b;
        transition: background 0.5s ease-in-out;
        color: #fff;
        border: 0px;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: bold;
        /* border-radius: 15px 0px 3px 0px; */
        display: block;
    }

        .service-book a:hover {
            color: #fff;
            background: #1D1D1B;
            transition: background 0.5s ease-in-out;
        }


.popular-tag {
    position: absolute;
    top: -1px;
    right: 15px;
    background: #CDDC39;
    padding: 2px 30px 7px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0px 0px 4px 4px;
    color: #393C41;
}

ul.service-stand {
    display: table;
    width: 100%;
}

.service-stand li {
    display: table-cell;
    padding: 80px 0px 0 0;
}

/*Mobile view*/
ul.how-it-work-mobile {
    margin-bottom: 0px;
    display: none;
}

.how-it-work-mobile li {
    display: flex;
}

.mobile-icons {
    position: relative;
}

    .mobile-icons:before {
        position: absolute;
        content: "";
        width: 1px;
        height: 60%;
        left: 19px;
        top: 44px;
        border: 1px dashed #ddd;
    }

ul.how-it-work-mobile li:last-child .mobile-icons:before {
    display: none;
}
/***************************
    TABLES FORMATTING 
 *************************/

.k-grid th,
.k-grid-header .k-header {
    font-weight: 500;
}

.k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover,
.k-selected.k-hover.k-list-optionlabel,
.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    color: white;
    background-color: #454545 !important;
}
/***Telerik table ***/
.k-grid-header table, .k-grid-footer table {
    table-layout: auto !important;
}

.k-grid-content table, .k-grid-content-locked table {
    table-layout: auto !important;
}

.k-grid td {
    border-width: 0px 0px 0px 1px;
    vertical-align: middle;
    min-width: 130px !important;
    max-width: 130px !important;
}

.k-grid-header .k-header {
    position: relative;
    vertical-align: bottom;
    cursor: default;
    min-width: 130px !important;
    max-width: 130px !important;
}



/* End Mobile view*/
@media only screen and (max-width: 1366px) {
    section.custom-space {
        padding: 70px 0;
    }
}

@media only screen and (max-width:992px) {
    section.custom-space {
        padding: 50px 0;
    }

    .service-pkg {
        margin-bottom: 20px;
    }

    ul.service-stand {
        display: block;
        width: 100%;
        margin-bottom: 0px;
    }

    .service-stand li {
        display: block;
        padding: 10px 0px 0 0;
    }
}

@media only screen and (max-width:567px) {
    section.custom-space {
        padding: 50px 0;
    }

    .service-pkg h3 {
        font-size: 22px;
    }

    .service-pkg p {
        font-size: 16px;
    }

    h4.price {
        font-size: 30px;
    }

    .service-book button {
        padding: 8px 15px;
        font-size: 15px;
    }
}

/*==============================
    How does it work
    ==========================*/
.heading {
    margin: 0px 0px 10px 0px;
}

    .heading h3 {
        font-size: 28px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .heading p {
        font-size: 16px;
    }

/*tabs section*/
.HowWeWorkTab ul {
    justify-content: center;
}

    .HowWeWorkTab ul li {
        position: relative;
        border: 0px;
        margin: 0px !important;
    }

    .HowWeWorkTab ul.nav.nav-tabs li {
        white-space: nowrap;
    }

    .HowWeWorkTab ul li a, .HowWeWorkTab ul li a:hover {
        border: 0px !important;
        padding: 0px 11px 20px 51px;
        font-size: 16px;
        color: var(--primary-color) !important;
        font-weight: 600;
        margin-right: 40px;
        border-bottom: 5px solid transparent !important;
        margin-bottom: 0px !important;
        cursor: pointer;
    }

.our-warnty ul li.active a {
    background: #F1F5F8 !important;
}

.HowWeWorkTab ul li:last-child a {
    margin-right: 0px;
}

.HowWeWorkTab ul li a:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-green-color);
    right: 20px;
    border-radius: 10px;
    top: 10px;
}

.HowWeWorkTab ul li:last-child a:after {
    display: none;
}


.HowWeWorkTab ul li:nth-child(n) a:before {
    position: absolute;
    left: 10px;
    font-size: 26px;
    color: var(--primary-color);
    top: -8px;
}

.HowWeWorkTab ul li:nth-child(1) a:before {
    content: "01";
}

.HowWeWorkTab ul li:nth-child(2) a:before {
    content: "02";
}

.HowWeWorkTab ul li:nth-child(3) a:before {
    content: "03";
}

.HowWeWorkTab ul li:nth-child(4) a:before {
    content: "04";
}

.HowWeWorkTab ul li:nth-child(5) a:before {
    content: "05";
}


.HowWeWorkTab ul li a.active {
    border-bottom-color: var(--primary-hover) !important;
    color: var(--primary-hover) !important;
    background: transparent !important;
}

.HowWeWorkTab ul li:nth-child(n) a.active:before {
    color: var(--primary-hover);
}

.HowWeWorkTab .k-tabstrip-content,
.HowWeWorkTab .k-tabstrip > .k-content {
    border: 0px;
    padding: 40px 20px;
}

.HowWeWorkTab .tab-inner-content ul li {
    display: flex;
}

.our-warnty .k-content {
    background: #F1F5F8 !important;
}

.icon-left {
    font-size: 37px;
    margin-right: 5px;
    width: 70px;
}

.border-0 {
    border: 0px;
}

.worktabcontent .card-body {
    padding: 40px 15px;
}

.tab-inner-heading:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #A2A3A5;
    right: 10px;
    top: 0px;
}

.tab-inner-heading h3 {
    color: var(--primary-color);
    font-size: 28px;
    line-height: 1.3;
}

/*@media only screen and (max-width: 1400px) {
    .HowWeWorkTab ul.nav.nav-tabs {
        justify-content: space-between;
        max-width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        width: 100%;
        flex-wrap: nowrap;
    }
}*/


/*================
    Customer review
    ===============
*/
.grey-light-bg {
    background: #f8f8f8 !important;
}

.trust-pioltreview ul.list-unstyled {
    display: flex;
    align-items: center;
}

.trust-pioltreview ul li {
    margin-right: 4px;
}

    .trust-pioltreview ul li span {
        background: var(--primary-green-color);
        color: #fff;
        padding: 2px 4px;
        font-size: 19px;
    }

.customer-section .carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-green-color) !important;
}

.customer-review {
    background: #fff;
    padding: 30px 40px;
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 24px rgb(51 51 51 / 24%);
    overflow: visible;
    margin: 20px;
    border-radius: 4px;
}

    .customer-review p {
        min-height: 144px;
        max-height: 144px;
        overflow: hidden;
        white-space: pre-wrap;
        text-overflow: ellipsis;
        width: 100%;
    }

.sign h5 {
    font-size: 14px;
}

    .sign h5 span {
        font-weight: 700;
    }

.google-rating ul.list-unstyled {
    display: flex;
    margin-bottom: 0px;
}

.google-rating ul.list-unstyled li {
    display: inline-block;
    color: #FFB300;
    margin-right: 3px;
}

.reviewpoints {
    color: #393C41;
    font-weight: 600;
    font-size: 18px;
}


@media only screen and (max-width:767px) {
    .customer-review p {
        min-height: 244px;
        max-height: 244px;
    }
}
@media only screen and (max-width:767px) {
    .reviewpoints {
        font-size: 13px;
    }
    .google-rating img {
        width: 70%;
    }
}

/*=================
    our service section
   ==================*/

.service {
    border: 1px solid #c5c4c4;
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    display: block;
    width: 100%;
    transition: 0.5s ease-in-out;
    margin-bottom: 50px;
}

.service:hover {
    box-shadow: 0px 0px 10px 4px rgb(0 0 0 / 10%);
}

.service:hover span.service-name {
    color: var(--text-color);
    transition: color 0.25s;
}

.service:hover .txt-btn {
    font-weight: 500;
}

.service a, .service a:hover {
    text-decoration: none;
    color: var(--text-color);
}

.service span.service-img {
    display: block;
    margin-bottom: 10px;
}

.service span.service-name {
    font-weight: 500;
    font-size: 16px;
}

.service p {
    /*   font-size: 15px;*/
    margin: 10px 0 0 0px;
    color: var(--text-inner-color);
}

.view-btn {
    background: #ffff;
    transition: background 0.5s ease-in-out;
    color: var(--primary-color);
    font-weight: 600;
    padding: 7px 0px;
    border-radius: 0px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
}

.view-btn:hover {
    color: #fff !important;
    background: var(--primary-hover);
    transition: background 0.5s ease-in-out;
    border: 1px solid var(--primary-hover);
    cursor: pointer;
}


.book-btn {
    background: var(--primary-color);
    transition: background 0.5s ease-in-out;
    color: #ffff;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 0px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    width: 100%;
    text-align: center;
}

.book-btn:hover {
    color: #fff;
    background: var(--primary-hover);
    transition: background 0.5s ease-in-out;
    border: 1px solid var(--primary-hover);
}

.btn-round {
    border: 1px solid;
    padding: 10px;
    border-radius: 25px;
    font-size: 12px;
}

/*=================
    call us section
   ==================*/
section.call-now {
    background: #4c4b4b;
    padding: 40px 0px;
}

h5.call-us {
    margin: 0px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

@media only screen and (max-width:992px) {
    h5.call-us {
        font-size: 18px;
        font-weight: 600;
        line-height: 2;
    }
}



/*=================
   Brands we service section
   ==================*/
.brandweservice {
    overflow: hidden;
    position: relative;
    display: block;
    text-align: center;
}


@media only screen and (max-width: 767px) {
    .serviceimage {
        /*    animation: 30s merchantlist linear infinite;
        -webkit-animation: 30s merchantlist linear infinite;*/
    }

    @keyframes merchantlist {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        100% {
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }
    }
}


/*=================
   why book with us section
   ==================*/
.why-book {
    position: relative;
}

.why-book-left {
    background: url("https://cronyadev.blob.core.windows.net/static/cms/Homepage/why-left-side.svg") no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 100%;
    position: absolute;
}

.why-book-right {
    background: url("https://cronyadev.blob.core.windows.net/static/cms/Homepage/why-right-side.svg") no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: -45px;
}
/*=================
   FAQ section
   ==================*/
.faq_accordian .accordion-button {
    color: var(--primary-color) !important;
    padding: 20px 20px;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

    .faq_accordian .accordion-button:not(.collapsed) {
        background: #f4f4f4;
        font-weight: bold;
    }

.accordion-button::after {
    background-size: 1rem; 
}
.faq_accordian .accordion-button {
    background: none;
}

    .faq_accordian .accordion-button:focus {
        border-color: inherit;
        outline: none;
        box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
    }


/*.faq_accordian .accordion-button:not(.collapsed)::after {
    background-image: url("https://cronyadev.blob.core.windows.net/static/cms/Homepage/dash-lg.svg");
}

.faq_accordian .accordion-button::after {
    background-image: url("https://cronyadev.blob.core.windows.net/static/cms/Homepage/plus-lg.svg");
}*/


@media only screen and (max-width:767px) {
    .faq_accordian .accordion-button {
        padding: 20px 10px;
        font-size: 15px;
    }
    .accordion-button::after {
        width: 1rem;
        height: 1rem;
        background-size: 1rem;
    }
    .needcarhelp {
        margin: 0px 0 20px 0 !important;
        font-size: 17px;
        text-align: center;
    }

    .getAquote, .getAquote:hover {
        padding: 7px 20px !important;
        margin: auto;
        font-size: 14px !important;
    }

}

/*============
    How it work
    ==============
*/
/*.breadcrumb-header {
    background: #E3ECFA;
    padding: 5px 0px;
}

.custom-breadcurmb {
    background: none;
}

.custom-breadcurmb li a {
    color: #003264;
    text-decoration: none;
    font-size: 14px;
}

.custom-breadcurmb li.active {
    font-weight: 400;
    color: #003264;
    text-decoration: none;
}

.custom-breadcurmb .breadcrumb-item + .breadcrumb-item::before {
    color: #003264;
}

.custom-breadcurmb .breadcrumb-item.active::before {
    color: #003264;
    font-weight: 900;
}
*/
.banner-heading h3 {
    color: #252423;
    font-weight: 700;
    font-size: 32px;
}

.banner-heading p {
    color: #000;
    margin: 20px 0 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.banner-space {
    padding: 50px 0;
}

.light-blue-bg {
    background: #F6F9FF;
}

.howitworks {
    border-radius: 5px;
}

    .howitworks h4 {
        /*   font-size: 18px;*/
        font-weight: bold;
        margin: 0px 0px 20px 0;
    }

    .howitworks p {
        /*font-size: 18px;*/
    }

.thanks-msg {
    margin: auto;
}

    .thanks-msg h3 {
        font-size: 40px;
    }



@media only screen and (max-width: 767px) {
    .banner-heading h3 {
        font-size: 26px;
        text-align: center;
        font-weight: 600;
    }

    .banner-heading p {
        font-size: 15px;
        text-align: center;
    }
}

.map-height{
    height: 450px;
}
.map-height .k-map {
    height: 100%;
}



.k-checkbox {
    border-color: #D0D1D2;
}

.form-check-input:focus {
    border-color: #D0D1D2;
}
/*================
    source Service
    ===============
*/
.white-bg {
    background: #fff;
}

.more-service {
    box-shadow: 0px 4px 32px rgba(51, 51, 51, 0.08);
}

.border-0 {
    border: 0px;
}


/*================
    Contact us
    ==============
*/

.contact_overlap {
    overflow: visible !important;
    margin-bottom: 18%;
}

.contact-details {
    position: absolute;
    top: -200px;
    overflow: visible;
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08);
    background: #fff;
    border-radius: 5px;
}

.bottom-rating {
    padding: 30px;
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);
}

span.rating-pre {
    font-weight: 700;
    font-size: 23px;
}

.rating-pre sub {
    font-weight: 400;
}

/*====================
    Service choose
  ====================
*/
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 30px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4%;
    padding: 5px 8px;
    color: #fff;
    text-align: center;
    background: rgb(236 236 236) !important;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
    height: fit-content;
    border-radius: 50px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0.5);
}

.service-tabs {
    display: flex;
    align-items: center;
}

.service-tabs .item {
    width: fit-content;
    margin: 0px 26px !important;
    flex: 0;
    text-align: center;
    border-bottom: 4px solid transparent !important;
    border: 0px !important;
    padding: 8px 5px;
    border-radius: 0px !important;
    cursor: pointer;

}
.service-tabs .item span img.green-img {
    display: none;
}
.service-tabs .item.active {
    border-bottom: 4px solid var(--primary-green-color) !important;
    background-color: #effaee !important;
}

.service-tabs .item.active span img.black-img {
    display: none;
}

.service-tabs .item.active span img.green-img {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.service-tabs .item h5 {
    font-size: 13px;
    margin: 5px 0 0px 0px;
}

.service-list li {
    color: var(--primary-color);
    font-size: 14px;
    padding: 0 0 10px 0px;
    position: relative;
}

.service-list li span {
    color: var(--primary-color);
}

.service-list li p {
    margin: 0px;
    font-size: 16px;
    line-height: 8px;
}

.service-list li:last-child {
    padding-bottom: 0px;
}

.service-list li a {
    color: var(--primary-green-color);
    text-decoration: underline !important;
}

.service-list li a:hover {
    color: var(--primary-hover);
}

.service-inner h5 span.service-tag {
    position: absolute;
    right: -16px;
    font-size: 12px;
    background: #ddd;
    padding: 6px 9px;
    font-weight: 400;
}
/*.service-tabs .k-scrollview-view:first-child {
    justify-content: center;
}*/
@media(max-width:1200px) {
    .service-tabs .item {
        margin: 0 16px;
    }
    
}
@media (max-width:992px) {
    .border-right.md {
        border-right: 0px !important;
    }
    .contact-details {
        margin-top: -150px;
        position: relative;
        top: 0;
    
    }
     .service-tabs .item {
        margin: 0px !important;
        width: fit-content;
        margin: 0px 0px !important;
    }
    .service-tabs .item h5 {
        font-size: 13px;
        margin: 5px 0 0px 0px;
        width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: auto;
    }
}
@media(max-width:767px) {
    .service-tabs .item h5 {
        font-size: 13px;
        margin: 5px 0 0px 0px;
        min-width: 60px;
        max-width: 60px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: auto;
    }
    .service-tabs .k-scrollview-view {
        display: block;
    }

    .service-tabs .item {
        width: 16.67%;
        display: inline-block;
    }
}

@media(max-width:575px) {
  
   /* .service-tabs .item h5 {
        font-size: 13px;
        margin: 5px 0 0px 0px;
        width: 39px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: auto;
    }*/
    .service-tabs .item h5 {
        font-size: 13px;
        margin: 5px 0 0px 0px;
        min-width: 40px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: auto;
        max-width: 40px;
    }
}

span.final-price {
    /*float: right;*/
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-hover);
}

span.strike {
    float: left;
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: line-through;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    background-color: var(--primary-hover) !important;
}

ul.service-list {
    margin-left: 20px;
    margin-bottom: 10px;
}

ul.service-list li:before {
    content: "";
    position: absolute;
    left: -24px;
    width: 18px;
    height: 18px;
    background-size: 90% !important;
    top: 3px;
    background: url(https://cronyadev.blob.core.windows.net/static/cms/Service/check.svg) no-repeat;
}

/*====================
    Compare Service Package
    =====================
*/
.compare-service-package {
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);
    background: #fff;
    padding-top: 40px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-bottom: 40px;
}

.compare-package h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #393C41;
}

.compare-booknow {
    background: #4c4b4b;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    text-align: center;
    display: flex;
    border: 1px solid #000;
    margin: 40px 0px;
    border-radius: 5px;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    transition: background 0.25s ease-in-out;
}

    .compare-booknow:hover {
        background: #1D1D1B;
        transition: background 0.25s ease-in-out;
        color: #fff;
    }

    .compare-booknow i {
        font-size: 16px;
    }

.compare-package p {
    font-weight: 600;
    margin: 10px 0;
    color: #393C41;
}

ul.list-points {
    min-height: 750px;
    margin: 30px 0px;
    color: #393C41;
}

    ul.list-points li {
        margin: 10px 0;
        display: flex;
        align-items: center;
        color: #393C41;
    }

        ul.list-points li i {
            font-size: 23px;
            margin-right: 5px;
        }

@media only screen and (max-width:767px) {
    .compare-service-package {
        margin-bottom: 40px;
    }

    ul.list-points {
        min-height: fit-content;
    }
}
.min-vh-100 {
    min-height: 400px !important;
}
.overflow-hidden{
    overflow:hidden; 
}
.vehiclecard {
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    min-height: 50px;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1) !important;
    cursor: pointer;
}
.vehiclecardvariant {
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: start;
    min-height: 60px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 10%) !important;
    cursor: pointer;
    padding: 0px 10px;
}
.overflow-scroll-x {
    height: 300px;
    overflow-y: auto;
    overflow-x:hidden;
}

span.steps {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #07c597;
    padding: 2px 9px;
    color: #fff;
    font-size: 11px;
}
.cursor-pointer{
    cursor:pointer; 
}
.selected-vehicle {
    background: #07c597;
    margin: 0px 0px 0px 0px;
    padding: 10px 15px;
    color: #fff;
}
    .selected-vehicle h4 {
        font-size: 17px;
        color: #fff;
    }
    /*===============
        Get a Quotes
        ===============
*/
    .quote-form {
        width: 100%;
        padding: 25px 25px;
        background: #fff;
        box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);
        border-radius: 10px;
        /* display: flex;*/
        flex-direction: column;
        /*  height: 100%;*/
        justify-content: center;
    }

.field-input {
    border-radius: 0px;
    height: 60px;
}

.error {
    position: absolute;
    color: red;
    font-size: 12px;
    display: none;
    bottom: -18px;
}

.quote-btn {
    background: #393C41;
    display: block;
    width: 100%;
    padding: 10px 0px;
    border-radius: 0px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 23px;
    border: 0px;
    color: #fff;
    text-align: center;
    transition: background 0.5s ease-in-out;
}

    .quote-btn:hover {
        color: #fff;
        background: #1d1d1b;
        transition: background 0.5s ease-in-out;
    }

.bg-off-white {
    background: #FCFDFF;
}

.dotted-bg {
    background: url(https://cronyadev.blob.core.windows.net/images/Getaquote/how-it-works-bg.svg);
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon {
    display: inline-block;
    margin-right: 15px;
    font-size: 25px;
}

.icon-green {
    color: #36F586;
}

.more-option {
    margin-bottom: 30px;
}


/*====================
    Our Blog 
==================== */
.blog_inner {
    padding: 20px 30px;
}

.insight-blog {
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);
}

.red-arrow-icon {
    align-items: center;
    display: flex;
    font-size: 50px;
    margin-left: 10px;
    color: #E82127;
}

.blog_inner h4 a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
}


.text-green {
    color: var(--primary-green-color);
}
a.text-green {
    color: var(--primary-green-hover-color);
}

.blog-img img {
    width: 100%;
}

.blog-filter li {
    padding: 0px 10px;
}

    .blog-filter li:last-child {
        padding-right: 0px 0px;
    }
/*Single blog*/
.blog-inner-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 20px 0px;
}

.blog-inner-content p {
    margin-bottom: 30px;
}

ul.poilts-list li {
    margin: 0px 0px 20px 0px;
    line-height: 1.5;
}



/*=====Single service page=========*/
.services-points i.bx {
    color: var(--primary-green-color)
}

.banner-service {
    background: white;
    /*margin-top: -95px;*/
    /* padding-top: 26px;
    padding-bottom: 20px;*/
}

ul.car-services {
    display: flex;
}

.car-services li {
    display: flex;
    /* background: #fff;*/
    padding:10px 25px;
    /*border-bottom: 1px solid #ddd;*/
    /* margin-right: 20px;*/
    align-items: center;
    /*    border-left: 4px solid #393C41;
    border-radius: 0px 8px 8px 0px;
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);*/
}

.car-services li span.delivery-icon {
    display: inline-flex;
   /* font-size: 38px;*/
    align-items: center;
    color: var(--primary-hover);
    width: 20%;
}

.car-services li span.delivery-icon img {
}

.car-services li span.delivery-service {
    white-space: pre-wrap;
    margin-left: 12px;
    width: 80%;
}

.service-hero {
    margin: 100px 0;
}

section.tab-heading {
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);
    background: #ffff;
}

.what-car-service {
    margin: 0px;
}

    .what-car-service li {
        margin-right: 48px !important;
    }

        .what-car-service li a {
            text-decoration: none;
            color: #393C41;
            font-size: 16px;
            padding: 20px 0px;
            display: block;
            border-bottom: 2px solid transparent;
        }

            .what-car-service li a:hover {
                color: #000;
                /* border-bottom: 3px solid #1d1d1b;*/
            }

.what-include-points {
    background: #F4F4F4;
    width: fit-content;
    padding: 30px 40px;
}

.list-pointers li {
    margin-bottom: 10px;
}

    .list-pointers li:last-child {
        margin-bottom: 0px;
    }

span.warranty {
    margin-left: 20px;
}

    span.warranty i {
        font-size: 18px !important;
        color: #FBB01B;
    }

.how-can-we-help li {
    display: flex;
    align-items: center;
    position: relative;
}

span.how-can-help-icon {
    display: inline-block;
    z-index: 1;
}

span.how-can-help-text {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    margin-left: 10px;
}

.how-can-help-icon img {
    max-width: 115px;
    border-radius: 50%;
}

.how-can-help-icon img:hover {
    /*  box-shadow: 0px 0px 10px #000;*/
   /* border: 1px solid #fff;*/
}

.how-can-help-text span {
    font-weight: 600;
}

.how-can-we-help li:before {
    position: absolute;
    content: "";
    height: 100%;
    border-left: 1px dashed #B3B0AD;
    left: 58px;
    top: 60px;
}

.how-can-we-help li:last-child:before {
    display: none;
}

@media only screen and (max-width:1366px) {
    .what-car-service {
        display: none;
    }
}

@media only screen and (max-width:1200px) {
    .banner-service {
        margin-top: 0;
    }
}

@media only screen and (max-width:992px) {
    .car-services li {
        padding: 25px 0;
    }
}

@media only screen and (max-width:767px) {
    .service-hero {
        margin: 30px 0;
        display: none;
    }

    ul.car-services {
        display: block;
    }

    .car-services li {
        margin-bottom: 20px;
        margin-right: 0px;
        margin-top: 20px;
        padding: 10px 0;
    }

    .quote-btn {
        font-size: 16px;
        padding: 7px 0px;
    }

    label {
        font-size: 14px;
    }

    .field-input {
        border-radius: 0px !important;
        height: 46px;
        font-size: 15px !important;
    }

    .what-include-points {
        width: 100%;
    }

    span.warranty {
        display: block;
        margin: 20px 0px;
    }

    .car-services li {
        padding: 0px 20px;
    }
    .how-can-help-icon img {
        max-width: 100px;
        
    }
    .how-can-we-help li:before {
        left: 50px;
    }
}

/*===========================
    Brand we service page 
    ===============================
*/

.service a.view-more, .service a.view-more :hover {
    color: blue;
    text-decoration: underline;
}

.brand-tabs {
    border-bottom: 0px !important;
    margin-bottom: 40px !important;
    justify-content: center;
}

    .brand-tabs li.nav-item {
        margin-bottom: 0px;
        margin-right: 10px;
    }

    .brand-tabs li a {
        margin: 0px !important;
        border-radius: 5px;
        padding: 10px 40px;
        border: 2px solid #D0D1D2 !important;
        color: #222222;
        font-size: 16px;
        font-weight: 600;
    }

        .brand-tabs li a.active {
            border: 2px solid #1D1D1B !important;
            color: #fff !important;
            background: var(--primary-hover) !important;
        }

@media only screen and (max-width: 767px) {
    .brand-tabs li.nav-item {
        margin-bottom: 10px;
        width: 30.33%;
    }

    .brand-tabs li a {
        font-size: 14px;
        padding: 10px 16px;
        text-align: center;
    }
}

/*===============
    footer Section
    =================
*/
.top-footer {
    padding: 40px 0px;
}

.needcarhelp {
    margin: 0px;
    color: #ffffff;
}

.cta-background {
    background: url("https://cronyadev.blob.core.windows.net/static/cms/Homepage/cta-background.svg");
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}

.getAquote {
    background: #fff !important;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600 !important;
    padding: 10px 30px !important;
    transition: background 0.5s ease-in-out;
    /*  display: flex;
   align-items: center;*/
}

    .getAquote:hover {
        background: var(--primary-hover) !important;
        color: #ffffff !important;
        transition: background 0.5s ease-in-out;
    }

.page-footer {
    background: #f1f5f8;
    padding: 80px 0px;
}

.bookcall {
    display: inline-flex;
}

span.appointment-call {
    display: flex;
    align-items: center;
    margin-right: -6px;
    font-size: 50px;
    transform: rotate( 24deg );
    color: #393C41;
}

.appointment small {
    display: inline-flex;
    width: 100%;
    font-size: 16px;
}

.appointment span {
    font-weight: 600;
    font-size: 22px;
    color: var(--primary-color);
}

h5.footer-heading {
    margin: 0px 0px 20px 0px;
    font-size: 22px;
}

.ftr-list li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 4px 0px;
    display: block;
    /*   font-size: 16px;*/
}

    .ftr-list li a:hover {
        color: var(--primary-green-color);
        transition: color 0.25s;
    }

hr.footer_boder {
    margin: 10px 0px;
}
.zoom-img {
    transition: 0.2s ease all;
}
.zoom-img:hover {
    transform: scale(1.1);
}
.email-send {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 50px;
    color: #393C41;
}

ul.social-media {
    display: flex;
}

    ul.social-media li {
        padding: 0px 6px;
    }

        ul.social-media li a {
            color: #393C41;
            font-size: 24px;
        }

            ul.social-media li a:hover {
                color: var(--primary-green-color);
                transition: color 0.25s;
            }

.download-app li a {
    background: #e8e8e8;
    padding: 2px 8px;
    display: block;
    margin: 0px 0px 10px 0px;
    border: 1px solid #c2c2c2;
    color: #333;
    font-size: 15px;
    width: 100%;
}

@media only screen and (max-width:992px) {
    ul.ftr-email {
        display: inherit;
    }
}


@media only screen and (max-width: 767px) {

    ul.ftr-email {
        display: inline-block;
    }

        ul.ftr-email li {
            display: flow-root;
            margin: 40px 0px;
        }

            ul.ftr-email li:last-child {
                margin-bottom: 0px;
            }
    .ftr-list li a {
        padding: 4px 7px;
    }

    .email-send {
        display: flex;
        align-items: center;
        margin-right: 10px;
        font-size: 30px;
    }

    .appointment span {
        font-weight: 600;
        font-size: 19px;
        color: #393C41;
    }

    span.appointment-call {
        font-size: 40px;
        color: #393C41;
    }
    .trust-pioltreview ul li span {
        font-size: 15px;
    }
}


/*Cart empty*/


.cart-empty i {
    background: #000;
    padding: 8px;
    color: #fff;
    font-size: 30px;
}

/*Booking Appointemtn*/


/*====================
 top blue strip
    ==================
*/

.top-blue-strip {
    background: #E3F3F7;
}

    .top-blue-strip p {
        margin: 0px;
        font-size: 14px;
        font-weight: 600;
        padding: 3px 0;
        color: #444444;
    }

section.outer-section {
    padding: 40px 0;
}

/*Breadcurmb*/


.breadcrumb-header {
    background: #E3F3F7;
    padding: 10px 0px;
}

.custom-breadcrumb {
    background: none;
}

.custom-breadcurmb li a {
    color: #003264;
    text-decoration: none;
    font-size: 14px;
}

.custom-breadcurmb li.active {
    font-weight: 400;
    color: #003264;
    text-decoration: none;
}

.custom-breadcurmb .breadcrumb-item + .breadcrumb-item::before {
    color: #003264;
}

.custom-breadcurmb .breadcrumb-item.active::before {
    color: #003264;
    font-weight: 900;
}


/*end Breadcurmb*/

/*========================
    Book Appointment
    =====================
*/

.text-blue {
    color: #3E6AE1 !important;
}

.hand {
    cursor: pointer;
}
/*
.text-red {
    color: #E82127;
}
*/
.text-green {
    color: var(--primary-green-color);
}

.w-100 {
    width: 100%
}

.custom-input {
    border: 1px solid #D0D1D2 !important;
    border-radius: 0px !important;
    height: 35px;
    appearance: auto !important;
    background: white !important;
}

.custom-input:hover,
.custom-input:focus,
.custom-input:focus-within {
    outline: none !important;
    box-shadow: 0 0 0 2px rgb(0 0 0 / 8%) !important;
    background: white;
}

.custom-input-icons {
    background: #fff !important;
    border-left: 1px solid #ffff !important;
    border-radius: 0px !important;
    color: #3E6AE1 !important;
    font-size: 26px !important;
    box-shadow: none !important;
}

.k-calendar .k-nav-today {
    color: #4aad88;
    opacity: 1;
}

.border-right-0 {
    border-right: 0px !important;
}

.cupon-msg {
    font-size: 13px;
}

.list-service li {
    font-size: 13px;
}

.total-amt span {
    font-size: 16px;
}
.placeholder-img {
    background: #f4f4f4;
    WIDTH: 75px;
    height: 75px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img img {
    /* object-fit: contain; */
   /* max-width: 100%;
    height: auto;
    overflow: hidden;
    width: auto;*/
   height: auto;
   width: auto;
   max-width: 100%;
}


/********** RADIO TABBING *************/


.radio-tabbing .nav-tabs {
    justify-content: center;
    margin-top: 15px;
    border: 0px;
}

.radio-tabbing .nav-tabs .nav-item .nav-link {
    border-radius: 50px;
    border: 2px solid #ddd;
    background: #ddd;
    cursor: pointer;
}

.radio-tabbing .nav-tabs .nav-item {
    margin: 0 20px -19px 20px;
    display: inline-flex; 
}

.radio-tabbing .nav-tabs .nav-item .nav-link.active {
    border-radius: 50px;
    border-color: var(--primary-green-color);
    background: white;
}

.radio-tabbing .tab-content {
    margin-top: 70px;
    padding: 0 15px;
}
@media (max-width:767px){
    .radio-tabbing .nav-tabs .nav-item {
        margin: 0 4px ;
    }
    .radio-tabbing .nav-tabs {
      /*  margin-left: 10px;*/
        display: inline-block;
        white-space: nowrap;
        overflow-y: hidden;
        width: 100%;
        overflow-x: auto;
        text-align:center;
    
    }
    .radio-tabbing .nav-tabs .nav-item .nav-link {
       /* padding: 3px 7px;*/
    }
    .radio-tabbing .tab-content {
        margin-top: 40px;
    }
}


/*****Telerik Notification*****/
.demo-notification {
    /* position: absolute;*/
    margin-bottom: 65px;
    z-index: 999999 !important;
    text-transform: none !important;
    bottom: 40px !important;
    right: 60px !important;
}

.demo-notification .k-notification {
    padding-right: 20px !important;
}

.demo-notification .k-notification-wrap {
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 4px 10px !important;
    align-items: center;
    line-height: normal;
}

.k-notification {
    width: 100%;
}

.notification-parent {
    position: relative;
}

.k-notification-container {
    margin: 2px 0;
    display: flex;
    vertical-align: top;
    width: 400px;
}

.k-notification-wrap > .k-i-close {
    margin-right: 0;
    margin-left: 4px;
    /* flex: none; */
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 13px;
}

.k-notification-container .k-icon {
    color: #fff;
    line-height: normal;
    font-size: 14px;
}

.k-notification-error .k-icon {
    color: red;
}

.k-notification-warning .k-icon {
    color: red;
}

.k-notification-success .k-icon {
    color: #07c597 !important;
}

.k-notification-success {
    background: #fff !important;
    color: #454545 !important;
    border-color: #fff !important;
    box-shadow: var(--ds-shadow-overlay, 0 0 1px rgba(9, 30, 66, 0.31), 0 20px 32px -8px rgba(9, 30, 66, 0.25)) !important;
    border-radius: 0px !important;
    padding: 15px 15px !important;
    border-bottom: 3px solid #07c597 !important
}

.k-notification-error, .k-notification-warning {
    background: #fff !important;
    color: #454545 !important;
    border-color: #fff !important;
    box-shadow: 0px 4px 9px 2px rgb(0 0 0 / 10%) !important;
    border-radius: 0px !important;
    padding: 15px 15px !important;
    border-bottom: 3px solid red !important
}



span.k-icon.k-i-success, span.k-icon.k-i-error {
    font-size: 20px;
}

.k-notification-wrap > .k-icon {
    margin-right: 14px !important;
    flex: none !important;
}

.k-notification-wrap > .k-i-close {
    margin-right: 0 !important;
    margin-left: 4px;
    flex: none;
    cursor: pointer;
}

.demo-notification .k-notification-wrap {
    padding: 0px 0px !important;
}

.k-i-success::before {
    content: "\e11a" !important;
}

.k-i-error::before {
    content: "\e11d" !important;
}
.download-files {
    position: absolute;
    right: 0;
    line-height: 33px;
    z-index: 3;
    padding: 15px;
    background: white;
    display: none;
    margin-top: 0px;
    width: 200px;
    border: 1px solid #ccc;
    top: 24px;
}

.download-file-link {
    cursor: pointer;
    display: flex;
}
/*
.download-file-link i {
    border-radius: 4px;
    padding: 3px 6px;
}*/

.download-file-link:hover .download-files,
.download-file-link:focus .download-files {
    display: block !important;
}

/*-------------------
    Vehicle Identify
    --------------------*/

.my-vehicle li .inner-my-vehicle {
    /*   display: inline-flex;
    min-width: 24%;*/
    display: inline-flex;
    /* margin: 11px 5px;*/
    align-items: center;
    padding: 8px 9px;
    cursor: pointer;

    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}
.my-vehicle .vehicle-name {
    margin-left: 20px;
}

.my-vehicle li.vehilceSelected .inner-my-vehicle {
    border: 1px solid var(--primary-green-color);
    background: #e2fcf6;
    box-shadow: 0px 0px 0px 1px var(--primary-green-color);
}

/*-------------------
NEW Tabing--------------------*/

/*-----NEW DEFAULT TABING--------------------*/
.new-tabing .k-tabstrip-items-wrapper {
    background: #fff !important;
}

.new-tabing .k-tabstrip-content {
    margin: 15px;
}

.new-tabing .k-tabstrip-items-wrapper .k-item.k-state-active,
.new-tabing.k-tabstrip-items-wrapper .k-item:active {
    background: transparent;
    border: 0px;
    font-weight: bold;
}

.new-tabing .k-tabstrip-items .k-link h6 {
    font-size: 17px;
    font-weight: 500 !important;
    color: #757575;
    margin-bottom: 0px;
}

.new-tabing .k-tabstrip-items-wrapper .k-item.k-state-active h6 {
    color: var(--i-darkgrey);
}


.new-tabing ul {
    padding-left: 10px;
}

.new-tabing .card {
    /*background: #ffffff;*/
    border: 0px;
}

.new-tabing .nav-tabs .nav-item,
.new-tabing.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
    box-shadow: none;
    background: transparent;
    margin-right: 40px;
    border-bottom: 4px solid transparent;
}

.new-tabing .nav-link,
.new-tabing .k-tabstrip-items .k-link {
    color: var(--primary-color);
    border-width: 0 0 4px 0;
    font-size: 16px;
   /* padding: 15px 12px;*/
}
.new-tabing.content-shadow .k-tabstrip-content {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    margin: 0;
}
    .new-tabing .nav-link:focus,
    .new-tabing .nav-link:hover {
        border-bottom: 4px solid var(--primary-green-color) !important;
    }

.new-tabing .nav-tabs .nav-link.active,
.new-tabing .k-item.k-active {
    background: transparent;
    border-width: 0 0 4px 0;
    border-bottom: 4px solid var(--primary-green-color) !important;
    font-weight: bold;
}
.new-tabing .k-tabstrip-items-wrapper .k-item:active {
    border-width: 0 0 4px 0 !important;
}
.new-tabing ul li .nav-link {
    border-width: 0 0 4px 0;
    cursor: pointer;
}

.new-tabing .nav-tabs .nav-item {
    border-bottom: 0px solid transparent;
}

.new-tabing .tab-content,
.new-tabing .k-tabstrip-content,
.new-tabing .k-tabstrip > .k-content {
    background: transparent;
    border: 0px;
    padding: 13px 0 0px;
    overflow: hidden;
}

    .new-tabing .tab-content label,
    .new-tabing .k-tabstrip-content label {
        font-weight: 600;
    }

.new-tabing .card-body {
    padding: 1rem 1.8rem;
}

.new-tabing .nav-pills .nav-link {
    margin-left: 15px;
    font-weight: 500;
    border-radius: 25px;
    border: 0px !important;
}

    .new-tabing .nav-pills .nav-link:hover {
        border: 0px;
    }

    .new-tabing .nav-pills .nav-link.active {
        background: #82f5cc;
        color: #222;
    }

.new-tabing.k-content-custom .k-tabstrip-content,
.new-tabing.k-content-custom .k-tabstrip > .k-content {
    background: transparent !important;
    border: 0;
    padding: 10px 0 !important;
}

.new-tabing.k-content-custom ul {
    padding-bottom: 0 !important;
}

    .new-tabing.k-content-custom ul li span {
        cursor: pointer !important;
    }
.k-tabstrip-content:focus {
    outline: none;
}

.custom-inputab-content {
    height: 100%;
}


@media screen and (max-width:1200px) {
    #hero {
        background: #F8F8F8;
    }
    #header .logo {
        padding: 10px 15px 10px 0px;
    }
    span.appointment-call-nav {
        font-size: 26px;
    }
    .user_logedin > .nav-link {
        padding: 9px 9px !important;
    }
    .HowWeWorkTab ul.k-tabstrip-items .k-link {
        width: 163px;
        padding: 0px 11px 10px 35px;
        font-size: 16px;
        margin-right: 30px;
    }

    .HowWeWorkTab ul.k-tabstrip-items li:nth-child(n) .k-link:before {
        font-size: 24px;
        top: -6px;
    }
}
@media screen and (max-width:1024px) {
    #hero {
        background: #F8F8F8;
    }
    /*.navbar {
        padding: 0;
    }*/
}
@media screen and (max-width:992px) {
    
    #hero {
      /*  padding-bottom: 50px;*/
        background: #ffffff;
    }
    #header .logo {
        padding: 10px 5px 10px 0px;
    }
    .bookcall {
        padding-right: 10px;
    }
    .phone {
        background: #fff;
        padding: 0;
    }
    .user_logedin > .nav-link {
        padding: 7px 6px !important;
    }
    .appointment-phone-nav {
        display: none;
    }

    span.appointment-call-nav {
        margin-right: -2px;
        font-size: 21px;
        width: 30px;
        height: 30px;
        transform: rotate( 8deg );
        color: #ffffff;
        margin-top: 0px;
        background: var(--primary-green-color);
        border-radius: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .heading h3 {
        font-size: 24px;
    }

    .heading p {
        font-size: 14px;
    }

    .bookpackage {
        margin-bottom: 20px;
    }

    .icon-left {
        font-size: 22px;
        margin-right: 0px;
        width: 29px;
    }

    .icon-left img {
        width: 60%;
    }

    .tab-inner-heading:after {
        height: 0.5px;
        width: 90%;
        right: auto;
        top: auto;
        bottom: 0;
    }

    .tab-inner-content {
        padding-top: 15px;
    }


    .tab-inner-heading h3 {
        font-size: 22px;
    }

    .HowWeWorkTab ul {
        justify-content: flex-start;
        border-right: 1px solid #A2A3A5 !important;
        border-bottom: 0px;
    }

    .HowWeWorkTab ul li a span {
        display: none;
    }

    .HowWeWorkTab ul li a.active {
        border-bottom-color: transparent !important;
    }
    .HowWeWorkTab ul li:nth-child(n) a:before {
        font-size: 22px;
        left: 0;
    }
    .HowWeWorkTab ul li:nth-child(n) a.active:before {
        color: var(--primary-green-color) !important;
    }

    .HowWeWorkTab ul li a:after {
        display: none;
    }

    .HowWeWorkTab ul.nav.nav-tabs li {
        display: block;
        width: 100%;
        padding: 10px 0 20px;
    }
}
/*@media only screen and (max-width:768px) {*/
@media screen and (max-width: 768px) {
    #header .logo {
        padding: 3px 10px 3px 0px;
    }

    .download-files {
        right: auto;
        width: 180px;
    }

    .download-file-link {
        top: 5px;
    }

    .radio-tabbing .nav-tabs {
        padding-bottom: 25px;
    }

    .tab-inner-heading h3 {
        font-size: 22px;
    }

    .service {
        padding: 20px 10px;
    }

    .car-services li span.delivery-icon {
        width: 34px;
    }

    .font-32 {
        font-size: 25px;
    }
}
/*@media only screen and (max-width:575px) {*/
@media screen and (max-width: 575px) {
    .new-tabing ul.k-tabstrip-items li {
        margin-right: 0px !important;
    }

    .customer-review {
        padding: 30px 0px;
    }
    .navbar {
        padding-right: 19px !important;
        padding-left: 19px !important;
    }
}



 