



/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');


/*====================
2. Theme variables
======================*/

:root {
   --color1: #187E22;
  --color2: #B61B1B;
    --theme-radius:8px;
    --theme-radius:5px;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --theme-color: #EF1D26;g
  --theme-bg-light: #f7f7f7;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-green: #11B76B;
  --color-blue: #0049D0;
  --color-yellow: #FBA707;
  --hero-overlay-color: #01060F;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 6px 0 #0002;
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #F5FAFF;
}



/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}
html {
    scroll-behavior: smooth;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #444;
  line-height: 1.8;
}

a {
  color:  var(--color2);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}
a.text-inherit:hover {
    text-decoration: underline;
    color: var(--color2);
}
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color2);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}




/*====================
4. Preloader
======================*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--theme-color);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}




/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

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

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: #f7f7f7!important;
}



/*====================
6. Margin & padding
======================*/

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.py-80 {
  padding: 80px 0;
}
.py-50 {
  padding: 50px 0;
}
.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 80px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}



/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-heading.text-start p {
    margin-bottom: 10px;
}


.fr_2_pages .about-right ul li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    color: var(--color1);
}
.fr_2_pages .about-right ul li{
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
    font-weight: 500;
}

.about-right h3 {
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 600;
}
section.about-area.about-us.py-80.inr-why-chos .about-right {
    height: 600px;
    overflow-y: auto;
    padding: 0 20px;
 
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--color1) transparent;
}
 
/* Chrome, Edge, Safari */
section.about-area.about-us.py-80.inr-why-chos .about-right::-webkit-scrollbar {
    width: 5px;
}
 
section.about-area.about-us.py-80.inr-why-chos .about-right::-webkit-scrollbar-track {
    background: transparent; /* remove scrollbar background */
}
 
section.about-area.about-us.py-80.inr-why-chos .about-right::-webkit-scrollbar-thumb {
    background: var(--color1);
    border-radius: 10px;
}
 
section.about-area.about-us.py-80.inr-why-chos .about-right::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
}
.about-right p {
    margin-bottom: 8px;
}
.site-title-tagline i{
  line-height: 0;
  font-size: 21px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 38px;
  color:  var(--color2);
  margin-bottom: 10px;
}

.site-title span{
  color: var(--color1);
}


.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--color1);
  width: 90px;
  height: 4px;
  margin-top: 10px;
}

/*.heading-divider:after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: -1px;*/
/*  height: 6px;*/
/*  width: 15px;*/
/*  border-radius: 0px;*/
/*  background-color: #fff;*/
/*  -webkit-animation: heading-move 5s infinite linear;*/
/*  animation: heading-move 5s infinite linear;*/
/*}*/

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}



/*====================
8. Theme button
======================*/

.theme-btn {
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: var(--theme-radius);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color1);
  box-shadow: var(--box-shadow);
  z-index: 1;
}
button.nav-right-link i {
    background: var(--color2);
    padding: 9px 10px;
    color: #fff;
    border-radius: var(--theme-radius);
        transition: all 0.5s;
}
button.nav-right-link i:hover {
    background: var(--color1);
}
/*.theme-btn::before {*/
/*  content: "";*/
/*  height: 300px;*/
/*  width: 300px;*/
/*  background:  var(--color2);*/
/*  border-radius: 50%;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translateY(-50%) translateX(-50%) scale(0);*/
/*  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
/*  z-index: -1;*/
/*}*/

.theme-btn:hover {
  color: #fff;
  background: var(--color2);
}

/*.theme-btn:hover::before {*/
/*  transform: translateY(-50%) translateX(-50%) scale(1);*/
/*}*/

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.nav-right-btn .theme-btn span{
    margin-left: 0;
}

.theme-btn2{
  background: #fff;
  color: var(--color1);
}

.theme-btn2::before{
  background: var(--color1);
}

.theme-btn2:hover{
  color: #fff;
}
.hero-single.junk-car .hero-content .theme-btn:hover {
    color: var(--color1);
    background: #fff;
}

.hero-single.junk-car .hero-content .theme-btn2:hover {
    background: var(--color1)!important;
    color: #fff!important;
}


/*====================
9. Container
======================*/

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: var(--theme-radius);
  color: #fff;
  background-color: var(--color1);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
      border: 1px solid #ffffff4d;
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}



/*====================
11. Header top css
======================*/

.header-top {
  padding: 5px 0;
  position: relative;
  background:  var(--color2);
  z-index: 1;
}

.header-top::before{
  content: "";
  position: absolute;
  background: var(--color1);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  width: 10%;
  top: 0;
  left: 0;
  bottom: -1px;
  z-index: -1;
}

.header-top::after{
  content: "";
  position: absolute;
  background: var(--color1);
  clip-path: polygon(20% 1%, 100% 0, 100% 100%, 0% 100%);
  width: 10%;
  top: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-contact a {
  color: #fff;
  font-weight: 500;
  display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.header-top-contact a i{
color: #fff;
    background: var(--color1);
    max-width: 40px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--theme-radius);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-link a{
  color: #fff;
  margin-right: 12px;
}

.header-top-link a:hover{
  color: var(--color1);
}

.header-top-social span{
  color: #fff;
      display: block;
    margin-bottom: -7px;
    font-size: 13px;
    font-weight: 300;
}

.header-top-social a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-left: 14px;
  transition: var(--transition);
}

.header-top-social a:hover {
  color: var(--color1);
}


@media all and (max-width: 1199px) {

  .header-top-contact ul {
    gap: 10px;
  }

  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }

  .header-top-left {
    margin-right: 5px;
  }
}

/*@media all and (max-width: 992px) {*/
/*  .header-top {*/
/*    display: none;*/
/*  }*/
/*}*/



/*====================
12. Navbar css
======================*/

.navbar {
  background: #fff;
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: var(--box-shadow);
  z-index: 999;
}

.navbar.fixed-top {
  background: #fff;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 220px;
}

@media (min-width: 991px) {
    li.nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
  transition: transform 0.3s ease;
}


@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }
div#main_nav ul.navbar-nav .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f105"!important;
  font-weight: 600;
  border: none;
  font-size: 14px;
}

div#main_nav ul.navbar-nav .dropdown-toggle.show::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f105"!important;
  font-weight: 600;
  border: none;
  font-size: 14px;
          rotate: 90deg;
}
  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 20px;
    padding: 30px 0 30px 0;
    font-size: 16px;
    font-weight: 600;
    color:  var(--color2);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
        display: block;
        position: absolute;
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        border: none;
        border-radius:var(--theme-radius) var(--theme-radius) 0 0;
        background: #fff;
        width: 850px;
        /* box-shadow: var(--box-shadow); */
        column-count: 3;
        padding: 10px 16px 15px 16px;
        border-bottom: 4px solid var(--color1);
        box-shadow: 0 0 6px 0 #0002;
    }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-info-color);
  }
  
  .navbar .nav-item .dropdown-menu .dropdown-item {
    position: relative;
    padding-left: 28px;
}

.navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color1);
}

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    /*border-bottom: none;*/
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
        padding: 7px 25px 7px 8px;
        font-weight: 500;
        color: var(--color2);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        transition: all .3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--color1);
    padding-left: 10px;
  }

  /*.navbar .nav-item .dropdown-menu .dropdown-item::before {*/
  /*  content: "//";*/
  /*  position: absolute;*/
  /*  left: 15px;*/
  /*  top: 8px;*/
  /*  color: var(--color1);*/
  /*  opacity: 0;*/
  /*  visibility: hidden;*/
  /*  transition: var(--transition);*/
  /*  z-index: -1;*/
  /*}*/

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--color1);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: space-between;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 30px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color:  var(--color2);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color2);
    font-size: 28px;
    padding-right: 0;
    padding-left: 0px;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }

  .nav-right .cart-btn span{
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: #fff;
  }

}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    /*position: fixed;*/
  }
  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 180px;
  }



.navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    z-index: 9999;
    padding: 0;
    display: block !important;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}

.navbar-collapse.show {
    transform: translateX(0);
}




    .nav-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--color2);
        padding: 20px 15px;
}


.header-top-contact.mbil ul {
    display: inline-grid;
}

.navbar-collapse .header-top-contact.mbil ul li a{
    color:var(--color2);
}
div#main_nav ul.navbar-nav {
    padding: 30px 20px 10px 20px;
}
.navbar-collapse .header-top-contact.mbil ul li {
    display: inline-flex;
    color: var(--color2);
    padding: 0 18px;
}

.navbar-collapse .header-top-contact.mbil p.title {
    font-weight: 600!important;
}

button.navbar-toggler.close-nav .navbar-toggler-mobile-icon i {
        background:#fff!important;
        padding: 10px 10px;
        color: var(--color2)!important;
        border-radius: var(--theme-radius);
        transition: all 0.5s;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

  .dropdown-toggle::after {
    float: right;
  }
.navbar .nav-item {
    border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}

.navbar .nav-item:last-child {
    border-bottom: none;
}
  .navbar .nav-item .nav-link {
    color:  var(--color2);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color2);
  }

  .mobile-menu-right .nav-right-link:hover{
    color: var(--color1);
  }

  .search-area.open{
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon i {
    background: var(--color2);
    padding: 12px 12px;
    color: #fff;
    font-size:25px;
    border-radius: var(--theme-radius);
    transition: all 0.5s;
  }

   
.navbar .dropdown-menu {
border: none;
padding: 0;
border-top: 1px solid rgba(1, 15, 28, 0.1);
max-height: 300px;
        overflow: scroll;
    }
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
  .navbar .dropdown-menu li a {
font-weight:500!important;
position:relative;
padding: 9px 25px 9px 25px;
}
  .navbar .dropdown-menu li a::before {
      display: inline-block;
        margin-left: 5px;
        vertical-align: baseline;
        font-family: 'Font Awesome 6 Pro';
        content: "\f105" !important;
        font-weight: 600;
        border: none;
                font-size: 13px;
        position: absolute;
        top: 13px;
        left: 5px;
  }
  
  
.navbar .dropdown-menu li a i {
color:var(--color1);
margin-right:10px;
}

  .nav-right {
    display: none;
  }

}


/*============================
13. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: #fff;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--color1);
  }
}



/*====================
14. Search area css 
======================*/

.search-area {
  position: absolute;
  top: 85px;
  right: 0;
  background: #fff;
  padding: 15px 15px;
  -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
  width: 340px;
  visibility: hidden;
  opacity: 0;
  border-radius: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
}

.search-area.open {
  visibility: visible;
  opacity: 1;
  top: 78px;
}

.search-area .form-group {
  position: relative;
}

.search-area .form-control {
  padding: 12px 45px 12px 20px;
  border-radius: 10px;
  box-shadow: none;
}

.search-area .form-control:focus{
  border-color: var(--theme-color);
}

.search-area .search-icon-btn {
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: none;
  font-size: 20px;
}



/*====================
15. sidebar popup css 
======================*/

.sidebar-popup {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.sidebar-popup.open {
  visibility: visible;
  opacity: 1;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  padding: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9999;
}

.sidebar-wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.sidebar-content{
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 75px);
}

.close-sidebar-popup{
  position: absolute;
  top: 1px;
  right: 1px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  background: var(--color2);
  color: #fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.close-sidebar-popup:hover{
  background: var(--theme-color);
}

.sidebar-logo img{
  width: 220px;
}

.sidebar-about{
  margin-top: 40px;
}

.sidebar-wrapper .sidebar-content p.footer-widget-title{
    color: var(--color2);
    font-weight: 600;
    font-size: 23px;
        padding-bottom: 0px;
    margin-bottom: 5px;
}
.sidebar-wrapper .sidebar-content p.footer-widget-title::before, .sidebar-wrapper .sidebar-content p.footer-widget-title::after{
    display:none;
}

.sidebar-wrapper .sidebar-content .footer-contact li a {
    color: var(--color2);
    font-weight: 600;
    font-size: 16px;
}
.sidebar-wrapper .sidebar-content .footer-contact li a:hover {
    color: var(--color1);
    text-decoration:underline;
}
.sidebar-wrapper .sidebar-content .footer-contact li .address {
    color: var(--color2);
    font-weight: 600;
    font-size: 16px;
}
.sidebar-wrapper .sidebar-content .footer-contact li i{
margin-right: 0px!important;
}
.sidebar-wrapper .sidebar-content .footer-contact li p.title{
font-weight: 500;    font-size: 15px;
}
.sidebar-about h4{
  margin-bottom: 10px;
}

.sidebar-contact{
  margin-top: 20px;
}

.sidebar-contact p.title {
    font-weight: 700;
    color: var(--color2);
    font-size: 16px;
    margin-bottom: -7px

}

.sidebar-contact h4{
  margin-bottom: 15px;
}

.sidebar-contact li{
  margin: 10px 0;
  display: flex;
  gap: 11px;
    align-items: center;
}

.sidebar-contact li i{
      margin-right: 5px;
    color: #fff;
    background: var(--color1);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
}

.sidebar-contact li a:hover{
  color: var(--color1);
}

.sidebar-social{
  margin-top: 25px;
}

.sidebar-social h4{
  margin-bottom: 20px;
}

.sidebar-social a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: var(--theme-radius);
  margin-right: 8px;
  background: var(--color2);
  color: #fff;
  box-shadow: var(--box-shadow);
}

.sidebar-social a:hover{
  background: var(--color2);
}

/*====================
16. Main section css 
======================*/

.main {
  margin-top: 0rem;
}



/*====================
17. Hero css 
======================*/

.hero-section {
  position: relative;
}
.hero-single.junk-car.common-banner .hero-content ul.rofiex-breadcrumb.list-unstyled {
    justify-content: center;
        color: #fff;
        flex-wrap: wrap;
}

.hero-single.junk-car.common-banner .hero-content .hero-title {
    text-align: center;
    margin: 0;
}
.hero-single {
  padding-top: 85px;
  padding-bottom: 120px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-single.junk-car.jcs-page {
    padding: 70px 0;
}
.hero-single.junk-car.jcs-page h1.hero-title {
    margin-top: 0;
}


.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: linear-gradient(to right, #000 30%, #000 30%, transparent 100%);
  opacity: 0.90;
  z-index: -1;
}
.hero-single.junk-car.common-banner::before {
  content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background:#000000db;
    opacity: 0.90;
    z-index: -1;
}


.hero-single .hero-content {
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin: 15px 0 20px;
  text-transform: capitalize;
  text-shadow: 0.02em 0.02em 0.02em rgba(35, 35, 35, 0.95);
}

.hero-single .hero-content .hero-title span{
  color: var(--color2);
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--color1);
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content p {
     color: #fff;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0.02em 0.02em 0.02em rgba(35, 35, 35, 0.65);
    position: relative;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-single .hero-img::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #6c757dcf;
  right: 100px;
  bottom: 0px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.hero-single .hero-img{
  position: absolute;
  right: 100px;
  bottom: 120px;
  width: 50%;
  z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: var(--color1);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr)!important;
}

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

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

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before{
    width: 250px;
    height: 250px;
  }

}

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

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
.share-links.clearfix .blog-meta.col-lg-6 {
    margin-bottom: 15px;
}
}





/*====================
19. Nice select css
======================*/

.nice-select{
  width: 100%;
  height: 55px;
  line-height: 54px;
  border-radius: var(--theme-radius);
  font-size: 16px;
  color: var(--body-text-color);
}

.nice-select::after{
  width: 9px;
  height: 9px;
  right: 20px;
  margin-top: -7px
}

.nice-select:focus{
  border-color: var(--theme-color);
}

.nice-select .list{
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  border-radius: 8px;
  background: rgba(239, 23, 33, .05);
  color: var(--color1);
}



/*====================
20. Find car css 
======================*/

.find-car{
  position: relative;
  margin-top: -45px;
  z-index: 2;
}

.find-car-form{
  padding: 30px 30px;
  background: #fff;
  border-radius: var(--theme-radius);
  box-shadow: var(--box-shadow);
}

.find-car-title {
  font-size: 25px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.find-car-form .form-group{
  margin-top: 20px;
}

.find-car-form .form-group label{
  margin-bottom: 5px;
  color:  var(--color2);
}

.find-car-form .form-select,
.find-car-form .form-control{
  padding: 15px 20px 15px 50px;
  border-radius:  var(--theme-radius);
  font-size: 18px;
  box-shadow: none;
  color: var(--body-text-color);
}

.find-car-form .form-select:focus,
.find-car-form .form-control:focus{
  border-color: var(--theme-color);
}

.find-car-form .theme-btn{
  width: 100%;
  padding: 13px;
  border-radius: 10px;
}

.find-car-form .theme-btn::before{
  width: 360px;
  height: 360px;
}


@media all and (max-width: 991px) {
  .find-car-form {
    padding: 25px;
  }

  .find-car-form .theme-btn{
    margin-top: 25px;
  }
}



/*====================
21. Banner css 
======================*/

.banner-item {
  width: 100%;
  height: Auto;
  border-radius: 10px;
  position: relative;
}

.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

.banner-item img {
  border-radius: 10px;
  width: 100%;
}

.banner-item-content {
  position: absolute;
  top: 20px;
  right: 20px;
}

.banner-item-content h2 {
  color: #fff;
}

.banner-item-content p {
  color: #fff;
}

.banner-item-content a {
  padding: 6px 20px;
  color: #fff;
  background: var(--theme-color);
  margin-top: 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.banner-item-content a:hover {
  background: var(--theme-color);
}

.banner-item2 .banner-item-content {
  top: unset;
  right: unset;
  left: 20px;
  bottom: 20px;
}

.banner-item3 .banner-item-content {
  top: unset;
  bottom: 20px;
}

@media all and (max-width: 991px) {
  .banner-item {
    margin-bottom: 25px;
  }
}


.about-left {
  position: relative;
}

.about-img img{
  border-radius: var(--theme-radius);
}

.about-experience{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
      top: 45px;
    left: -45px;
  background:  var(--color2);
  border-radius: var(--theme-radius);
  padding: 10px 10px 10px 10px;
  color: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
  max-width: 210px;
}
.about-experience p {
    font-weight: 400;
    line-height: 22px;
}
.about-experience-icon{
  color: #fff;
  font-size: 45px;
  min-width: 70px;
  min-height: 70px;
  line-height: 68px;
  text-align: center;
  background: var(--color1);
  border-radius: var(--theme-radius);
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
  font-weight: 500;
}

.about-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Pro";
  color: var(--color1);
}

@media all and (max-width: 991px) {
  .about-right {
        padding-left: 0;
  }
}



/*====================
23. Service css 
======================*/

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 15px;
  background: #fff;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-img img{
  border-radius: 10px;
}

.service-content {
  position: relative;
  margin-top: 5px;
}

.service-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #fff;
  font-size: 50px;
  color: var(--color1);
  text-align: center;
  border-radius: 50%;
  margin-top: -50px;
  right: 40px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.service-arrow {
  margin-top: 25px;
}

.service-title a {
  font-size: 20px;
  margin: 20px 0;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--color2);
}

.service-title a:hover {
  color: var(--color1);
}

.service-arrow .theme-btn{
  padding: 10px 22px;
}

.service-area2 .service-item{
  text-align: center;
}

.service-area2 .service-icon{
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  position: unset;
}

.service-area2 .service-title a{
  margin-top: 10px;
}



/*==================
24. Service single
====================*/

.service-single-list i {
  color: var(--color1);
  margin-right: 10px;
}

.service-download a {
  border: 2px solid var(--theme-color);
  padding: 12px 20px;
  color:  var(--color2);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 15px;
  transition: var(--transition);
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.service-details h3 {
  color:  var(--color2);
}

.service-details img{
  border-radius: 15px;
}



/*====================
25. Feature css 
======================*/

.feature-area {
  position: relative;
  z-index: 1;
}

.feature-item {
  padding: 25px 20px;
  text-align: center;
  position: relative;
  border-radius: 15px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.feature-item:hover{
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-icon img {
  width: 70px;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-item h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}


@media all and (max-width: 1199px) {
  .feature-area {
    margin-top: -20px;
  }
}






/*====================
27. Step/process css 
======================*/

.process-single {
  position: relative;
}

.process-single .icon {
  height: 120px;
  width: 120px;
  line-height: 110px;
  display: inline-block;
  position: relative;
  background: var(--theme-color);
  border-radius: 50%;
  font-size: 65px;
  color: #fff;
  margin-bottom: 30px;
  z-index: 1;
}

.process-single .icon img{
  width: 70px;
}

.process-single .icon::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border: 3px solid var(--theme-color);
  border-radius: 50%;
}

.process-single .icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background:  var(--color2);
  transform: scale(0, 0);
  border-radius: 50%;
  transition: var(--transition);
  z-index: -1;
}

.process-single:hover .icon::after{
  transform: scale(1, 1);
}

.process-single span {
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 14px;
  background: var(--theme-color);
  border-radius: 15px;
  color: #fff;
  left: -5px;
  top: -31px;
  font-weight: 600;
}

.process-single h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.process-single::before {
  content: url(../img/shape/05.png);
  position: absolute;
  right: -70px;
  top: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-single::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-single::before {
    display: none;
  }
  
  section.section-padding.affects-your-cars ul.check-list {
    column-count: 1!important;
}
.info-card {
    display: grid;
}
}

.process-area .col-lg-3:last-child .process-single::before {
  display: none;
}



/*====================
28. Choose css 
======================*/

.choose-area{
  position: relative;
  background:  var(--color2);
}

.choose-item{
        position: relative;
    padding: 20px;
    height: 100%;
    text-align: center;
    border: 1px solid #d4d4d480;
    border-radius: var(--theme-radius);
}

section.pricing-area.bg.pick-up .choose-item{
  padding: 20px 20px;
  text-align: center;
    background: #fff;
    border-radius: var(--theme-radius);
}

section.pricing-area.bg.pick-up .choose-item-icon{

  margin: 0 auto 20px;
}

section.pricing-area.bg.pick-up .choose-item-icon img {
    /* filter: brightness(0) invert(1); */
    width: 45px!important;
    height: 45px;
    margin-bottom: 0;
}
.choose-count{
  position: absolute;
    right: 25px;
    top: 10px;
    font-size: 50px;
    font-weight: 800;
    -webkit-text-stroke: 1px #d4d4d4;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    opacity: 0.5;
    font-family: sans-serif;
}

.choose-item-icon img{
width: 70px !important;
    height: 71px;
    margin-bottom: 30px;
}

.choose-item-info h3{
  margin-bottom: 10px;
  font-size: 22px;
}
.main-navigation.fixed {
    position: fixed;
    top: 0;
    background: #fff;
    width: 100%;
    z-index: 9;
}

.fit-head.set-head {
    margin-top: 75px;
}

@media all and (max-width: 991px) {
  .choose-content-wrapper {
    margin-top: 40px;
  }
}



/*====================
29. Testimonial css 
======================*/

.testimonial-area {
  position: relative;
}

.testimonial-single {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--theme-radius);
  padding: 20px 20px 20px 20px;
  position: relative;

  box-shadow: 0 0 6px 0 #0002;
      min-height: 290px;
}

/*.testimonial-quote p {*/
/*  color:  var(--color2);*/
/*}*/

.testimonial-author-info {
    margin: 0px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-header .reviews-title img {
    max-width: 70px;
}

.testimonial-author-img {
    width: 45px;
    padding: 5px;
    border-radius: 50px;
    background: #f7f7f7;
    /* box-shadow: 0 0 6px 0 #0002; */
    border: 1px solid #d4d4d440;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid #d4d4d478;
    margin-top: 15px;
    padding-top: 15px;
        position: absolute;
    bottom: 20px;
    width: 88%;
}

.avatar.letter {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    user-select: none;
}

.avatar.letter::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}

/* Different colors for each testimonial */
.testimonial-slider .owl-item:nth-child(1) .avatar { background: #4CAF50; }
.testimonial-slider .owl-item:nth-child(2) .avatar { background: #FF9800; }
.testimonial-slider .owl-item:nth-child(3) .avatar { background: #2196F3; }
.testimonial-slider .owl-item:nth-child(4) .avatar { background: #9C27B0; }
.testimonial-slider .owl-item:nth-child(5) .avatar { background: #3F51B5; }
.testimonial-slider .owl-item:nth-child(6) .avatar { background: #F44336; }



.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color:  var(--color2);
}

.testimonial-author-info p {
  color: var(--color1);
  font-weight: 500;
  font-size: 13px;
}

.testimonial-quote-icon {
    position: absolute;
    bottom: 30px;
    right: 32px;

}

.service-details__content.inner_content .blog-content .table-responsive {
    border-radius: var(--theme-radius);
    overflow: hidden;
}

.service-details__content.inner_content .blog-content .table-responsive table {
    /* border-collapse: separate; */
    border-spacing: 0;
    border-bottom: 1px solid #d4d4d457;
}

.service-details__content.inner_content .blog-content .table-responsive table thead th {
    background-color: var(--color1);
    color: #fff;
}

.service-details__content.inner_content .blog-content .table-responsive table thead th:first-child {
    border-top-left-radius: var(--theme-radius);
}

.service-details__content.inner_content .blog-content .table-responsive table thead th:last-child {
    border-top-right-radius: var(--theme-radius);
}
span.testimonial-quote-icon img {
    max-width: 40px;
}
.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 6px;
  height: 6px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 15px;
}

.testimonial-rate {
  margin-top: 30px;
    width: 100px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;

}
    .review-header span {
    font-size:16px;
    font-weight:700
}



/*====================
30. Counter css 
======================*/

.counter-area {
  position: relative;
  background: var(--color2);
  z-index: 1;
}


.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  line-height: 110px;
  color: #fff;
  border: 5px solid #fff;
  background:  var(--color2);
  z-index: 1;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}



/*====================
31. Cta css 
======================*/

.cta-wrapper{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: -100px;
  padding: 40px;
  border-radius: 15px;
  z-index: 1;
background-attachment: fixed;
}
.cta-wrapper.mt-0 .site-title {
    color: #fff;
}

.cta-wrapper::before{
  content: "";
  position: absolute;
  background: var(--color1);
  border-radius: var(--theme-radius);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  opacity: .85;
  z-index: -1;
}

.cta-text h1{
  color: #fff;
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text p{
  color: #fff;
}

.cta-text p a{
  color: #fff;
}
.cta-text p a:hover{
 text-decoration:underline;
}

.cta-number{
  font-size: 32px;
  color: #fff !important;
  font-weight: 700;
}

.cta-number i{
  margin-right: 15px;
}

.cta-btn .theme-btn{
  background: #fff;
  color: var(--color1);
}

.cta-btn .theme-btn:hover{
  background: var(--color2);
  color: #fff;
}

.cta-divider{
  position: relative;
}

.cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: #fff;
  right: -80px;
  top: 0;
}

.cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
  top: 50%;
  transform: translateY(-50%);
right: -87px;
}



/*====================
32. Location css 
======================*/

.location-area{
  position: relative;
}

.location-item {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.location-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 15px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, .4);
}

.location-item img {
  border-radius: 15px;
  width: 100%;
  transition: all 0.5s;
}

.location-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.location-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.location-info h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.location-info span{
  display: inline-block;
  color: #fff;
  background: var(--theme-color);
  padding: 0px 10px;
  border-radius: 50px;
}

.location-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.location-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.location-slider .owl-dots .owl-dot.active span {
  background: var(--theme-color);
}


@media all and (max-width: 1399px) {
  .location-info h4 {
    font-size: 23px;
  }
  .location-more-info ul li{
    font-size: 15px;
  }
}

@media all and (max-width: 767px) {
  .location-item img {
    height: 400px;
  }
}



/*====================
33. Blog css 
======================*/

.blog-area{
  position: relative;
}

.blog-item{
  padding: 15px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: var(--theme-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
    min-height: 420px;
}

.blog-item-img{
  border-radius: var(--theme-radius);
  overflow: hidden;
      aspect-ratio: 173 / 96;
    background: #f7f7f7;
}

.blog-item-img img {
  border-radius: var(--theme-radius)
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.05);
} 

.blog-item-info {
  padding: 15px 10px 0 10px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 0;
  margin-top: -45px;
}


.blog-item-meta {
    position: relative;
}
li.author-list {
    position: absolute;
    top: -6px;
}
.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color:  var(--color2);
    text-align: center;
    border-radius: 3px;
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--color1);
}

.blog-item-meta a:hover {
  color: var(--color1);
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-title a:hover {
color:var(--color1);
text-decoration:underline;
}

.blog-item-info p {
    margin-bottom: 16px;
    line-height: 24px;
}

.blog-item-info .theme-btn {
  margin-top: 15px;
}

.blog-item-info h4 a {
  color:  var(--color2);
}

.blog-item-info h4 a:hover {
  color: var(--color1);
}




/*========================
34. Blog single css
==========================*/

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--color1);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--color1);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--color2);
}

.blockqoute {
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--color2);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color:  var(--color2);
}
.blog-item-meta ul li span.date {
     display: inline-block;
     padding: 13px 14px 11px;
     font-size: 22px;
     color: #fff;
     font-weight: 700;
     line-height: 1;
     text-align: center;
     border: 3px solid #fff;
     border-bottom: none;
     border-radius: 10px 10px 0px 0px;
     background-color: var(--color1);
     transition: all 500ms ease;
}
.blog-item-meta ul li span.year {
     display: block;
    background: var(--color2);
    color: #fff;
    position: relative;
    padding: 7.5px 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color2);
  padding: 6px 18px;
  border-radius: 10px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: #fff;
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 40px;
  color: var(--color1);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--color1);
  transition: var(--transition);
}

.author-social a:hover {
  color: #fff;
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color:  var(--color2);
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-single img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--color1);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--color1);
}

.blog-comments-content a:hover {
  color:  var(--color2);
}

.blog-comments-content h5 {
  color:  var(--color2);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: var(--theme-bg-light);
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}



@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info{
    margin-top: 25px;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-single img{
    margin: 0 auto 20px auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/*=======================
35. Widget sidebar css
=========================*/

.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 25px;
  color:  var(--color2);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--color1);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--color1);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--color1);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 8px;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--color1);
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--color1);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid var(--theme-color);
  color: var(--color1);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: #fff;
}

.widget .tag-list a {
  background: #fff;
  color:  var(--color2);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: #fff;
}



/*===================
36. Contact us css 
=====================*/

.contact-wrapper {
  background: #fff;
  border-radius: var(--theme-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.contact-img img{
  width: 100%;
  border-radius: 15px 50% 50% 15px;
}

.contact-form{
  padding: 20px 0;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color2);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: var(--theme-radius);
  box-shadow: none;
  transition: var(--transition);
}
label.error {
    display: none !important;
}
.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}


.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-top: 25px;
  border-radius: var(--theme-radius);
  background:#fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  var(--color2);
}

.contact-info p{
  color:  var(--color2);
  font-weight: 500;
  font-size: 16px;
}
.contact-info p a:hover {
    text-decoration: underline;
    color: #000;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled {
    display: flex;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled li.active {
    color: #fff;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled li a {
    color: #fff;
}

.site__brd ul.rofiex-breadcrumb.list-unstyled li i {
    color: #fff;
    font-size: 14px;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled li {
    padding-right: 5px;
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 20px;
    margin-bottom: 0;
  }
}




/*===================
37. Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  padding: 15px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img{
  border-radius: 15px;
  margin-top: -50px;
}

.team-content {
  padding: 10px 0 5px 0;
}

.team-bio h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
  font-size: 16px;
  font-weight: 500;
  color: var(--color1);
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color:  var(--theme-color);
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 20px;
  right: 0px;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
}

.team-item:hover .team-social {
  opacity: 1;
  right: 30px;
}

.team-social a {
  display: block;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 50px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
}

.team-social a:hover {
  background:  var(--color2);
  color: #fff;
}

.team-social h6 {
  margin-top: 28px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transform: rotate(-90deg);
}

.team-social h6::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: #fff;
  left: -50px;
  top: 7px;
}



/*===================
38. Pricing css 
=====================*/

.pricing-item{
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgb(6 22 58 / 10%);
  transition: all .9s ease-in-out;
  z-index: 1;
}

.pricing-item::before{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--theme-color);
  right: -40px;
  top: -40px;
  border-radius: 80px;
  transform: rotate(45deg);
  opacity: .1;
  transition: var(--transition);
  z-index: -1;
}

.pricing-item:hover{
  transform: translateY(-10px);
}

.pricing-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  font-size: 56px;
  color: #fff;
  background: var(--theme-color);
  position: relative;
  box-shadow: var(--box-shadow);
}

.pricing-icon::before{
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border: 2px dashed var(--theme-color);
  border-radius: 50%;
}

.pricing-header-content{
  margin: 30px 0 20px 0;
}

.pricing-header-content h4{
  margin-bottom: 10px;
}

.pricing-amount{
  color: var(--color1);
}

.pricing-feature ul{
  margin-bottom: 25px;
}

.pricing-feature ul li{
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before{
  content: "\f560";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  color: var(--color1);
  left: 0;
  top: 0;
}




/*====================
39. Car category css 
======================*/

.car-category{
  position: relative;
}

.category-item{
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: var(--theme-radius);
  box-shadow: 0 0 6px 0 #0002;
  transition: var(--transition);
  border:1px solid #fff;
  background-color:#fff;
}

.category-item:hover{
  border:1px solid var(--color1);
}

.category-img{
  width: 100px;
  margin: 0 auto;
}

.category-item h5{
  transition: var(--transition);
}

.category-item:hover h5{
  color: var(--color1);
}




/*====================
40. Car dealer css 
======================*/

.car-dealer{
  position: relative;
}

.dealer-item{
    padding: 10px;
  border-radius: var(--theme-radius);
  background: #fff;
  display: flex;
  align-items: center;
}
 section.car-dealer.trusted .dealer-item .dealer-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}
section.car-dealer.trusted {
    background: var(--color2);
}

section.car-dealer.trusted .dealer-item .dealer-content {
    padding: 0 0px 0px 8px;
}

section.car-dealer.trusted .dealer-item .dealer-content p {
    font-size: 14px;
    line-height: 19px;
}
section.car-dealer.trusted .dealer-item img {
    max-width: 75px;
    max-height: 75px;
    display:flex;
    margin:auto;
}

.dealer-img{
  position: relative;
  background: rgba(239, 29, 38, .05);
  border-radius: var(--theme-radius);
  padding: 6px 6px;
  display:flex;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dealer-listing{
  position: absolute;
  background: var(--theme-color);
  color: #fff;
  box-shadow: var(--box-shadow2);
  left: -20px;
  top: 8px;
  border-radius: var(--theme-radius);
  padding: 2px 10px;
  font-weight: 500;
  z-index: 1;
}

.dealer-content{
  padding: 15px 10px 5px 10px;
}

.dealer-content h4{
  font-size: 20px;
}

.dealer-content h4 a:hover{
  color: var(--color1);
}

.dealer-content ul{
  margin-top: 10px;
}

.dealer-content ul li{
  margin-top: 5px;
}

.dealer-content ul li i{
  color: var(--color1);
  margin-right: 5px;
}

.dealer-content ul li a{
  color: var(--body-text-color);
}

.dealer-content ul li a:hover{
  color: var(--color1);
}


/* ========================
41. Dealer single css 
===========================*/

.dealer-single{
  position: relative;
}

.dealer-banner{
  position: relative;
}

.dealer-banner-img img{
  border-radius: 20px;
}

.dealer-banner-content{
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 18px;
  background: #fff;
  padding: 5px 30px 5px 5px;
  border-radius: 50px;
  box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
}

.dealer-banner-logo{
  width: 70px;
}

.dealer-banner-logo img{
  border-radius: 50%;
}

.dealer-banner-info span{
  font-weight: 500;
} 

.dealer-single .car-single-author{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


@media all and (max-width: 767px) {
  .dealer-banner-img img{
    height: 180px;
  }

  .dealer-banner-content{
    bottom: -30px;
  }

}




/*====================
42. Car brand css 
======================*/

.car-brand{
  position: relative;
}
section.car-brand.our_homee_brands.py-80 {
    background: #fff;
}
section.pricing-area.py-80.home-process {
    background: #fff;
}
.brand-item{
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  padding: 8px 10px;
  border-radius: var(--theme-radius);
  background: #fff;
box-shadow:var(--box-shadow);
font-size: 18px;
    font-weight: 500;
}



.brand-img{
  margin: 0 auto;
}

.brand-item h5{
  margin-bottom: 20px;
  transition: var(--transition);
}

.brand-item:hover h5{
  color: var(--color1);
}




/*====================
43. Calculator css 
======================*/

.calculator-wrapper{
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: var(--box-shadow);
}

.calculator-wrapper h4{
  margin-bottom: 25px;
}

.calculator-form .form-group{
  margin-bottom: 30px;
}

.calculator-form .form-control{
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: none;
}

.calculator-form .form-control:focus{
  border-color: var(--theme-color);
}

.calculator-img img{
  border-radius: 20px;
}

@media all and (max-width: 991px) {
  .calculator-form {
    margin-bottom: 35px;
  }
}




/*===================
44. Car css 
=====================*/

.car-area{
  position: relative;
}

.car-item{
  background: #fff;
  border-radius: var(--theme-radius);
  padding: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height:100%;
      position: relative;
}

.car-content{
  padding: 10px 10px 45px 10px;
}

section.car-area.junk-car-services.bg.py-80.inr_pge_srvc .car-content{
  padding: 10px 10px 0px 10px;
}
section.car-area.junk-car-services.bg.py-80.inr_pge_srvc .car-item {
    height: auto;
margin-bottom: 0;
}
.car-img{
  position: relative;
  overflow: hidden;
  border-radius: var(--theme-radius);
}

section.car-area.junk-car-services.bg.py-80.inr_pge_srvc .car-item .car-img {
    aspect-ratio: 256 / 123;
    background: #f7f7f7;
}

.car-img img{
  border-radius: var(--theme-radius);
}

.car-item:hover .car-img img{
  transform: scale(1.05);
}

.car-status{
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--theme-color);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  z-index: 1;
}

.car-status.status-1{
  background: var(--theme-color);
}

.car-status.status-2{
  background: var(--color-green);
}

.car-btns{
  position: absolute;
  right: -10px;
  top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.car-item:hover .car-btns{
  right: 10px;
  opacity: 1;
  visibility: visible;
}

.car-btns a{
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  margin-bottom: 8px;
  display: block;
}

.car-btns a:hover{
  background: var(--color2);
  color: #fff;
}

.car-top .title{
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 30px;
}

section.car-area.junk-car-services.bg.py-80.inr_pge_srvc .car-top .title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
}
section.car-area.junk-car-services.bg.py-80.inr_pge_srvc {
    background: #fff!important;
}
section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 20px;
}

section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 11px 12px;
    text-align: start;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    border-radius: var(--theme-radius);
}

section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 li a img {
    font-size: 14px;
    width: 35px;
    height: auto;
    margin-right: 5px;
}
section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 li a {
    color: #000;
    width: 100%;
}
section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 li a:hover {
    text-decoration:underline;
}
.car-top .title a:hover{
  color: var(--color1);
}

.car-rate{
  font-size: 14px;
}

.car-rate i{
  color: var(--color-yellow);
}

.car-rate span{
  margin-left: 2px;
}

.car-list{
  margin-top: 12px;
}

.car-list li{
  display: grid;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}

.car-list i{
  color: var(--color1);
  margin-right: 6px;
}

.car-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.car-price{
  font-size: 19px;
  font-weight: 600;
  color: var(--color1);
}

.car-item .theme-btn{
      padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color1);
    font-weight: 700;
    position: absolute;
    bottom: 13px;
}

/* car grid & list */
.car-area.list .car-item{
  display: flex;
  align-items: center;
  gap: 10px;
}

.car-area.list .car-img{
  width: 360px;
}

.car-area.list .car-content{
  flex: 1;
}

.car-area.list .car-content p{
  font-size: 15px;
}

@media all and (max-width: 991px) {
  .car-area.list .car-item{
    flex-direction: column;
  }

  .car-area.list .car-img{
    width: 100%;
  }
}



/* car sidebar */
.car-sidebar{
  margin-bottom: 30px;
}

.car-widget{
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
}

.car-widget-title{
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 20px;
  position: relative;
  color:  var(--color2);
}

.car-widget-title::before {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.car-widget-title::after {
  position: absolute;
  content: '';
  width: 5px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 35px;
}

.car-search-form .form-group{
  position: relative;
}

.car-search-form .form-control{
  padding: 12px 50px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}

.car-search-form .form-control:focus{
  border-color: var(--theme-color);
}

.car-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--color1);
}

.car-widget ul li{
  margin-bottom: 10px;
}

.car-widget .form-check-input{
  box-shadow: none;
  margin-top: 7px;
}

.car-widget .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.car-widget .form-check-input:focus{
  border-color: var(--theme-color);
}

.car-widget .form-check-label{
  color: var(--color2);
}


/* car sort */

.car-sort{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin-bottom: 25px;
  padding: 10px 10px 10px 15px;
  border-radius: 10px;
}

.car-sort-list-grid a{
  width: 35px;
  height: 35px;
  line-height: 34px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--border-info-color);
  color: var(--color2);
}

.car-sort-list-grid a.active{
  border-color: var(--theme-color);
  color: var(--color1);
}

.car-sort .nice-select {
  height: 46px;
  line-height: 45px;
  border-radius: 8px;
  padding-left: 20px;
}

@media (max-width: 767px){
  .car-sort {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }

  .car-sort .nice-select{
    width: 250px;
  }

}



/*====================
45. Car single css 
======================*/

.car-single-wrapper{
  position: relative;
}

.single-widget iframe {
    margin-top: 20px;
    border-radius: var(--theme-radius);
}
    .car-single-widget .single-widget {
  background: #fff;
  border-radius: var(--theme-radius);
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #d4d4d463;
}
.car-single-widget .single-widget h2 {
    font-size: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.car-single-widget .single-widget h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color1);
    border-radius: 10px;
    z-index: 2;
}
.sidebar-search-box.info p {
    margin: 15px 0;
}
.sidebar-search-box.info img {
    border-radius: var(--theme-radius);
}
.car-single-widget .single-widget button.theme-btn {
    margin: auto;
    display: flex;
        align-items: center;
}
.car-single-top{
  margin-bottom: 25px;
}

.car-single-title{
  margin-top: 10px;
  margin-bottom: 8px;
}

.car-single-top .car-status{
  position: unset;
  font-size: 14px;
  padding: 5px 15px;
}

.car-single-meta li{
  display: inline-block;
  margin-right: 15px;
}

.car-single-meta li i{
  color: var(--color1);
}

.car-single-slider{
  position: relative;
}

.car-single-slider img{
  border-radius: 10px;
}

.car-single-slider .flex-control-thumbs img{
  padding: 0;
}

.car-single-slider .flex-control-nav{
  margin-top: 20px;
}

.car-single-slider .flexslider-thumbnails .flex-direction-nav a{
  margin-top: -80px;
  border-radius: 50%;
  line-height: 40px;
}

.car-single-slider .flexslider-thumbnails .flex-direction-nav .flex-prev{
  left: 20px;
}

.car-single-slider .flexslider-thumbnails .flex-direction-nav .flex-next{
  right: 20px;
}

.car-key-item{
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.car-key-icon{
  margin-top: 5.5px;
}

.car-key-icon i{
  font-size: 24px;
  line-height: 1;
  color: var(--color1);
}

.car-single-list li{
  margin: 8px 0;
}

.car-single-list li i{
  color: var(--color1);
  margin-right: 5px;
}

.car-single-map iframe{
  height: 300px;
  border-radius: 10px;
}

.car-single-price{
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 15px;
}

.car-single-author{
  display: flex;
  align-items: center;
  gap: 15px;
}

.car-single-author img{
  border-radius: 50%;
  width: 100px;
}

.car-single-author-content span{
  color: var(--color1);
  font-weight: 500;
}

.car-single-author-social{
  margin-top: 7px;
  padding-top: 6px;
  border-top: 1px solid var(--border-info-color);
}

.car-single-author-social a{
  margin-right: 9px;
  font-size: 17px;
}

.car-single-author-social a:hover{
  color: var(--color1);
}

.car-single-form .form-group{
  margin-top: 20px;
}

.car-single-form .form-control{
  padding: 14px 20px;
  border-radius: var(--theme-radius);
  box-shadow: none;
}


.car-single-form .form-control:focus{
  border-color: var(--theme-color);
}



/*====================
46. Compare css 
======================*/

.compare-table {
  background: var(--theme-bg-light);
  white-space: nowrap;
}

.compare-table th{
  vertical-align: middle;
}

.compare-table tbody tr th,
.compare-table tbody tr td {
  padding: 15px;
}

.compare-img{
  border-radius: 10px;
}

.compare-table .badge{
  text-transform: uppercase;
  padding: 8px 12px;
  letter-spacing: 1px;
}

.compare-table .badge.new{
  background: var(--color-green);
}

.compare-table .badge.used{
  background: var(--theme-color);
}

.compare-price{
  color: var(--color1);
  font-weight: 600;
}

.compare-rate i{
  color: var(--color-yellow);
}

.compare-btn{
  padding: 8px 15px;
}



/*====================
47. Shop css 
======================*/

/* shop sidebar */
.shop-sidebar {
  margin-bottom: 30px;
}

.shop-widget {
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 30px;
}

.shop-widget-title {
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 20px;
  position: relative;
  color: var(--color2);
}

.shop-widget-title::before {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.shop-widget-title::after {
  position: absolute;
  content: '';
  width: 5px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 35px;
}

.shop-search-form .form-group {
  position: relative;
}

.shop-search-form .form-control {
  padding: 12px 45px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
}

.shop-search-form .form-control:focus {
  border-color: var(--theme-color);
}

.shop-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--color1);
}

.shop-widget ul li {
  margin-bottom: 10px;
}

.shop-widget .form-check-input {
  box-shadow: none;
  margin-top: 7px;
}

.shop-widget .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.shop-widget .form-check-label {
  color: var(--color2);
}

.shop-tags a {
  margin: 10px 6px 0 0;
  padding: 6px 15px;
  border-radius: 10px;
  background: var(--theme-bg-light);
  color: var(--color2);
  transition: var(--transition);
}

.shop-tags a:hover {
  background: var(--theme-color);
  color: #fff;
}

.widget-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 0;
  border-radius: 15px;
  z-index: 1;
}

.widget-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay-color);
  border-radius: 15px;
  opacity: .7;
  z-index: -1;
}

.banner-content {
  padding: 120px 20px 100px 20px;
}

.banner-content h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.banner-content h3 span {
  color: var(--color1);
}

.banner-content .theme-btn {
  margin-top: 30px;
}

.banner-content .theme-btn:hover{
  color: var(--color2);
}

.banner-content .theme-btn::before{
  background: #fff;
}


/* shop sort */

.shop-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.shop-sort h5 {
  color: var(--color2);
}

.shop-sort-box {
  width: 220px;
}

@media all and (max-width: 767px) {
  .shop-sort{
    gap: 20px;
    flex-direction: column;
  }
}


/* shop item */

.shop-item {
  margin-bottom: 25px;
  background: #fff;
  border-radius: 15px;
}

.shop-item-info {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}

.shop-item-title {
  font-size: 20px;
  color: var(--color2);
  transition: var(--transition);
}

.shop-item-title:hover {
  color: var(--color1);
}

.shop-item-price {
  font-size: 18px;
  color: var(--color1);
  font-weight: 700;
  margin-top: 5px;
}

.shop-item-price del {
  color: #7A8A9E;
  margin-right: 10px;
  font-weight: 500;
}

.shop-item-img {
  text-align: center;
  position: relative;
  z-index: 1;
}

.shop-item-img img {
  border-radius: 10px;
}

.shop-item-img::before {
  content: "";
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  position: absolute;
  border-radius: 10px;
  background: var(--theme-color);
  transform: scale(0.9);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition2);
  z-index: 2;
}

.shop-item:hover .shop-item-img::before {
  transform: scale(1);
  visibility: visible;
  opacity: 0.5;
}

.shop-item-sale {
  position: absolute;
  padding: 2px 14px;
  border-radius: 10px;
  text-align: center;
  right: 10px;
  top: 10px;
  font-size: 16px;
  color: #fff;
  background: var(--theme-color);
  z-index: 2;
}

.shop-item-meta {
  position: absolute;
  top: 40px;
  left: 0px;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: var(--transition);
}

.shop-item-meta a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 43px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  color: var(--color1);
  margin-bottom: 15px;
  font-size: 18px;
}

.shop-item-meta a:hover {
  background: var(--theme-color);
  color: #fff;
}

.shop-item:hover .shop-item-meta {
  left: 20px;
  visibility: visible;
  opacity: 1;
}

.shop-cart-btn {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition2);
}

.shop-item-btn {
  background: var(--theme-color);
  color: #fff;
  padding: 10px 25px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .5s ease-in-out;
}

.shop-item-btn:hover {
  background: #fff;
  color: var(--color1);
}

.shop-item-btn i {
  margin-right: 5px;
}

.shop-item:hover .shop-cart-btn {
  bottom: 60px;
  visibility: visible;
  opacity: 1;
}

.shop-item-rate {
width: 90px;
max-width: 90px;
}


/* shop cart */

.shop-cart thead tr {
  background: var(--theme-color);
  color: #fff;
}

.shop-cart thead tr th {
  text-transform: uppercase;
  font-weight: 500;
}

.shop-cart thead tr th,
.shop-cart thead tr td {
  white-space: nowrap;
}

.cart-img {
  width: 80px;
}

.cart-img img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-info-color);
}

.shop-cart tr td {
  color: var(--color2);
  vertical-align: middle;
  border-bottom: 1px solid var(--border-info-color);
  border-top: none;
  position: relative;
  padding: 20px 10px;
  font-size: 16px;
}

.cart-qty {
  width: 150px;
}

.cart-qty button {
  color: var(--color1);
  border: 0;
  border-radius: 8px;
  padding: 4px 13px;
  background: var(--theme-bg-light);
}

.cart-qty button i{
  font-weight: 500;
}

.cart-qty input {
  width: 50px;
  padding: 4px 13px;
  border-radius: 8px;
  border: none;
  background: var(--theme-bg-light);
  color: var(--color1);
  text-align: center;
}

.cart-remove:hover {
  color: var(--color1);
}

.cart-footer {
  margin-top: 40px;
}

.cart-coupon{
  margin-bottom: 25px;
}

.cart-coupon .form-group{
  position: relative;
}

.cart-coupon .form-control {
  box-shadow: none;
  padding: 15px 110px 15px 14px;
  border-radius: 10px;
}

.cart-coupon .form-control:focus {
  border-color: var(--theme-color);
}

.coupon-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 8px 14px;
  font-weight: 500;
  color: #fff;
  border: none;
  background: var(--theme-color);
  border-radius: 10px;
  transition: var(--transition);
}

.coupon-btn:hover {
  background: var(--color2);
}

.cart-summary {
  float: right;
}

.cart-summary li {
  margin-bottom: 10px;
  width: 200px;
}

.cart-summary li span {
  float: right;
}

.cart-summary li strong {
  color: var(--color2);
}

.cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--border-info-color);
}

.cart-total span {
  font-weight: bold;
  color: var(--color1);
}



/* shop checkout */

.checkout-widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.checkout-widget-title {
  margin-bottom: 20px;
  font-size: 25px;
}

.checkout-form .form-group {
  margin-bottom: 20px;
}

.checkout-form .form-group label {
  margin-bottom: 5px;
  color: var(--color2);
}

.checkout-form .form-group .form-control {
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: none;
}

.checkout-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.checkout.cart-summary {
  float: none;
  background: var(--theme-bg-light);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.checkout.cart-summary h4 {
  font-size: 25px;
}

.checkout.cart-summary li {
  width: 100%;
}


/* shop single */

.shop-item-single .flexslider-thumbnails img {
  width: 100%;
  border-radius: 10px;
  background: #FEF6EF;
}

.shop-item-single .flex-control-thumbs {
  margin-top: 10px;
}

.shop-item-single .flex-control-thumbs img {
  padding: 0;
  border: none;
}

.single-item-title {
  font-size: 28px;
}

.single-item-rating {
  margin: 10px 0;
}

.single-item-rating i {
  color: var(--color1);
}

.rating-count {
  margin-left: 10px;
  display: inline-block;
}

.single-item-price {
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-item-price del {
  margin-right: 10px;
}

.single-item-price span {
  color: var(--color1);
}

.single-item-content h5 {
  margin-bottom: 15px;
}

.single-item-content span {
  font-weight: normal;
  margin-left: 20px;
}

.single-item-action {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  margin-bottom: 20px;
}

.single-item-action .theme-btn {
  padding: 10px 15px;
  margin-right: 20px;
}

.single-item-action .theme-btn span {
  margin-right: 5px;
}

.single-item-btn {
  width: 45px;
  height: 45px;
  line-height: 43px;
  margin-right: 5px;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--theme-color);
  color: var(--color1);
  transition: all .5s ease-in-out;
}

.single-item-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

.single-item-share {
  margin-top: 30px;
}

.single-item-share span {
  font-weight: bold;
  text-transform: uppercase;
  color: #30180D;
  display: inline-block;
}

.single-item-share a {
  width: 38px;
  height: 38px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--theme-color);
  color: var(--color1);
  margin-left: 5px;
}

.single-item-share a:hover {
  background: var(--theme-color);
  color: #fff;
}

.single-item-details {
  margin-top: 30px;
}

.single-item-desc {
  padding-top: 40px;
}

.single-additional-info {
  padding-top: 40px;
}

.single-item-review {
  padding-top: 40px;
}

.review-rating i {
  color: var(--color1);
}

.single-item-details .nav-tabs {
  border-width: 2px;
}

.single-item-details .nav-tabs .nav-link {
  color: #30180D;
  font-size: 20px;
  padding: 15px 25px;
  font-weight: 500;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
}

.single-item-details .nav-tabs .nav-link:hover,
.single-item-details .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--theme-color);
  color: var(--color1);
}

.related-item {
  margin-top: 100px;
}

.related-item .site-title {
  font-size: 30px;
}

@media all and (max-width: 767px) {
  .single-item-action {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .single-item-action .theme-btn {
    margin-left: 8px;
  }

}



/*===================
48. Price range css 
=====================*/

.price-range.ui-widget-content {
  border: none;
  background: #E8E8E8;
  height: 5px;
  border-radius: 3px;
}

.price-range .ui-state-default,
.price-range .ui-widget-content .ui-state-default {
  top: -7px;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0px;
  background: var(--theme-color);
}

.price-range .ui-state-focus {
  outline: none;
}

.price-range .ui-widget-header {
  background: var(--theme-color);
  border-radius: 0 !important;
}

.price-range-input input {
  border: none;
  margin-bottom: 20px;
  color: var(--color1);
  background: transparent;
  font-weight: 700;
  outline: none;
}



/*====================
49. Download css 
======================*/

.download-area{
  position: relative;
}

.download-wrapper{
  position: relative;
  background: var(--theme-bg-light);
  border-radius: var(--theme-radius);
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.download-wrapper::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .05;
  z-index: -1;
}

.download-btn{
  display: flex;
  gap: 15px;
}

.download-btn a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  background: var(--theme-color);
  color: #fff;
  border-radius: var(--theme-radius);
  box-shadow: var(--box-shadow);
}

.download-btn a:first-child{
  background: var(--theme-color);
}

.download-btn a:last-child{
  background: var(--color2);
}

.download-btn a:hover{
  background: var(--color2);
}

.download-btn a:last-child:hover{
  background: var(--theme-color);
}

.download-btn a i{
  font-size: 40px;
}

.download-btn-content{
  display: flex;
  flex-direction: column;
}

.download-btn-content span{
  font-weight: 500;
  font-size: 14px;
}

.download-img{
  position: absolute;
  right: -50px;
  bottom: -120px;
  width: 62%;
}

@media all and (max-width: 991px) {
  .download-img{
    position: relative;
    bottom: -80px;
    right: 30px;
    width: 150%;
  }
}

@media all and (max-width: 767px) {
  .download-btn {
    flex-direction: column;
  }

  .download-btn a{
    max-width: 180px;
  }
}




/*====================
50. Faq css 
======================*/

.faq-area .accordion-item {
  border: none;
  margin-bottom: 12px;
  background: #fff;
  border-radius: var(--theme-radius)!important;
  box-shadow: var(--box-shadow);
}

.faq-img img{
  border-radius: 12px;
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 12px;
  background: var(--theme-color);
  text-align: center;
  color: #fff;
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--color1);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color:  var(--color2);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--color1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mobile-icon button.peddle-trigger-button {
    background: transparent !important;
    padding: 0 !important;
}

.nav-right .nav-right-btn a.btn_only_dsktp {
        font-size: 15px;
    color: #fff;
    padding: 9px 10px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: var(--theme-radius);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--color1);
    box-shadow: var(--box-shadow);
    z-index: 1;
    border: 1px solid var(--color1);
}

.nav-right .nav-right-btn a.btn_only_dsktp:hover  {
    background: var(--color2);
    border: 1px solid var(--color2);
}

.btn_only_mbl {
    background: var(--color2);
    padding: 12px 14px;
    border-radius: var(--theme-radius);
}
.btn_only_dsktp button.peddle-trigger-button {
    background: none;
    padding: 0;
}
.btn_only_dsktp button.peddle-trigger-button:hover {
color:#fff;
}
.nav-right .nav-right-btn a.btn_only_dsktp:hover button.peddle-trigger-button {
    color: #000;
}















@media all and (max-width: 991px) {
  .faq-right {
    margin-bottom: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}



/*====================
51. Breadcrumb css
======================*/

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--hero-overlay-color);
  opacity: 0.8;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--color1);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--color1);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 200px;
  }
}





/*====================
52. Pagination css 
======================*/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  background:  var(--color2);
  color: #fff;
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: #fff;
}


/* ===================
RTL css
====================== */

body.rtl-mode {
  direction: rtl;
}

body.rtl-mode .item-area {
  direction: ltr;
}

body.rtl-mode .price-wrapper {
  direction: rtl;
}

@media (min-width: 992px) {
  body.rtl-mode .navbar-brand {
    margin-left: 3rem;
  }

  body.rtl-mode .navbar .nav-item .nav-link {
    margin-left: 3rem;
    margin-right: 0;
  }
}




/*====================
53. Auth css 
======================*/

.login-form {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.login-form .login-header {
  text-align: center;
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--color1);
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: var(--color1);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color:  var(--color2);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color:  var(--color2);
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.login-form .form-check-input {
  box-shadow: none;
  border-radius: 2;
}

.login-form .forgot-pass {
  color: var(--color1);
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color:  var(--color2);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn::before{
  width: 420px;
  height: 420px;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--color1);
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: var(--color1);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.social-login {
  border-top: 1px solid #F1F1F1;
  margin-top: 15px;
}

.social-login p {
  margin: 10px 0;
}

.social-login-list {
  text-align: center;
}

.social-login-list a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
}

.social-login-list a i {
  color: #fff;
}

.social-login-list a:hover {
  background:  var(--color2);
}


@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}




/*====================
54. User profile css 
======================*/

.nav-right-account img {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid var(--theme-color);
  cursor: pointer;
}

.nav-right-account .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.nav-right-account .dropdown-menu li a i {
  margin-right: 5px;
}

.nav-right-account .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
}

.nav-right-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--color1);
  padding-left: 25px;
}

.mobile-menu-right {
  gap: 20px;
}

.mobile-menu-right .nav-right-account img {
  width: 35px;
  padding: 0;
  border: none;
}

.user-profile-sidebar {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.user-profile-sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
}

.user-profile-img img {
  border-radius: 50%;
}

.profile-img-file {
  display: none;
}

.user-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: var(--theme-color);
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.user-profile-sidebar-list li {
  margin: 5px 0;
}

.user-profile-sidebar-list li a {
  color: var(--color2);
  padding: 6px 6px 6px 15px;
  display: block;
  font-weight: 500;
  transition: var(--transition);
}

.user-profile-sidebar-list li a:hover {
  padding-left: 20px;
}

.user-profile-sidebar-list li a i {
  margin-right: 5px;
  color: var(--color1);
}

.user-profile-sidebar-list .active i {
  color: #fff;
}

.user-profile-sidebar-list .active {
  background: var(--theme-color);
  color: #fff;
  border-radius: 8px;
}

.user-profile-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.user-profile-card-title {
  color: var(--color2);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-profile-card .text-success {
  color: var(--theme-color) !important;
}

.user-profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-profile-card-header .user-profile-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.user-profile-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-search .form-group {
  position: relative;
}

.user-profile-search .form-control {
  padding: 10px 12px 10px 35px;
  box-shadow: none;
  border-radius: 10px;
}

.user-profile-search .form-control:focus {
  border-color: var(--theme-color);
}

.user-profile-search i {
  position: absolute;
  left: 12px;
  top: 15px;
}

.user-profile-card-header .theme-btn {
  padding: 8px 15px;
}

.profile-info-list li {
  margin: 12px 0;
  font-weight: 500;
}

.profile-info-list li span {
  float: right;
  font-weight: normal;
}

.user-profile-form .form-group {
  margin-bottom: 20px;
}

.user-profile-form .form-group label {
  color: var(--color2);
  margin-bottom: 5px;
}

.user-profile-form .form-control {
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: none;
  border-color: #E8E8E8;
}

.user-profile-form .form-control:focus {
  border-color: var(--theme-color);
}

.user-profile-form .theme-btn {
  width: unset;
}

.user-profile .badge-success{
  background: #DCFCE7;
  color: #22C79C;
}

.user-profile .badge-info{
  background: #F3E8FF;
  color: #A855F7;
}

.user-profile .badge-primary{
  background: #DBF7FD;
  color: #0DCAF0;
}

.user-profile .badge-danger{
  background: #FEE2E2;
  color: #EF4444;
}



/* dashboard */
.dashboard-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.dashboard-widget-info span {
  font-weight: 500;
}

.dashboard-widget-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-widget-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50px;
}

.dashboard-widget-color-1 {
  background: rgba(98, 89, 202, 0.15);
  color: #6259CA;
}

.dashboard-widget-color-1 h1 {
  color: #6259CA;
}

.dashboard-widget-color-1 .dashboard-widget-icon {
  background: #6259CA;
  color: #fff;
}

.dashboard-widget-color-2 {
  background: rgba(14, 198, 198, .15);
  color: #29BF6C;
}

.dashboard-widget-color-2 h1 {
  color: #29BF6C;
}

.dashboard-widget-color-2 .dashboard-widget-icon {
  background: #29BF6C;
  color: #fff;
}

.dashboard-widget-color-3 {
  background: rgba(239, 29, 38, 0.15);
  color: #EF1D26;
}

.dashboard-widget-color-3 h1 {
  color: #EF1D26;
}

.dashboard-widget-color-3 .dashboard-widget-icon {
  background: #EF1D26;
  color: #fff;
}

.table-list-info a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-list-info h6 {
  transition: all .5s ease-in-out;
}

.table-list-info p{
  color: var(--color2);
}

.table-list-info:hover h6 {
  color: var(--color1);
}

.table-list-info span{
  color: var(--color2);
}

.table-list-info img {
  width: 80px;
  border-radius: 8px;
}

.user-profile-card .table>:not(caption)>*>* {
  vertical-align: middle;
  padding: 0.8rem 0.8rem;
}


/* profile store */
.profile-store .store-file{
  display: none;
}

.profile-store .store-logo-preview{
  margin-bottom: 30px;
}

.profile-store .store-logo-preview img{
  width: 100px;
  border-radius: 50px;
}

.profile-store .store-banner-preview{
  margin-top: 50px;
  margin-bottom: 30px;
}

.profile-store .store-banner-preview img{
  border-radius: 12px;
}


/* add listing */
.add-listing-form .form-group {
  margin-top: 15px;
}

.add-listing-form .form-group label {
  margin-bottom: 5px;
  color: var(--color2);
}

.add-listing-form .form-control {
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: none;
  color: #757F95;
  border-color: #E8E8E8;
}

.add-listing-form .form-control:focus{
  border-color: var(--theme-color);
}

.add-listing-form .list-img-upload {
  width: 100%;
  height: 140px;
  border: 2px dashed var(--border-info-color);
  border-radius: 10px;
  cursor: pointer;
}

.add-listing-form .list-img-file {
  display: none;
}

.add-listing-form .list-img-upload span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.add-listing-form .list-img-upload span i {
  margin-right: 5px;
}

.add-listing-form .form-check {
  margin-bottom: 15px;
}

.add-listing-form .form-check-input {
  margin-top: 6.5px;
  box-shadow: none;
}

.add-listing-form .form-check-input:focus {
  border-color: var(--theme-color);
}

.add-listing-form .form-check label {
  color: var(--color2);
}


/* profile favorite */
.profile-favorite .car-item {
  box-shadow: none;
  border: 2px solid var(--border-info-color);
}


/* profile setting */
.profile-setting .form-check{
  margin-bottom: 10px;
}

.profile-setting .form-check-input{
  margin-top: 6.5px;
  box-shadow: none;
}


/* profile message */
.profile-message-wrapper {
  display: flex;
}

.profile-message-inbox {
  max-width: 340px;
  border: 1px solid #EDF1F9;
  border-radius: 10px;
}

.profile-message-inbox {
  overflow: hidden;
}

.message-content {
  padding-left: 30px;
  position: relative;
  overflow: hidden;
}

.message-content-info {
  max-height: 750px;
  overflow-y: scroll;
  margin-right: -50px;
  padding-right: 50px;
}

.profile-message-inbox,
.message-content {
  flex: 1;
}

.profile-message-inbox ul {
  max-height: 950px;
  overflow-y: scroll;
  width: 357px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-message-inbox ul li.message-active {
  border-left: 3px solid #29BF6C;
}

.profile-message-inbox ul li {
  border-bottom: 1px solid #EDF1F9;
  transition: .2s;
  list-style: none;
}

.profile-message-inbox ul li:last-child {
  border-bottom: none;
}

.message-by-content h5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.profile-message-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.profile-message-inbox .message-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.message-avatar img {
  width: 50px;
  height: 50px;
}

.profile-message-inbox .message-by {
  margin-left: 50px;
}

.message-by-content h5 i {
  background: #F98F14;
  padding: 3px 8px;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
}

.message-by-content span {
  font-size: 13px;
  position: absolute;
  top: 25.5px;
  right: 25px;
  float: right;
  color: #888888;
}

.profile-message-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #6B747D;
  line-height: 27px;
}

.message-item {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.message-item .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.message-item .message-avatar img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}

.message-item .message-description {
  margin-left: 70px;
  background: #F4F5F7;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item .message-description::before {
  position: absolute;
  top: 0px;
  left: -9px;
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 31px;
  color: #F4F5F7;
}

.message-item .message-description p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 27px;
}

.message-item.me .message-avatar {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.message-item.me .message-description {
  color: #29BF6C;
  background-color: rgba(9, 195, 152, 0.1);
  margin-left: 0;
  margin-right: 70px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item.me .message-description::before {
  content: "\f0da";
  left: auto;
  right: -11px;
  color: #E6F9F4;
}

.message-reply {
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 15px;
}

.message-reply .form-control {
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 10px;
}

.message-reply .form-control:focus {
  border-color: #29BF6C;
}

.message-reply .theme-btn {
  margin-top: 15px;
}

.message-status {
  width: 12px;
  height: 12px;
  background: #252629;
  display: flex;
  border-radius: 50%;
  border: 3px solid #ffffff;
  position: absolute;
  right: -5px;
  top: 50%;
}

.message-status.online {
  background: #29BF6C;
}

.message-status.offline {
  background: #DD4B39;
}

.message-status.busy {
  background: #F6B500;
}

.profile-message .header-account:hover{
  cursor: pointer;
}

.profile-message .header-account img {
  width: 45px;
  border-radius: 50%;
}

.profile-message .header-account .dropdown-menu{
  border: none;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.profile-message .header-account .dropdown-item:hover{
  background: transparent;
  color: #EF1D26;
  padding-left: 20px;
}



@media all and (max-width: 991px) {
  .message-by-content span {
    right: 65px;
  }

  .message-reply {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .table-listing-info a {
    display: block;
  }

  .table-listing-info h6 {
    margin-top: 10px;
  }

  .user-profile-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .user-profile-card-header-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .profile-message .profile-message-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .profile-message .user-profile-card-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .profile-message .message-content {
    padding-left: 0;
    padding-bottom: 200px;
  }

  .message-reply {
    left: 0;
  }

}



/*====================
55. Coming soon css 
======================*/

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 15px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 12px;
  background: var(--theme-color);
  display: inline-block;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: #fff;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #fff;
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: var(--theme-color);
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.countdown-single h2 {
  color: #fff;
}

.countdown-single h5 {
  color: #fff;
}




/*====================
56. Error css 
======================*/

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--color1);
}

.error-wrapper h1 span {
  color:  var(--color2);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}




/*====================
57. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}




/*====================
58. Footer css 
======================*/

.footer-area {
  background: var(--color2);
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 250px;
  margin-bottom: 30px;
    filter: brightness(0) invert(1);
}
.footer-widget-box.list .footer-newsletter ul.footer-contact p.title {
    margin-bottom: -5px;
}
.copyright {
  position: relative;
  padding: 20px 0;
  background: var(--color2);
  z-index: 1;
  border-top:1px solid #ffffff21;
}

.copyright::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color1);
  width: 50%;
  height: 100%;
  clip-path: polygon(10% 1%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color:#fff;
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--color1);
}

.copyright .copyright-text {
  color: #fff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #fff;
  font-weight: 500;
}
.copyright p.copyright-text a {
    font-weight: 700;
}
.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2px;
  background-color: var(--color1);
  bottom: 0;
  left: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  color: #fff;
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--color1);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--color1);
}

.footer-widget-box p {
  color: #fff;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: var(--theme-radius);
  background: #fff;
  color: var(--color1);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--color2);
  color: #fff;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color:#fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color:#fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact li a:hover {
  color:var(--color1);
  text-decoration:underline;
}
.footer-contact li i {
     width: 40px;
    height: 40px;
     min-width: 40px;
    min-height: 40px;
    line-height: 40px;
    font-size: 20px;
  margin-right: 15px;
  border-radius: var(--theme-radius);
  background: var(--color1);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--color1);
}

.subscribe-form .theme-btn::before{
  background: #fff;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before{
    clip-path: polygon(30% 1%, 100% 0, 100% 100%, 0% 100%);
  }

  .copyright .copyright-text a{
    color: #fff;
  }
}



/*====================
59. Home 2
======================*/

.home-2 .header-top{
  background: var(--theme-color);
  border-bottom: 5px solid var(--color2);
}

.home-2 .header-top-contact a i{
  color: #fff;
}

.home-2 .header-top::before{
  clip-path: none;
  background: var(--color2);
  border-radius: 0 100px 0 0;
}

.home-2 .header-top::after{
  clip-path: none;
  background: var(--color2);
  border-radius: 100px 0 0 0;
}

.home-2 .hero-single::before{
  background: linear-gradient(to top left, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
  opacity: 1;
}

.home-2 .hero-single .hero-title span{
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.home-2 .download-area{
  margin-bottom: -150px;
  position: relative;
  z-index: 2;
}

.home-2 .footer-widget-wrapper{
  padding-top: 250px;
}

.home-2 .copyright::before{
  display: none;
}



/*====================
60. Home 3
======================*/

.home-3 .header-top::before,
.home-3 .header-top::after{
  bottom: -.5px;
}

.home-3 .navbar{
  background: transparent;
  box-shadow: none;
}

.home-3 .navbar.fixed-top{
  background: #fff;
  box-shadow: var(--box-shadow);
}

.home-3 .main{
  margin-top: -6rem;
}

.home-3 .hero-single{
  padding-top: 180px;
  background: rgba(239, 29, 38, .05);
}

.home-3 .hero-single::before{
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--theme-color);
  border-radius: 100px;
  opacity: .05;
  left: -150px;
  top: -150px;
  transform: rotate(-45deg);
}

.home-3 .hero-single::after{
  content: "";
  position: absolute;
  width: 420px;
  height: 100%;
  background: var(--theme-color);
  opacity: .05;
  right: 0;
  top: 0;
  z-index: -2;
}

.home-3 .hero-img::before{
  filter: none;
  bottom: -10px;
  width: 470px;
  height: 470px;
}

.home-3 .hero-single .hero-title,
.home-3 .hero-single p{
  color: var(--color2);
}

.home-3 .hero-single .hero-title span{
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}


@media all and (max-width: 1199px) {
  .home-3 .hero-single .hero-img::before{
    width: 450px;
    height: 450px;
  }
  section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 {
    grid-template-columns: repeat(3, 1fr);
}
}

@media all and (max-width: 991px) {
  .home-3 .hero-single{
    padding-top: 220px;
  }

  .home-3 .hero-single .hero-img::before{
    width: 450px;
    height: 450px;
    top: -40px;
  }
}

@media all and (max-width: 767px) {
  .home-3 .hero-single .hero-img::before{
    width: 250px;
    height: 250px;
    top: -10px;
    right: 50px;
  }
}



 .container-video {
            position: relative;
            z-index: 5;
        }

        .container-video .para {
            margin-bottom:30px;
        }

        .video-card {
            border: none;
            border-radius: var(--theme-radius);
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 35px 70px -15px rgba(10, 60, 120, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            padding: 10px;
            transition: transform 0.25s ease, box-shadow 0.35s;
        }

        .video-wrapper {
            position: relative;
            /* border-radius: 0px!important; */
            background-color:var(--color2);
            overflow: hidden;
            cursor: pointer;
            max-height: 100%;
            width:100%;
            height: 500px!important;
            border-radius: var(--theme-radius);
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .video-wrapper:hover .video-thumbnail {
            transform: none;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 50, 90, 0.2) 0%, rgba(0, 20, 45, 0.5) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .play-btn {
            width: 75px;
            height: 75px;
            background: var(--color1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a6dcc;
            font-size: 30px;
            /* box-shadow: 0 15px 30px rgba(0, 60, 130, 0.3); */
            transition: 0.2s;
            text-decoration: none;
            border: 2px solid var(--color1);
            backdrop-filter: blur(5px);
        }

        .play-btn i {
            line-height: 1;
            margin-left: 6px;
            color: #fff;
        }
         .video-lable {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: #000000a6;
    padding: 5px 10px;
    border-radius: var(--theme-radius);
    font-size: 13px;
         }
        .play-btn:hover {
            background: var(--color1);
            color: white;
            box-shadow: 0 25px 45px rgba(8, 84, 164, 0.4);
            /* transform: scale(1.08); */
        }
        .play-btn::before, .play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--color1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: playPulse 2.5s infinite;
}




.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

        /* Video player styles */
        .video-player {
            display: none;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: #000;
            border-radius: var(--theme-radius);
        }

        .video-player.active {
            display: block;
        }

        .video-player iframe,
        .video-player video {
            width: 100%;
            height: 100%;
            border: none;
        }

        .thumbnail.active {
            opacity: 0;
            pointer-events: none;
        }

        .close-video-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: 0.2s;
        }
        .video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* ðŸ”¥ This removes black space */
}
.close-video-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.close-video-btn:hover {
    background: var(--color1);
    transform: rotate(90deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.google-rating-badge {
    background:#ffffff2e;
    backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    /* font-family: 'Arial', sans-serif; */
    color: #ffffff;
    user-select: none;
    margin-bottom: 0;
}

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

.google-logo {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rating-number {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -1px;
}

.badge-right {
    display: flex;
    flex-direction: column;
        margin-bottom: -5px;
}

.rating-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.stars-container {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: #ffb72b; /* Exact golden/orange star color */
}
ul.car-list.banner {
    position: relative;
    column-count: 2;
}

ul.car-list.banner li {
  position: relative;
  padding-left: 30px;
  margin-top: 5px;
  font-weight: 500;
  color:#fff;
  font-weight:700;
  font-size:16px
  
}

ul.car-list.banner li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "Font Awesome 6 Pro";
  background-color: var(--color1);
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:30px;
  font-size:14px;
  line-height: normal;
}

.drs-features{
    background:var(--color1);
    padding: 25px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 22px;
    z-index: 99999;
    position: relative;
}

.drs-feature-item{
    flex:1;
    display:flex;
    align-items:center;
    gap:15px;
    padding:0 20px;
    position:relative;
        justify-content: center;
}

.drs-feature-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:50px;
    background:#d4d4d4;
}

.drs-feature-item i{
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 20px;
    color:var(--color1);
    background: #fff;
}
.drs-items span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: -2px;
}
.drs-feature-item .features-title{
    margin: -5px 0 1px;
        font-size: 13px;
         font-weight: 700; 
        color: #fff;
}

.header-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-social img {
   max-width:35px;
    border-radius: var(--theme-radius);
}

.header-top-social p {
  font-size:15px;
  color:#fff;
  font-weight:500;
  letter-spacing:1px;
  /*text-transform:uppercase;*/
  margin-bottom:0px;
}

.badges-circle {
    width: 115px;
}

.car-content .about-list-wrapper  {
    margin-top: 10px!important;
}

.car-content .about-list-wrapper ul.about-list.list-unstyled li {
    margin-top: 4px;
}
.car-content .about-list-wrapper ul.about-list.list-unstyled  {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
        row-gap: 4px;

}

.car-item.offer {
    gap: 25px !important;
    padding: 20px 20px!important;
}
.car-img.right {
    max-width: 360px;
    width: 360px;
}

.car-img.right img {
    max-width: 100%;
}

.car-status.status-1.offer {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background: #0000007a;
    top: 0;
    color: #fff;
    padding: 25px;
}

.car-status.status-1.offer h3 {
    color: #fff;
    font-size:30px;
}

.car-status.status-1.offer h3 {
    color: #fff;
    font-size: 31px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.car-status.status-1.offer p {
    font-size: 16px;
    font-weight: 300;
    text-transform: math-auto;
    line-height: 24px;
}


.car-status.status-1.offer a.theme-btn.theme-btn2 {

    background: #fff;
    padding: 12px 20px;
    color: var(--color1);
    font-weight: 700;
    position: absolute;
    bottom: 25px;
    border-radius: var(--theme-radius);

}

/* Table Wrapper */
.shop-cart-wrapper .table-responsive {
    border-radius: var(--theme-radius);
    overflow: hidden;
    box-shadow: 0 0 6px 0 #0002;
    border: 1px solid #e5e5e5;
    background: #fff;
}

/* Table Design */
.shop-cart-wrapper table.comparison-custom-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    table-layout: fixed; /* Sub-columns equal spacing split */
}

/* Base Header Config */
.shop-cart-wrapper table.comparison-custom-table thead th {
    width: 33.33%;
    padding: 18px 20px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    text-align: left;
}

/* Individual Distinct Header Backgrounds */
.shop-cart-wrapper table.comparison-custom-table thead th.th-features {
    background: var(--color2);
}

.shop-cart-wrapper table.comparison-custom-table thead th.th-junk {
    background: var(--color2);
    text-align: center;
}

.shop-cart-wrapper table.comparison-custom-table thead th.th-dealers {
    background: var(--color2); /* Solid Red heading background */
    text-align: center;
}

/* Structural Layout Alignment & Borders */
.shop-cart-wrapper table.comparison-custom-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #ececec;
    vertical-align: middle;
    line-height: 1.7;
        font-weight: 600;
}

/* Vertical Border Split Lines */
.shop-cart-wrapper table.comparison-custom-table th:nth-child(2),
.shop-cart-wrapper table.comparison-custom-table td:nth-child(2) {
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    text-align: center;
}

.shop-cart-wrapper table.comparison-custom-table th:nth-child(3),
.shop-cart-wrapper table.comparison-custom-table td:nth-child(3) {
    text-align: center;
}

/* Remove last line safety */
.shop-cart-wrapper table.comparison-custom-table tbody tr:last-child td {
    border-bottom: none;
}

.icon-green {
    background: #008f11;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    align-items: center;
    line-height: 25px;
    border-radius: 30px;
}

.icon-red {
     background: var(--color1);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    align-items: center;
    line-height: 25px;
    border-radius: 30px;

}
/* Zebra Effect */
.shop-cart-wrapper table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Hover Effect */
.shop-cart-wrapper table tbody tr:hover {
    background: #f5f8ff;
    transition: all .3s ease;
}

/* Remove Last Border */
.shop-cart-wrapper table tbody tr:last-child td {
    border-bottom: none;
}


section.counter-area.cta .counter-box .site-heading .site-title-tagline {
    justify-content: start;
    color: #fff;
}


section.counter-area.cta .counter-box .site-heading {
    margin-bottom:0px;
}

section.counter-area.cta {
    color: #fff;
   background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, #ffffff00 8px, #ffffff05 10px);
}
section.counter-area.cta .counter-box .site-heading .site-title, section.counter-area.cta .counter-box .site-heading p {
    color: #fff;
    text-align: start;
}

section.counter-area.cta .counter-box .site-heading .heading-divider {
  display: inline-block;
  border-bottom: 4px solid #fff;
  text-align: start;
  display: flex;
  margin: 15px 0 20px;
}

section.counter-area.cta.py-80 .col-lg-4.col-sm-6 {

    text-align:end;
}

.choose-item-icon.examples {
    width: fit-content;
    font-size: 15px;
    height: auto;
    line-height: inherit;
    padding: 3px 16px;
    font-weight: 600;
    color: var(--color1);
    background: #ef1d2626;
}
.owl-dots {
    display: none;
}


.bottom-cites .bottom-cites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}


.bottom-cites .cite-item {
    box-shadow: 0 0 6px 0 #0002;
    border-radius: var(--theme-radius);
    padding: 10px;
    color: var(--color2);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.bottom-cites .cite-item:hover {
    background-color: var(--color1);
    color: #ffffff;
    text-decoration: none; /* remove underline from whole link */
}

.bottom-cites .cite-item:hover span {
    text-decoration: underline; /* underline only text */
}

.bottom-cites .cite-item i {
    border-radius: var(--theme-radius);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--color1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}
section.counter-area.cta .col-lg-4.col-sm-6 {
text-align:end
    
}
.bottom-cites .cite-item:hover i {
    background: var(--color2);
}

.subscribe-form iframe {
    height: 250px;
    border-radius: var(--theme-radius);
    border: 2px solid #fff;
}

.header-top-contact ul li {
    display: flex;
    color: #fff;
    align-items:center;
    gap:8px;
}
.header-top-contact ul li address {
    margin-bottom: 0;
}
.footer-contact li address {
    margin-bottom: 0;
}
    .header-top-contact ul li i {
       margin-right: 5px;
    color: #fff;
    background: var(--color1);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
        
    }
    
    .header-top-contact p.title{
    margin-bottom: -6px;
    font-size: 13px;
    font-weight:300;
}

section.counter-area.cta a.theme-btn.theme-btn2 {
    background: #fff;
    color: var(--color2);
    transition: all 0.5s;
}
section.counter-area.cta a.theme-btn.theme-btn2:hover {
    background: var(--color1);
    color: #fff;
    transition: all 0.5s;
}

/* Responsive Grid setup */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* Card Styling */
.category-card {
  background-color: #ffffff;
  border-radius: var(--theme-radius);
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 6px 0 #0002;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  border:1px solid #fff;
}



/* Image Wrapper */
.image-wrapper {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Base Paragraph Typography (Replaced h3 target) */
.category-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

/* Responsive Grid matches 6 columns on desktop */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

section.car-brand.about-us.py-80.bg .brand-item {
    background: #fff;
}

section.inner_content.our_new_sec.space.terms.py-80 .inner-content-detail {
    background: #fff;
    padding: 20px;
    border-radius: var(--theme-radius);
    border: 1px solid #ebeced;
}
section.inner_content.our_new_sec.space.terms.py-80 .inner-content-detail a {
    font-weight:600;
}
section.inner_content.our_new_sec.space.terms.py-80 .inner-content-detail a:hover {
    color:var(--color1);
    text-decoration:underline;
}
section.inner_content.our_new_sec.space.terms.py-80 p {
    margin-bottom: 10px;
}

section.inner_content.our_new_sec.space.terms.py-80 h2 {
    margin-bottom: 10px;
    font-size:30px;
}
section.inner_content.our_new_sec.space.terms.py-80 ul {
    position: relative;
        margin-bottom: 20px;
}
section.inner_content.our_new_sec.space.terms.py-80 ul li {
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
    font-weight: 500;
}
section.inner_content.our_new_sec.space.terms.py-80 ul li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    color: var(--color1);
}
/* Individual Brand Structure */
.brand-item {
  display: flex;
  flex-direction: column;  margin-bottom:0px;
      justify-content: center;
}

/* Brand Logo Container Box */
.brand-logo-box {
  border: 1px solid var(--border-default);
  border-radius: var(--theme-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo-box img {
max-width: 100%;
    /*max-height: 140px;*/
    /*object-fit: contain;;*/
    width: 100%;
    
    margin-bottom: 10px;
}
.brand-logo-box a span {
   font-size: 14px;
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
    display: block;
    line-height: 17px;
}



.brand-logo-box a:hover span {
    color: #000;
    text-decoration:underline;
}
section.car-item-single.content.detail .car-single-details {
    background: #fff;
    padding: 20px;
    border-radius: var(--theme-radius);
    border: 1px solid #d4d4d463;
}

section.car-item-single.content.detail .car-single-details h2 {
    font-size:36px;
    margin-bottom:10px;
}
section.car-item-single.content.detail .car-single-details h3 {
    font-size:28px;
    margin-bottom:10px;
}
section.car-item-single.content.detail .car-single-details p {
      margin-bottom:10px;
}

   section.car-item-single.content.detail .car-single-details p.main-content-image {
   background: #f7f7f7;
    border-radius: var(--theme-radius);
    aspect-ratio: 367 / 176;
}
    section.car-item-single.content.detail .car-single-details img {
     width: 100%;
    border-radius: var(--theme-radius);
}

.badge-soft {
    position: relative;
    color: var(--color1);
    z-index: 1;
   border-radius: 30px;
    padding: 7px 20px;
    font-weight: 600;
    font-size: 14px;
    margin: 5px;
    gap: 7px;
    display: inline-flex;
    align-items: center;
        flex-wrap: wrap;
}

.badge-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color1);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
  
}
.pick-up-badge {
    text-align: center;
    margin-top: 25px;
}
.about-wrapper{
      display:grid;
      grid-template-columns:500px 1fr;
      gap:50px;
      align-items:center;
    }

    /* LEFT */



    .shape::before{
      content:"➜";
      position:absolute;
      left:10px;
      top:-15px;
      color:#df0914;
      font-size:22px;
    }

    .feature-list{
      position:relative;
    }


    .feature-list .feature-item{
     display: flex;
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
    padding: 0;
    box-shadow: none;
    text-align: start;
    }
.feature-list .feature-item:hover {
    transform: none;
}
    .feature-list .feature-item .feature-icon{
      width:50px;
      min-width:50px;
      height:50px;
      border-radius:50%;
      background:var(--color1);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      z-index:2;
      position:relative;
    }

    /*.feature-list .feature-item:nth-child(2) .feature-icon{*/
    /*  background:var(--color2);*/
    /*}*/

.feature-list .feature-item:hover .feature-icon {
    transform: none;
}    .feature-content .title{
      font-size:22px;
      color:var(--color2);
      margin-bottom:0px;
      font-weight:700;
       line-height: 1.4;
}

    .feature-content p{
      color:#444;
      font-size:16px;
      line-height:1.8;

    }

    .learn-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:#09111f;
      color:#fff;
      text-decoration:none;
      padding:18px 36px;
      font-size:15px;
      font-weight:700;
      margin-top:5px;
      transition:.3s;
      border-radius: 10px;
    }

    .learn-btn:hover{
      background:#df0914;
    }

    /* RIGHT */

    .about-right{
      position:relative;
    }

    .top-text{
      max-width:100%;
      margin-left:auto;
      margin-bottom:80px;
    }

    .top-text p{
         color: #444;
    /* font-size: 16px; */
    line-height: 29px;
    font-weight: 400;
    }

    .image-box{
      position:relative;
    }

    .image-box img{
    object-fit: cover;
        border-radius: var(--theme-radius);
    }

   .experience-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color1);
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 35px 40px;
    color: #fff;
    z-index: 5;
        border-radius: var(--theme-radius);
}

    .exp-item{
      display:flex;
      align-items:center;
      gap:16px;
      position:relative;
    }

    .exp-item:first-child::after{
      content:"";
      position:absolute;
      right:-17px;
      width:1px;
      height:60px;
      background:rgba(255,255,255,0.35);
    }

    .exp-item .count-num{
      font-size:52px;
      font-weight:800;
      line-height:1;
      color:#fff;
    }

    .exp-item p{
      font-size:20px;
      line-height:1.3;
      font-weight:500;
    }
.top-text.mobile {
    display: none;
}

        .cta-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            height: 250px;
            display: flex;
            align-items: center;
            background-position: left center;
            background-size: cover;
            background-repeat: no-repeat;
            overflow: hidden;
        }


        .cta-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            z-index: 1;
        }

        .cta-content-wrapper {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
               padding: 0 50px 0 249px;
    background: var(--color1);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 30% 100%);
        }

        .logo-box {
            position: absolute;
            left: 13%; 
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
            width: max-content;
        }

        .logo-box h3 {
            font-size: 22px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .cta-text-side {
            margin-left: auto;
            width: 60%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

.cta-text-side.container h3 {
   font-weight: 700;
    text-transform: capitalize;
    font-size: 40px;
    color:#fff;
    margin-bottom: 10px;
}

.cta-text-side.container p {
   font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    color:#fff;
max-width:650px;
}

.cta-text-side.container .site-title-tagline {
  color: #fff;
  justify-content: start;
  gap: 5px;
}


        @media (max-width: 991px) {
            .cta-container {
                height: auto;
                min-height: 350px;
            }
            .cta-content-wrapper {
                clip-path: none;
                background: rgba(204, 15, 26, 0.9);
                flex-direction: column;
                justify-content: center;
                position: relative;
            }
            .logo-box {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                margin: 0 auto 30px auto;
                justify-content: center;
            }
            .cta-text-side {
                width: 100%;
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .cta-text-side h2 {
                font-size: 24px;
            }
        }
    /* RESPONSIVE */

    @media(max-width:1100px){

      .about-wrapper{
        grid-template-columns:1fr;
      }

      .top-text{
        margin-left:0;
      }


    }

    @media(max-width:768px){

      .about-area{
        padding:60px 15px;
      }

      .about-left h2{
        font-size:42px;
      }

      .top-text p{
        font-size:17px;
      }

      
      .image-box img{
        height:auto;
      }

      .exp-item .count-num{
        font-size:38px;
      }

      .exp-item p{
        font-size:16px;
              margin-bottom: 0;
    }

    }

    @media(max-width:540px){

      .about-left h2{
                font-size: 31px;
        line-height: 40px;
        margin-bottom: 15px;
      }
.cta-content-wrapper {
                clip-path: none;
                background: transparent;
                flex-direction: column;
                justify-content: center;
                position: relative;
                padding:0;
            }
.logo-box{
    display:none;
}
    .cta-container {

        min-height: auto;
        padding: 40px 0;
    }
    .cta-text-side.container .site-title-tagline {
    justify-content: center;
}
    .cta-text-side{
        gap:0px;
    }
 .top-text.desktop{
        display:none;
      }
      .top-text.mobile {
    margin-bottom: 20px;
}
.experience-box{
padding: 15px 15px;
        top: auto !important;
        bottom: 10px;
        width: 96%;
        gap: 35px;
    }
    
    .site-title-tagline {
        
    font-size: 14px;
}


    .exp-item .count-num {
        font-size: 25px;
    }
    .exp-item {
    gap: 10px;
}
.exp-item:first-child::after {
    content: "";
    position: absolute;
    right: -17px;
    width: 1px;
    height: 35px;
    background: #fff;
}
.about-wrapper {
    gap: 30px;
}
.car-content {
    padding: 10px 10px 0px 10px;
}
}

.mob-banner.main-content-image img {
            display: none;
            width:100%;
}

section.about-area.why-choose .about-right {
    padding-left: 0;
}
.header-top-contact.why-choose ul {
    display: block;
}
.header-top-contact.why-choose ul li{
    color:#000;
    margin-bottom: 10px;
        align-items: self-start;
}
.header-top-contact.why-choose ul li i{
background-color:transparent;
  border:1px solid var(--color1);
  color:var(--color1);
  min-width:50px;
  min-height:50px;
  border-radius:50px;
  font-size:20px;
  margin-top: 8px;
}

.header-top-contact.why-choose ul li p.title{
    font-size: 18px!important;
    font-weight: 600!important;
    margin-bottom:2px!important;
}
.header-top-contact.why-choose ul li p {
    line-height: 25px;
    font-size: 15px;
}
.add-listing-form.why-choose {
    background: #fff;
    padding: 15px 15px;
    border-radius: var(--theme-radius);
    text-align:center;
}

.add-listing-form.why-choose h3 {
    font-size:20px!important;
        color: var(--color1)!important;
        margin-bottom: 0px!important;
}
.add-listing-form.why-choose .nice-select{
  width: 100%;
  height: 40px!important;
  line-height: 40px;
  color: #444;
}

.add-listing-form.why-choose .form-control {
    border-radius: var(--theme-radius);
    padding: 8px 20px!important;
    box-shadow: none;
    color: #444;
    border-color: #E8E8E8;
}
section.about-area.why-choose .about-img img {
    height: 310px;
    width: 100%;
}
section.about-area.why-choose h3 {
    font-size: 30px;
    font-weight: 700;
  
}
section.about-area.why-choose .about-title {
    margin-bottom: 15px;
}
.junk-car-banner {
    background: var(--color1);
    color: #ffffff;
    overflow: visible;
    position: relative;
    padding: 50px 0;
}

.banner-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    flex-wrap: wrap;
}

/* Columns */
.banner-column {
    display: flex;
    align-items: center;
}

.quote-section {
    flex: 1;
        border-right: 1px solid rgba(255,255,255,0.25);
}

/* ICON */
.banner-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.icon-tag {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21.4 11.6l-9-9C12 2.2 11.5 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .5.2 1 .6 1.4l9 9c.4.4.9.6 1.4.6s1-.2 1.4-.6l7-7c.4-.4.6-.9.6-1.4s-.2-1-.6-1.4zM6.5 8C5.7 8 5 7.3 5 6.5S5.7 5 6.5 5 8 5.7 8 6.5 7.3 8 6.5 8z"/></svg>');
}

/* TEXT */
.banner-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.banner-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.banner-description a{
    color: #fff;
}
.banner-description a:hover{
    text-decoration:underline;
}

/* BUTTON */
.btn-quote {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #ffffff;
    color: var(--color1);
}

/* PHONE SECTION */
.phone-section {
    flex: 1;
    display: flex;
    justify-content: start;
    /*border-left: 1px solid rgba(255,255,255,0.25);*/
    padding-left: 40px;
}

.phone-wrapper {
    display: flex;
    align-items: flex-start;
}

.phone-wrapper i {
    font-size: 30px;
    margin-right: 15px;
    margin-top: 10px;
    background: #fff;
    width: 50px;
    height: 50px;
    color: var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--theme-radius);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 14px;
    color: #fff
}

.phone-number {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
a.phone-number:hover {
    color: #fff;
    text-decoration: underline;
}

.phone-days,
.phone-hours {
    color: #fff;
}
.phone-label .phone-number:hover{
    color:#fff!important;
    text-decoration:underline;
}
/* IMAGE SECTION (FIXED POSITIONING) */
.image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    overflow: visible;
    min-height: 170px;
    position: absolute;
    right: 40px;
    bottom: -35px;
    /* z-index: 9999; */
}

.driver-img {
    max-height: 349px;
    width: auto;
    display: block;
    position: relative;
    transform: translateY(-35px); /* 👈 HEAD UP */
    /* z-index: -9999; */
    /* min-height: 320px; */
}


/* IMAGE SECTION (FIXED POSITIONING) */
.image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    overflow: visible;
    min-height: 170px;
    position: absolute;
    right: 40px;
    bottom: -35px;
    /* z-index: 9999; */
}

.driver-img {
    max-height: 349px;
    width: auto;
    display: block;
    position: relative;
    transform: translateY(-35px); /* 👈 HEAD UP */
    /* z-index: -9999; */
    /* min-height: 320px; */
}


/* Badge Container styling */
.text-rating-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: var(--theme-radius);
    padding: 12px 11px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    gap: 19px;
    position: absolute; /* Adjust positioning context relative to your layout if needed */
    bottom: -44px;
    left: 20px;
    z-index: 5;
    right: 20px;
}

/* Overlapping Avatars Effect */
.img-avatars {
    display: flex;
    align-items: center;
}

.about-img.why-choose .img-avatars img {
    width: 35px;
    height: 34px!important;
    border-radius: 50%;
    /* border: 2px solid #ffffff; */
    margin-right: -10px; /* Shifts images to create the layered overlapping look */
    /* object-fit: cover; */
}

.img-avatars img:last-child {
    margin-right: 0;
}

/* Ratings Elements */
.rating-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars-row {
    /* color: #ff3333; */ /* Red star color from the image */
    /* font-size: 14px; */
    /* margin-bottom: 2px; */
    letter-spacing: 2px;
}

.img-label {
    /* font-family: 'Arial', sans-serif; */
    font-size: 14px;
    font-weight: 500;
    color: var(--color2);
    line-height: 1.2;
}

.feature-bar.video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color1);
    padding: 15px 12px;
    border-radius: var(--theme-radius);
    margin: auto;
    gap: 3px;
    flex-wrap: wrap;
    margin-top:10px;
}

.feature-bar.video .feature-item {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    gap: 8px;
    text-align: start;
    display: flex;
    align-items: center;
    overflow: visible;
}

.feature-bar.video .feature-item:hover {
    transform: none!important;
}

.feature-bar.video .feature-item .icon {
    width: 40px;
    height: 40px;
    background: var(--color2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-bar.video .feature-item .text {
    font-size: 14px;
    line-height: 1.4;
    font-weight:600;
    color:#fff;
}



/* Divider (desktop) */
.divider {
    width: 1px;
    height: 40px;
    background: #ccc;
}

.call-now-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top:30px;
}

.call-now-btn .call-box{
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.call-now-btn .call-box:hover .call-icon{
    background:var(--color1);
}

.call-now-btn .call-box .call-icon{
    width:45px;
    height:45px;
    border-radius:var(--theme-radius);
    background:var(--color2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
    transition: all .3s ease;
}

.call-now-btn .call-box .call-content{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.call-now-btn .call-box .call-label{
    font-size:12px;
    font-weight:600;
    color:var(--color1);
    text-transform:uppercase;
    letter-spacing:1px;
}

.call-now-btn .call-box .call-number{
    font-size:18px;
    font-weight:700;
    color:#111;
    text-decoration:none;
    transition:0.3s;
    margin-bottom:0;
}

.call-now-btn .call-box .call-number:hover{
    text-decoration:underline;
}
.trust-bar .trust-item .label { font-size: 14px; font-weight: 600; white-space: nowrap; } .trust-bar .trust-item .icon { background: var(--color2); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: var(--theme-radius); font-size: 20px; }
  .trust-bar {
    background: var(--color1);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: var(--theme-radius);
    margin-top: 15px;
}

.trust-item.customer-box {
    border-right: 1px solid rgba(255,255,255,.3);
    padding-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
    
}
.trust-item.customer-box .count {
    display: block;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: -10px;
}

.brand-slider {
    width: 100%;
    overflow: hidden;
}

.brand-track {
    display: flex;
    animation: logoSlide 9s infinite;
}

.brand-track img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}


.testimonial-area.brand-slider .trusted-brand-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-item.active{
    margin-right:22px!important;
}

.testimonial-area.brand-slider .brand-item {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
        width: 100px;
}

.testimonial-area.brand-slider .trusted-brand-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .brand-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    
}

.nav-sidebar-header a.navbar-brand {
    display: none;
}

div#thumbnail {
    height: 100%;
}

.sidebar-wrapper .sidebar-content .sidebar-social .footer-social{
    display: flex;
    gap: 15px;
    justify-content: start;
}

.sidebar-wrapper .sidebar-content .sidebar-social .footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: var(--theme-radius);
    background: var(--color2);
    color: #fff;
    transition: var(--transition);
}
.sidebar-wrapper .sidebar-content .sidebar-social .footer-social li a i:hover {
    background: var(--color1);
}
.sidebar-wrapper .sidebar-content .sidebar-social a {
    background: transparent;
}
.sidebar-wrapper .sidebar-content .sidebar-social a:hover {
    background: transparent;
    box-shadow: none;
}
 .google-review-badge-floating {
            position: fixed !important;
            bottom: 40px;
            left: 20px;
            background: #ffffff;
            /* padding: 15px 17px; */
            border-radius: var(--theme-radius);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            font-family: 'Roboto', sans-serif;
            border: 1px solid #f0f0f0;
            display: inline-block;
                text-decoration: none;
            position: relative;
                        z-index: 999;
        }

        .google-review-badge-floating .main-content {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 8px 15px;
        }

        .google-review-badge-floating .main-content .logo-box {
            width: 39px;
            height: 40px;
            border: 1px solid #ebeced;
            border-radius: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #ebeced75;
            position:unset!important;
                transform: none;
                    margin-bottom: 0;
        }

        .google-review-badge-floating .logo-box img {
            width: 30px;

        }

        .google-review-badge-floating .divider {
            width: 1px;
            height: 45px;
            background: #ebeced;
                display: block !important
        }

        .google-review-badge-floating .brand {
            font-size: 16px;
            font-weight: 600;
            color: #111111;
            margin-bottom:-10px;
        }

        .google-review-badge-floating .brand .light {
            font-weight: 600;
            color: #111111;
            font-size: 16px;
        }

        .google-review-badge-floating .rating-group {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 2px;
        }

        .google-review-badge-floating .score {
            font-size: 18px;
            font-weight: 700;
            color: #202124;
        }

        .google-review-badge-floating .stars {
            width: 70px;
    height: fit-content;
        }

        .google-review-badge-floating .count {
            color: #70757a;
            font-size: 14px;
        }

        .google-review-badge-floating .footer-tag {
            border: 1px solid #ebeced;
            border-radius: 50px;
            padding: 3px 7px;
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 8px;
            color: #4b5059;
            font-size: 11px;
            margin: 8px 14px;
                font-weight: 600;

        }

        .google-review-badge-floating .shield {
            color: #188038;
            background: #e6f4ea;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }
 .google-review-badge-floating .shield i {
     font-size:12px;
     
 }


        /* The Tail */
        .google-review-badge-floating::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 30px;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
            /* Matches the badge background */
        }
        .header-top-contact.mbil {
    display: none;
}
section.error-404.our_new_sec {
    text-align: center;
}

.error-404__image i{
    font-size:140px;
    color:var(--color2);
    margin-bottom:30px;
}

section.error-404.our_new_sec h2 {
    font-size:40px;
    margin-bottom:15px;
}

section.error-404.our_new_sec p {
    font-size:16px;
    margin-bottom:15px;
}

section.vs-hero.vs-hero-style2.inner-bnr.small-banner {
    background: var(--color2);
}
section.vs-hero.vs-hero-style2.inner-bnr.small-banner .video-banner {
    padding: 70px 0 !important;
}
.vs-hero__title {
    font-size: 60px;
    color: #fff;
    line-height: normal;
    text-align: center;
}
section.th-blog-wrapper.blog-details {
    padding: 70px 0;
}
.service-details__content.inner_content .main-content-image img {
    border-radius: 10px;
}
.blog-single .blog-img img {
    width: 100%;
}
.blog-single .blog-content {
    overflow: hidden;
    padding: 33px 0px 18px 0px;
    position: relative;
    margin-bottom: 28px;
    line-height: 160%;
}
.share-links.clearfix {
    margin: 0 0 15px 0;
    background: #fff;
    padding: 10px;
    border-radius: var(--theme-radius);
}
.blog-single .blog-meta {
    margin-bottom: 4px;
    display: block;
}
.blog-single .blog-meta i {
    margin-right: 8px;
}
.blog-meta span, .blog-meta a {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color2);
    transition: all 0.5s ease;
}
.share-links-title {
    font-size: 18px;
    color: var(--color2);
    font-weight: 700;
    margin: 0 15px 0 0;
    display: inline-block;
}
.share-links .th-social {
    display: inline-block;
}
.share-links .th-social a {
    --icon-size: 40px;
    font-size: 14px;
    border-radius: 99px;
}


.th-social a {
    display: inline-block;
    width: 45px;
    height:45px;
    line-height: 45px;
    background-color: #f7f7f7;
    /*color: var(--body-color);*/
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 99px;
}
.share-links .th-social a svg {
    font-size: 20px;
    width: 17px;
}
aside.sidebar-area.widget .bg-light {
    padding: 20px;
    border-radius: 6px;
}
.widget_title {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    margin: 0 0 10px 0;
    padding: 0 0 13px 0px;
}
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.recent-post .media-img {
    margin-right: 18px;
}
.recent-post .media-img img {
    width: 100%;
    border-radius: 6px;
}
.recent-post .media-img img {
    max-width: 100px;
}
.media-body {
    flex: 1;
}

.recent-post .recent-post-meta {
    margin: -0.15em 0 0 0;
}
.recent-post .recent-post-meta p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
    color: var(--color1);
}

.recent-post .recent-post-meta p i {
    margin-right: 5px;
    color: var(--color1);
}
.recent-post .post-title {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin: 0 0 -0.1em 0;
}
.contact-box2 {
    background-color: var(--color2);
    border-radius: var(--theme-radius);
    text-align: center;
    padding: 60px 40px;
    margin-top: 30px;
    border-bottom: 6px solid var(--color1);
}
.contact-box2 .portfolio-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 auto 20px;
}
.contact-box2 .icon-btn {
    display: inline-block;
    background-color: #fff;
    color: #fff;
    width: 80%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: var(--theme-radius);
}
section#blog-sec {
    padding: 70px 0;
}
section#blog-sec h2.sec-title__title {
    text-transform: none;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
a.rofiex-btn.main-header__btn.vs-btn2 {
    font-size: 16px;
    color: #fff;
    padding: 12px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: var(--theme-radius);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--color1);
    box-shadow: var(--box-shadow);
    z-index: 1;
}
a.rofiex-btn.main-header__btn.vs-btn2:hover {

    background: var(--color2);
}
.author-card {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 0px 6px 0px;
    border-radius: var(--theme-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
        border-top: 5px solid var(--color1);
}
.author-image-wrapper {
    box-shadow: 0 0 6px 0 #0002;
    border-radius: 50%;
    display: inline-block;
}
.author-image-wrapper img {
    border-radius: 50%;
    border: 6px solid #fff;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 6px 0 #0002;
}
.author-content {
    margin-left: 15px;
}
.space {
    padding: 70px 0;
}
.new-bottm-bar.auth.space {
    background: #fff;
}
.section-heading-4.heading-dark {
    text-align: center;
    margin-bottom: 20px;
}

aside.sidebar-area.widget {
    background: none;
    padding: unset;
    margin-bottom: unset;
    border-radius: var(--theme-radius);
}
.contact-box2 .contact-content {
    padding: 0;
}

..contact-box2 .contact-title {
    color:#ffffff;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 2px;
    position: relative;
}
.contact-box2 .contact-text {
    font-size: 30px;
    font-weight: 600;
}
.contact-content .contact-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: normal;
    position: relative;
}
.contact-box2 .contact-text a {
    color: var(--white-color);
}

.contact-box2 .contact-text a:hover {
    text-decoration: underline;
}
.blog-content p {
    margin-bottom: 12px;
}
.blog-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
        text-transform: capitalize;
}

.blog-content h2 {
    margin-bottom: 10px;
}
.blog-single .blog-content ul li {
    list-style: none;
    padding-left: 32px;
    position: relative;
    color: #000;
    margin-bottom: 10px;
}
.blog-single .blog-content ul {
    padding-left: 0px;
    padding-bottom: 10px;
}
.blog-single .blog-content ul li:before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    background: var(--color1);
    width: 25px;
    height: 25px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';
}

.new-bottm-bar .container {
    padding: 0;
}
















/* RESPONSIVE BRACK POINT */
@media (max-width: 991px) {
    .nav-sidebar-header a.navbar-brand {
    display: block;
}

.nav-sidebar-header a.navbar-brand.mbil {
    display: block;
    left: 50%;
    top: 15px;
    background: var(--color2);
    padding: 10px;
    border-radius: 0 0 50px 50px;
}

    .banner-container {
        flex-direction: column;
        text-align: center;
            gap: 26px;
    }

    .phone-section {
        border-left: none;
        border-top: 1.5px solid rgb(255 255 255 / 58%);
        padding-left: 0;
        padding-top: 15px;
    }

    .phone-section,
    .quote-section,
    .image-section {
        justify-content: center;
        
    }
    .image-section {
        display:none;
    }
    .phone-wrapper {
    display: block;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.phone-wrapper i {
    font-size: 34px;
            margin: 20px auto 20px;
}

    .driver-img {
        transform: translateY(0);
        max-height: 220px;
    }
    .header-top-contact.mbil {
    display: inline-flex;
}
}
@media (max-width: 991px) {
    .phone-section {
        border-left: none;
        padding-left: 0;
        justify-content: flex-start;
        width:100%;
    }
    .contact-img img {
    display: none;
}
    section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .site__brd ul.rofiex-breadcrumb.list-unstyled {
    justify-content: center;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled li a {
    color: #000;
        font-weight: 500;
    }
    .site__brd ul.rofiex-breadcrumb.list-unstyled li.active {
    color: #000;
}
.site__brd ul.rofiex-breadcrumb.list-unstyled li i {
    color: #000;
}
    .image-section {
        justify-content: center;
        width: 100%;
    }
    .driver-img {
        max-height: 140px;
    }
}

.car-top p {
    line-height: 22px;
}
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
    .navbar {
padding: 14px 0!important;
    }
    
    .footer-widget-title {
    padding-bottom: 15px;
    margin-top: 5px;
}
.footer-widget-title::after {
    width: 21px;
}
.footer-widget-title::before {
    width: 70px;
}
     .navbar-brand img {
    width: 160px;
  }
      .navbar-brand {
        padding: 0;
    }
    nav.navbar.navbar-expand-lg .theme-btn {
    font-size: 15px;
    padding: 10px 10px;
}
.mobile-menu-right {
    gap: 8px;
}
.navbar-toggler-mobile-icon i {
    background: var(--color2)!important;
    padding: 10px 10px!important;
    color: #fff;
    border-radius: var(--theme-radius);
    transition: all 0.5s;
    font-size:20px!important;
}
.find-car {
    position: relative;
    padding: 40px 0;
    z-index: 2;
    background: #fff;
    margin-top:auto!important;
                background: #f7f7f7;
    }
.junk-car-banner {
    padding: 40px 0;
}

.add-listing-form.why-choose {
    margin-top: 80px!important;
}
.drs-features {
    padding: 15px 15px;
}
.quote-section{
    border:none!important;
}

   .drs-features {
    display: flex;         
    flex-wrap: wrap;         
    flex-direction: row;      
    justify-content: space-between;
    background-color: transparent;
    width: 100%;              
    gap: 10px 0;              
    padding: 0px;
    border: none;
        width: 95%;
        margin: auto;

    box-shadow: none !important;
    z-index: auto;
}
.header-top-contact ul li {
    display: none;
}
.header-top-contact.why-choose ul li {
    display: inline-flex!important;
}

.drs-feature-item {
    flex: 0 0 49%;            
    box-sizing: border-box;   
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: var(--theme-radius);
    display: block;
    border: 1px solid #d4d4d4;
}
        .drs-feature-item i {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 15px !important;
        margin: 0 auto 15px;
        background: var(--color1);
        color: #fff;
        
    }
    .drs-items span {
    color: #000;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: -7px;
}
        .drs-feature-item .features-title {
        margin: -5px 0 0px;
        font-size: 14px;
        font-weight: 400;
        color: #000;
    }
    .drs-feature-item p {
        margin: 0;
        font-size: 12px;
        color: #444;
    }
    .drs-feature-item:not(:last-child)::after{
        display:none;
    }
    .drs-feature-item .features-title {
    margin: -5px 0 1px;
    font-size: 13px;
    font-weight: 400;
    color: #000;
}
.header-top-left {
        display: none;
    }
    .header-top-contact.why-choose ul {
    display: block;
    margin-bottom: 15px;
}


    .header-top-social span{
        display:unset!important;
        font-size:16px;
        margin-bottom:auto!important;
    }
    .header-top-wrapper {

    justify-content: center;
}
.header-top::before {
    clip-path: polygon(0 0, 55% 0, 100% 100%, 0% 100%);
    width: 20%;
}
.header-top::after {
    clip-path: polygon(35% -2%, 100% 0, 100% 100%, 0% 100%);
    width: 20%;
}
.hero-single {
    padding-top: 20px;
    padding-bottom: 20px;
        background: #fff !important;
    }
    
.hero-single.junk-car {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
        background: #fff !important;
    }
    
    
.py-80 {
    padding: 40px 0!important;
}
.site-title{
    font-size: 30px!important;
}
.about-right h3 {
    font-size: 24px;
}
.choose-item {
    height: auto !important;
    margin-bottom: 20px;
}


.car-item.offer {
    padding: 20px 20px !important;
}
section.car-area.junk-car-services .car-area .car-content {
    padding: 0!important;
}

section.car-area.junk-car-services .car-area .car-content {
    padding:15px 5px 0px!important
}
.car-item{
    height:auto!important;
         margin-bottom: 0px;
}
.car-item .theme-btn{
    position:unset!important;
    margin-top:10px;
}
.car-content .about-list-wrapper ul.about-list.list-unstyled {
    grid-template-columns: repeat(1, 1fr)!important;
}
.car-img.right {
    max-width: 100%;
    width: 100%;
}
    .car-area.list .car-item {
        flex-direction: column-reverse;
            padding: 15px !important;
    }
    .car-status.status-1.offer {
    padding: 15px;
}
.icon-green {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.icon-red {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.cta-wrapper {
    padding: 15px !important;
}
        .counter-area .counter-box {
        margin: 0 0 40px;
    }
    section.counter-area.cta .col-lg-4.col-sm-6 {
    text-align: start;
}
section.car-item-single.content.detail .car-single-details h2 {
    font-size: 30px!important;
}
section.car-item-single.content.detail .car-single-details h3 {
    font-size: 27px;
    margin-bottom: 10px;
}
.car-single-widget.sidebar {
    margin-top: 25px;
}
.bottom-cites .bottom-cites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.badge-soft {
    gap: 6px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 13px;
    margin: 3px;
}
.pick-up-badge {
    text-align: start;
    margin-top: 0;
}
section.car-area.junk-car-services .col-md-6.col-lg-4.col-xl-3 {
    margin-bottom: 25px;
}

section.car-area.junk-car-services .col-md-6.col-lg-4.col-xl-3:last-child {
    margin-bottom: 0;
}

.mob-banner.main-content-image img {
    border-radius: var(--theme-radius);
            display: block;
}
.mob-banner.main-content-image {
    aspect-ratio: 401 / 239;
    background: #f7f7f7;
    border-radius: var(--theme-radius);
    margin-bottom:20px;
}
.hero-single .hero-content {
    height: 100%;
    text-align: center;
}
.hero-single .hero-content .hero-btn {
    gap: 10px!important;
    display: flex;
    margin-top: 15px!important;
    justify-content: center!important;
}

.hero-single::before {
    content:unset!important;
}

.hero-single.junk-car.common-banner::before {
            content: "" !important;
        background: var(--color2) !important;
        opacity: unset !important;
}

.hero-single.junk-car.common-banner .hero-content ul.rofiex-breadcrumb.list-unstyled li,.hero-single.junk-car.common-banner .hero-content ul.rofiex-breadcrumb.list-unstyled li a,.hero-single.junk-car.common-banner .hero-content ul.rofiex-breadcrumb.list-unstyled li i {
    color: #fff;
}


.junk-car.common-banner {
    height: 230px!important;

}
    .hero-single .hero-content .hero-title {
        font-size: 42px;
        color: var(--color2);
        text-shadow: none;
    }
.hero-single.junk-car.common-banner {
    background: transparent !important;
padding: 40px 0;
    }


.hero-single.junk-car.common-banner .hero-title {
        color: #fff
    }
    .hero-single .hero-content p
 {
    color: #000;
    line-height: 25px;
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 16px;
    text-shadow: none;
}
ul.car-list.banner li {
    position: relative;
    padding-left: 30px;
    margin-top: 5px;
    color: #000!important;
    font-weight: normal!important;
    font-size: 16px;
            text-align: start;
            line-height: 20px;
            margin-right: 0;
}
ul.car-list.banner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
            column-gap: 13px;
        row-gap: 6px;
                max-width: 90%;
        margin: auto;
}
section.about-area.about-us.py-80.inr-why-chos .about-right {
    height: auto !important;
    padding: 0 !important;
}
ul.car-list.banner li::before {
    line-height: normal!important;
    color: #fff!important;
    top: 0px;
    width: 20px;
    height: 20px;
    font-size: 12px;
}
.hero-single .hero-content a.theme-btn.theme-btn2 {
    display: none;
}
.google-rating-badge {
    background: #f7f7f7;
    color: var(--color2);
    border: 1px solid #d4d4d438;
}
section.car-area.list a.theme-btn.theme-btn2 {
    position: absolute !important;
    bottom: 20px;
}
.footer-logo img {
    margin-bottom: 0px!important;
}
.footer-widget-box:last-child {
    margin-bottom: 0;
}
.copyright {
    background: var(--color1);
    text-align:center;
}
    .footer-social {
        justify-content: center!important;
        margin-top: 10px;
    }
        .copyright .copyright-text a {
        color: #fff;
        font-weight: 600;
    }
/*    section.hero-section.fit-head.bg .google-rating-badge {*/
/*    background: #fff !important;*/
/*}*/
section.about-area.about-us .row {
    flex-direction: column-reverse;
}
section.about-area.about-us .about-left .about-img {
    margin-top: 25px;
}
.about-experience {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    top: auto;
    left: 20px;
    background: var(--color2);
    border-radius: var(--theme-radius);
    padding: 10px 10px 10px 10px;
    color: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
    bottom: 20px;
}
.trusted-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

section#pickup-checklist {
    scroll-margin-top: 70px;
}

p.mbl_para {
    display: none;
}

.footer-widget-box p.nearby_cityss {
    margin-bottom: 0;
    line-height:24px;
}


.hero-btn.only_mbl_show {
    display: none !important;
}



@media (max-width: 767px) {
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn i:before {
    color: #fff;
}


.fit-head.set-head {
    margin-top: 70px!important;
}

.hero-single .hero-content p{
    display:none;
}

.cta-divider {
    margin-bottom: 20px;
}

header.header {
    z-index: 99;
    position: sticky;
    background: #fff;
}
.hero-single.junk-car.jcs-page {
    background: #f7f7f7 !important;
}
.brand-offer-section {
        padding: 20px 0 40px !important;
    }

.hero-btn.only_mbl_show {
    display: block !important;
}
.hero-btn.only_mbl_hide {
    display: none !important;
}

ul.model-box {
    column-count: 2 !important;
}









section.pricing-area.bg.pick-up.py-80 .choose-item {
    margin-bottom: 20px;
}
    section.car-area.junk-car-services.bg.py-80.inr_pge_srvc ul.ul3 {
        grid-template-columns: repeat(1, 1fr);
    }
.new-bottm-bar.detail_blogs {
    padding: 40px 0 0;
}
.blog-single .blog-content {
    margin-bottom: 0;
}
.new-bottm-bar.detail_blogs .container {
    padding: 0;
}
.blog-item {
    min-height: auto;
}
.hero-single.junk-car.common-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: linear-gradient(to right, #000 30%, #000 30%, transparent 100%);
    opacity: 0.90;
    z-index: -1;
}
.contact-img img {
    border-radius: 50% 50% 15px 15px;
}
.footer-area {
    padding-bottom: 67px;
}


.hero-content p.mbl_para {
    display: block;
}
.vs-hero__title {
    font-size: 34px;
}
section.th-blog-wrapper.blog-details {
    padding: 40px 0;
}
.new-bottm-bar .container {
        padding: 0 15px;
    }
.space {
    padding: 40px 0;
}
h2 {
    font-size: 30px;
}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn a.button.-md.-dark.text-white {
    padding: 0;
    background: #fff !important;
    color: var(--color1) !important;
     display: inline;
    padding: 12px 15px;
    border-radius: var(--theme-radius);
}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn a.button.-md.-dark.text-white i {
    display:none;
}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--color1);
    z-index: 9;
    padding: 10px 12px;
    display: flex;
    align-items: center;
            border-top: 1px solid #ffffff26;
    justify-content: space-between;
}


   .mobile-icon i {
    background: var(--color2);
    border-radius: var(--theme-radius);
    min-width: 45px;
    min-height: 45px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;

}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}
span.text_ph {
    right: 50px;
    color: var(--color1);
    font-size: 21px;
    display: block;
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-bottom: -8px;
    text-align: start;
    font-weight: 400;
}
.call-now-btn {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 19px;
    flex-wrap: wrap;
}
#scroll-top.active{
    display:none;
}

.google-review-badge-floating {
    bottom: 100px;
    display:none;
}

.pickup-title span {
    display: inline-block !important;
}
.pickup-title {
        font-size: 30px !important;
        font-weight:700 !important;
    }
}
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .brand-name {
    font-size: 0.85rem;
    padding: 8px 4px;
  }
  
}
@media (max-width: 576px) {
.navbar-toggler-mobile-icon {
        font-size: 18px;
        color: var(--color2);
        font-weight: 500;
    }
        nav.navbar.navbar-expand-lg .theme-btn {
        font-size: 13px;
        padding: 8px 7px;
    }
    .mobile-menu-right {
        gap: 4px;
    }
        .hero-single .hero-content .hero-title {
        font-size: 35px;
            margin: 10px 0 10px;
    }
    
.hero-single.junk-car.jcs-page .hero-content .hero-title {
        margin:0 0 20px 0!important;
    }
    .hero-single .hero-content p {
    line-height: 23px;
    font-size: 16px;
}
section.car-item-single.content.detail .car-single-details {
    padding: 15px;}

.badge-left {
    gap: 5px;
}
.badges-circle{
    width: 100px;
}
.rating-number {
    font-size: 25px;
}
.rating-text {
    font-size: 14px;
}
.shop-item-rate {
    font-size: 14px;
}

       .pick-up-badge {
        text-align: center;
        margin-top: 0;
    } 
   .car-item.offer .car-content {
    padding: 0;
}
.header-top-social img {
    max-width: 30px;
}
    .navbar {
        padding: 12px 0 !important;
    }

    .header-top-social p {
    font-size: 13px;
    }
        .header-top-social span {
        font-size: 13px;
        font-weight: 500;
    }
    .drs-features .drs-feature-item:last-child {
    display: none;
}
.feature-bar.video{
    display: flex;
    align-items: center;
    justify-content: start;
    background: var(--color1);
    padding: 15px 12px;
    border-radius: var(--theme-radius);
    margin: auto;
    column-gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
    row-gap: 15px;
}
.divider {
    display: none;
}
.trust-item.customer-box {
    border-right: 1px solid rgba(255, 255, 255, .3);
    padding-right: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 15px;
}
.testimonial-area.brand-slider .brand-item {
    height: 48px;
        width: 80px;
        min-width: 90px;
        width: 100%;
}
.testimonial-area.brand-slider .trusted-brand-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .brand-item img {
    width: 100%;
    height: 48px;
    object-fit: contain;
}
.trust-item.customer-box .count {
    font-size: 16px;
    margin-bottom: -12px;
}
.trust-bar .trust-item .label {
    font-size: 13px;
}

.testimonial-area.brand-slider .trusted-brand-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-item.active {
    margin-right: 20px !important;
}
.shop-cart-wrapper table.comparison-custom-table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #ececec;
    vertical-align: middle;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color1);
}
.choose-item-icon {
    margin-bottom: 0px;
}
.choose-item-icon img{
     width: 50px!important;
    height: 50px!important;
        margin-bottom: 20px;
    }
.trusted-grid {
    grid-template-columns: repeat(1, 1fr)!important;
}
.video-wrapper {
    position: relative;
    height: 220px !important;
    min-height: 220px!important;
}
.header-top {
    padding: 7px 0;
}
.header-top-right {
    display: block;
}



}

.contact-box2 .contact-title {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 2px;
}
.contact-box2 .contact-text {
    font-size: 30px;
    font-weight: 600;
}
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }
  .category-card {
    padding: 16px 12px;
  }
  .image-wrapper {
    height: 70px;
  }
  section#blog-sec {
    padding: 40px 0;
}
}
@media (max-width: 429px) {
  .testimonial-area.brand-slider .trusted-brand-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-item.active {
        margin-right: 17px !important;
    }
    .trust-item.customer-box {
    padding-right: 10px!important;
    margin-right: 9px!important;
}
.testimonial-area.brand-slider .brand-item {
        min-width: 78px;
    }
}
@media (max-width: 380px) {
        .navbar-brand img {
        width: 120px !important;
    }
    .testimonial-area.brand-slider .brand-item {
        min-width: 66px!important;
    }
        .navbar-brand img {
        width: 140px !important;
    }
    
}






/*new section css*/





    :root {
      --red: #ed1c24;
      --red-dark: #c71018;
      --black: #101010;
      --dark: #171717;
      --gray-bg: #eeeeee;
      --border: #e7e7e7;
      --muted: #555555;
      --shadow: 0 22px 60px rgba(0,0,0,.12);
      --soft-red: #fff0f1;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      /*background: var(--gray-bg);*/
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      color: var(--black);
    }

   .pickup-checklist-section {
    padding: 70px 0;
    background: #f7f7f7;
}



    /* Bootstrap is used only for structure. This fallback keeps the layout correct even if Bootstrap is not loaded. */
    .pickup-shell .row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -16px;
      margin-right: -16px;
    }

    .pickup-shell .row > [class*="col-"] {
      width: 100%;
      padding-left: 16px;
      padding-right: 16px;
    }

    @media (min-width: 992px) {
      .pickup-shell .col-lg-5 { flex: 0 0 41.66666667%; max-width: 41.66666667%; }
      .pickup-shell .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
      .pickup-shell .col-lg-7 { flex: 0 0 58.33333333%; max-width: 58.33333333%; }
    }

    .pickup-shell {
      margin: 0 auto;
      padding: 30px 34px 24px;
      border-radius: var(--theme-radius);
      background: #ffffff;
      border: 1px solid rgba(0,0,0,.04);
          box-shadow: 0 0 6px 0 #0002;
      overflow: hidden;
      position: relative;
    }

    /*.pickup-shell::before {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  left: -130px;*/
    /*  top: -130px;*/
    /*  width: 360px;*/
    /*  height: 360px;*/
    /*  background: radial-gradient(circle, rgba(237,28,36,.08), transparent 68%);*/
    /*  pointer-events: none;*/
    /*}*/

    .pickup-header-row {
      align-items: center;
      position: relative;
      z-index: 2;
      margin-bottom: 20px;
    }

    .pickup-badge {
      width: max-content;
      display: inline-flex;
      align-items: center;
      column-gap: 8px;
      margin-bottom: 14px;
      padding: 10px 14px;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--color1), #f5333a);
      color: #ffffff;
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .2px;
      text-transform: uppercase;
      box-shadow: 0 9px 18px rgba(237,28,36,.22);
    }

    .pickup-badge svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .pickup-title {
      margin: 0;
      color: var(--black);
      font-size: clamp(50px, 4.8vw, 70px);
      line-height: .95;
      font-weight: 700;
      letter-spacing: -3px;
    }

    .pickup-title span {
      display: block;
      color: var(--color1);
    }

    .pickup-intro {
      margin: 0;
    }

    .pickup-progress-card {
      width: 100%;
      max-width: 775px;
      margin-left: auto;
      padding: 22px 30px 24px;
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 6px;
      box-shadow: 0 13px 34px rgba(0,0,0,.08);
    }

    .pickup-progress-card p {
         margin: 0 0 8px;
    color: #111111;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    }

    .pickup-count {
      margin: 0 0 14px;
      color: #222222;
      font-size: 16px;
      line-height: 1;
      font-weight: 500;
    }

    .pickup-count strong { color: var(--color1); font-weight: 700; }

    .pickup-progress-track {
      --fill-width: 57.142%;
      position: relative;
      height: 34px;
      padding: 14px 0;
    }

    .pickup-progress-line {
      position: absolute;
      left: 10px;
      right: 10px;
      top: 50%;
      height: 3px;
      transform: translateY(-50%);
      background: #dedede;
      border-radius: 999px;
      overflow: hidden;
    }

    .pickup-progress-fill {
      width: var(--fill-width);
      height: 100%;
      background: var(--color1);
      border-radius: 999px;
      transition: width .24s ease;
    }

    .pickup-dots {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      align-items: center;
      z-index: 2;
    }

    .pickup-dot {
      width: 23px;
      height: 23px;
      border-radius: 50%;
      justify-self: center;
      display: grid;
      place-items: center;
      background: #d7d7d7;
      color: #ffffff;
      border: 2px solid #d7d7d7;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .pickup-dot.is-done {
      background: var(--color1);
      border-color: var(--color1);
      box-shadow: 0 8px 14px rgba(237,28,36,.25);
    }

    .pickup-dot svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0;
    }

    .pickup-dot.is-done svg { opacity: 1; }

    .pickup-main-row {
      align-items: flex-start;
      position: relative;
      z-index: 2;
      margin-bottom: 4px;
    }

    .pickup-photo-card {
      position: relative;
      height: 390px;
      border-radius: 6px;
      overflow: hidden;
      background: #151515;
      border: 1px solid #d8d8d8;
      box-shadow: 0 10px 24px rgba(0,0,0,.09);
    }

    .pickup-photo-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .pickup-photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.13));
      pointer-events: none;
    }

    .photo-hotspot {
      position: absolute;
      z-index: 4;
      border: 0;
      padding: 0;
      background: transparent;
      border-radius: 999px;
      cursor: pointer;
    }

    .photo-hotspot::before {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 999px;
      border: 2px solid rgba(255,255,255,0);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .photo-hotspot:hover::before,
    .photo-hotspot:focus-visible::before {
      border-color: rgba(255,255,255,.92);
      box-shadow: 0 0 0 6px rgba(237,28,36,.32);
      outline: none;
    }

    .photo-hotspot.trunk { left: 9%; top: 22%; width: 115px; height: 52px; }
    .photo-hotspot.glove { left: 40%; top: 32%; width: 142px; height: 52px; }
    .photo-hotspot.keys { left: 56%; top: 45%; width: 108px; height: 50px; }
    .photo-hotspot.path { left: 72%; top: 68%; width: 160px; height: 52px; }

    .pickup-clipboard-wrap {
      min-height: 390px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 0;
    }

.pickup-clipboard {
    position: relative;
    width: 100%;
    /* max-width: 438px; */
    /* min-height: 390px; */
    margin: 0 auto;
    padding: 15px;
    border-radius: 6px !important;
    background: #84421ef0;
    border: 1px solid rgba(92, 54, 32, .42);
    box-shadow: 0 13px 36px rgba(0, 0, 0, .13);
}

/*    .pickup-clipboard::before {*/
/*    content: "";*/
/*    background-image: url(/images/board.png) !important;*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: -25px;*/
/*    width: 168px;*/
/*    height: 58px;*/
/*    transform: translateX(-50%);*/
/*    border-radius: 6px;*/
/*    background: radial-gradient(circle at 50% 7px, transparent 0 9px, #dddddd 10px, #f8f8f8 16px, transparent 17px), linear-gradient(180deg, #fcfcfc 0%, #c9c9c9 54%, #767676 56%, #ededed 100%);*/
/*    border: 1px solid #999999;*/
/*    box-shadow: 0 6px 13px rgba(0, 0, 0, .20);*/
/*    z-index: 4;*/
/*}*/

.pickup-clipboard::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -34px;
    transform: translateX(-50%);
    width: 190px;
    height: 81px;
    background: url(/images/board.png) center center / contain no-repeat;
    z-index: 4;
}

    /*.pickup-clipboard::after {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  top: 28px;*/
    /*  left: 50%;*/
    /*  width: 104px;*/
    /*  height: 8px;*/
    /*  transform: translateX(-50%);*/
    /*  border-radius: 999px;*/
    /*  background: rgba(0,0,0,.20);*/
    /*  z-index: 5;*/
    /*  filter: blur(.2px);*/
    /*}*/

.checklist-paper {
    width: 100%;
    height: 100%;
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
    border-radius: 6px;
    margin: auto;
}
.chklst-img img {
    border-radius: 6px;
}

    .check-row {
      min-height: 40px;
      display: grid;
      grid-template-columns: 32px 1fr;
      align-items: center;
      column-gap: 12px;
      padding: 0 18px;
      margin: 0;
      color: #111111;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 500;
      border-bottom: 1px solid #eeeeee;
      cursor: pointer;
      transition: background .2s ease;
    }

    .check-row:last-child { border-bottom: 0; }
    .check-row:hover { background: #fff7f7; }
    .check-row.is-flash { animation: flashRow .75s ease; }

    @keyframes flashRow {
      0%, 100% { box-shadow: inset 0 0 0 0 rgba(237,28,36,0); }
      35% { box-shadow: inset 0 0 0 3px rgba(237,28,36,.22); }
    }

    .check-row input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .custom-check {
      width: 24px;
      height: 24px;
      border-radius: 3px;
      display: grid;
      place-items: center;
      border: 2px solid #a8a8a8;
      background: #ffffff;
      transition: background .2s ease, border-color .2s ease;
    }

    .custom-check svg {
      width: 15px;
      height: 15px;
      fill: none;
      stroke: #ffffff;
      stroke-width: 3.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0;
      transition: opacity .16s ease;
    }

    .check-row.is-checked .custom-check {
      background: var(--color1);
      border-color: var(--color1);
    }

    .check-row.is-checked .custom-check svg { opacity: 1; }

    .pickup-timeline-title {
      width: min(720px, 100%);
      margin: 14px auto 11px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      column-gap: 28px;
      color: #111111;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      letter-spacing: -.6px;
    }

    .pickup-timeline-title::before,
    .pickup-timeline-title::after {
      content: "";
      height: 2px;
      background: var(--color1);
    }

    .pickup-timeline {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      column-gap: 35px;
      margin-bottom: 18px;
    }

    .pickup-timeline::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 50%;
      height: 2px;
      background: var(--color1);
      transform: translateY(-50%);
      z-index: 0;
    }

.timeline-card {
    position: relative;
    z-index: 1;
    min-height: 82px;
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    column-gap: 8px;
    padding: 10px 10px;
    border-radius: var(--theme-radius);
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

    .timeline-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--color1);
      color: #ffffff;
      box-shadow: 0 10px 18px rgba(237,28,36,.18);
    }

    .timeline-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .timeline-card h3 {
      margin: 0 0 6px;
      color: #111111;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
    }

    .timeline-card p {
      margin: 0;
      color: #333333;
      line-height: 1.35;
      font-weight: 400;
    }

.pickup-cta-strip {
    display: grid;
    grid-template-columns: 0.6fr auto 1.45fr;
    align-items: center;
    column-gap: 28px;
    min-height: 82px;
    padding: 15px 15px;
    border-radius: var(--theme-radius);
    background: var(--color2);
    box-shadow: 0 13px 30px rgba(0, 0, 0, .16);
}

.cta-question {
        display: grid;
    grid-template-columns: 57px 1fr;
    align-items: center;
    column-gap: 8px;
    color: #ffffff;
    font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    /* letter-spacing: -.7px; */
    border-right: 1px solid rgba(255, 255, 255, .25);
    padding-right: 15px;
}

    .cta-question-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #ffffff;
      border: 1px solid rgba(255,255,255,.65);
      background: rgba(255,255,255,.04);
    }

    .cta-question-icon svg,
    .cta-badge svg,
    .pickup-cta-button svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

.pickup-cta-button {
    font-size: 15px;
    color: #fff;
    padding: 9px 10px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: var(--theme-radius);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--color1);
    box-shadow: var(--box-shadow);
    z-index: 1;
    border: 1px solid var(--color1);
  display:flex;
  gap:6px;
  align-items:center;
}
.pickup-cta-button:hover {
   background: #fff;
    color: var(--color1);
    border: 1px solid #fff;
}

    .pickup-cta-button svg { width: 24px; height: 24px; }

    .cta-badges {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      column-gap: 0;
    }

    .cta-badge {
          display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    column-gap: 8px;
    padding: 0 18px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, .18);
    }

    .cta-badge span {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(255,255,255,.04);
    }

.junk-car.common-banner {
background-size: cover;
    height: 320px;
    position: relative;
    background-repeat: no-repeat;
}
.junk-car.common-banner .hero-content h1.hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin: 15px 0 20px;
    text-transform: capitalize;
    text-shadow: 0.02em 0.02em 0.02em rgba(35, 35, 35, 0.95);
    z-index: 1;
    position: relative;
}
.junk-car.common-banner::before {
    position: absolute;
    top: 0;
    width: 100%;
    background: #000;
    height: 100%;
    left: 0;
    right: 0;
    content: '';
    opacity: 0.5;
}
    .cta-badge svg { width: 21px; height: 21px; }

    @media (max-width: 1320px) {
      .pickup-shell { padding: 34px 28px 26px; }
      .pickup-photo-card { height: 390px; }
      .pickup-clipboard-wrap { min-height: 390px; }
      .pickup-clipboard { min-height: 390px; padding: 54px 23px 22px; }
      .check-row { min-height: 39px; font-size: 14px; }
      .pickup-timeline { column-gap: 24px; }
      .timeline-card { grid-template-columns: 58px 1fr; padding: 14px 12px; }
      .timeline-icon { width: 54px; height: 54px; }
      .pickup-cta-strip { column-gap: 18px; padding: 16px 20px; }
      .cta-question { font-size: 25px; padding-right: 18px; }
      .pickup-cta-button { min-width: 290px; }
      .cta-badge { padding: 0 12px; }
    }

    @media (max-width: 991px) {
      .pickup-checklist-section { padding: 18px 10px; }
      .pickup-shell { border-radius: 18px; padding: 24px 16px 18px; }
      .pickup-header-row { margin-bottom: 18px; }
      .pickup-title { font-size: clamp(38px, 10vw, 58px); letter-spacing: -1.8px; }
      .pickup-progress-card { margin: 22px 0 0; max-width: none; padding: 17px 18px 19px; }
      .pickup-main-row .col-lg-5 { margin-top: 42px; }
      .pickup-photo-card { height: auto; min-height: 0; }
      .pickup-photo-card img { height: auto; object-fit: contain; }
      .pickup-clipboard-wrap { min-height: 0; }
      .pickup-clipboard { max-width: 650px; min-height: 0; }
      .check-row { font-size: 14px; min-height: 42px; }
      .pickup-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 18px; column-gap: 18px; }
      .pickup-timeline::before { display: none; }
      .pickup-cta-strip { grid-template-columns: 1fr; row-gap: 16px; }
      .cta-question { border-right: 0; padding-right: 0; }
      .pickup-cta-button { min-width: 0; width: 100%; }
      .cta-badges { grid-template-columns: 1fr; row-gap: 10px; }
      .cta-badge { border-left: 0; padding: 0; }
    }
    
    section.hme-pge-blg .blog-area.bg.py-80 {
    background: #fff;
}

    @media (max-width: 575px) {
        
        .junk-car.common-banner {
    padding: 40px 0;
}
.junk-car.common-banner .hero-content h1.hero-title {
    font-size: 35px;
    text-align: center;
        z-index: 1;
    }
    
    .th-social a {
   
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #d4d4d475;
}

.author-card .author-content .author-name {
  font-size: 30px;
}
      .pickup-badge { font-size: 11px; padding: 8px 10px; }
      .pickup-progress-card p { font-size: 14px; }
      .pickup-count { font-size: 12px; }
      .pickup-dot { width: 17px; height: 17px; }
      .pickup-photo-card { border-radius: 10px; }
      .photo-hotspot.trunk { left: 9%; top: 21%; width: 75px; height: 36px; }
      .photo-hotspot.glove { left: 38%; top: 31%; width: 90px; height: 36px; }
      .photo-hotspot.keys { left: 55%; top: 45%; width: 68px; height: 36px; }
      .photo-hotspot.path { left: 70%; top: 67%; width: 100px; height: 36px; }
      .pickup-clipboard { padding: 21px 14px 16px; }
      .pickup-clipboard::before { width: 130px; height: 60px; top: -22px; }
      .check-row { grid-template-columns: 27px 1fr; column-gap: 8px; padding: 0 10px; font-size: 14px; min-height: 31px; }
      .custom-check { width: 18px; height: 18px; }
      .pickup-timeline-title { font-size: 16px; column-gap: 12px; margin-top: 16px; }
      .pickup-timeline { grid-template-columns: 1fr; }
      .timeline-card { min-height: 78px; grid-template-columns: 52px 1fr; }
      .timeline-icon { width: 48px; height: 48px; }
          .timeline-card h3 {
        font-size: 18px;
        font-weight: 700;
    }
      .pickup-cta-strip { padding: 16px; }
      .cta-question { font-size: 22px; grid-template-columns: 48px 1fr; }
      .cta-question-icon { width: 48px; height: 48px; }
      .pickup-cta-button { height: 52px; font-size: 16px; }
    }


/*banner-bottom-sec*/

    .brand-offer-section {
      /*background: #edf5fb;*/
      padding: 70px 0;
    }

    .brand-offer-card {
      background: #ffffff;
      border: 1px solid #dfe9f3;
      border-radius: var(--theme-radius);
      overflow: hidden;
      /*box-shadow: 0 18px 45px rgba(7, 27, 69, 0.12);*/
    }

    .brand-hero-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      min-height: 550px;
    }

    .brand-visual-panel {
      background: #f7fbff ;
      border-right: 1px solid #dfe9f3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .brand-visual-inner {
      text-align: center;
    }

    .brand-visual-inner p.brand_name {
      color: #050b18;
      font-size: 58px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: 2px;
      margin: 0;
    }

    .brand-content-panel {
      padding: 40px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .brand-kicker {
       display: inline-block;
    width: fit-content;
    color: var(--color1);
    border: 1px solid var(--color1);
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

    .brand-content-panel h1 {
    color: #000;
    font-size: 36px;
    line-height: 1.16;
    font-weight: 600;
    margin: 0 0 22px;
}

    .brand-content-panel h1 span {
      color: var(--color1);
    }

    .brand-content-panel p {
      color: #24314d;
      font-size: 17px;
      line-height: 1.72;
      margin: 0 0 24px;
    }

    .brand-content-panel p strong {
      color: var(--color1);
      font-weight: 600;
    }

    .brand-rating-row {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .brand-stars {
      display: flex;
      gap: 3px;
      color: #ffb400;
      font-size: 21px;
    }

    .brand-rating-row span {
      color: #000;
      font-size: 15px;
      font-weight: 700;
    }

    .brand-rating-row span strong {
      color: var(--color1);
    }

    .pickup-highlight-box {
      border: 1px solid var(--color1);
      border-radius: var(--theme-radius);
      padding: 15px 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .pickup-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .pickup-clock {
      width: 52px;
      height: 52px;
      border: 3px solid var(--color1);
      color: var(--color1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex: 0 0 auto;
    }

    .pickup-highlight-box p.average-time {
      color: var(--color1);
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 3px;
    }

    .pickup-highlight-box p {
      color: #061b47;
      font-size: 14px;
      margin: 0;
      line-height: 1.3;
    }

    .pickup-bolt {
      color: var(--color1);
      font-size: 38px;
      line-height: 1;
    }

    .offer-note {
      color: #24314d;
      font-size: 15px;
    }

    .offer-note strong {
          display: inline-block;
    background: #f7f7f7;
    color: var(--color1);
    border-radius: var(--theme-radius);
    padding: 6px 13px;
    margin-left: 8px;
    font-weight: 600;
    border: 1px solid #d4d4d45c;
    }

    .brand-action-bar {
        background: #f7f7f7;
    color: #ffffff;
    padding: 34px 60px;
}

    .call-block {
      text-align: center;
      border-right: 1px solid rgb(0 0 0 / 13%);
      padding-right: 35px;
    }

    .call-block span {
      color: var(--color1);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0 0 7px;
    }

    .call-number {
      display: block;
      align-items: center;
      gap: 12px;
      color: #000;
      font-size: 26px;
      line-height: 1.1;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 18px;
    }

    .call-number:hover {
      color: var(--color1);
    }

    .call-number i {
      color: #ff263d;
      font-size: 27px;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      align-items: center;
      gap: 25px;
    }

    .hours-grid strong {
      display: block;
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .hours-grid span {
      display: block;
      color: #ffffff;
      font-size: 21px;
      line-height: 1.18;
      font-weight: 600;
    }

    .hours-grid small {
      display: block;
      color: #dbe8ff;
      font-size: 13px;
      margin-top: 4px;
    }

    .hours-divider {
      width: 1px;
      height: 62px;
      background: rgba(255, 255, 255, 0.45);
    }

    .quote-block {
      padding-left: 35px;
    }

    .quote-block h2 {
      color: #000;
      font-size: 23px;
      line-height: 1.35;
      font-weight: 600;
      margin: 0 0 15px;
    }


    .red-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color1);
    color: #ffffff;
    border-radius: var(--theme-radius);
    padding: 10px 19px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

    .red-quote-btn:hover {
 background: var(--color2);
 color: #ffffff;

    }

    .brand-benefit-strip {
      background: #ffffff;
      padding: 27px 58px 30px;
    }

    .benefit-box {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    

    .benefit-icon {
         width: 45px;
    height: 45px;
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex: 0 0 auto;
    background: var(--color1);
    color: #fff !important;
    font-size: 22px !important;
    border-radius: var(--theme-radius);
    }

    .benefit-box h3 {
      color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0px;
    }

    .benefit-box p {
      color: #667085;
      font-size: 14px;
      margin: 0;
    }

    @media (max-width: 991px) {
      .brand-offer-section {
        padding: 35px 0;
      }

      .brand-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .brand-visual-panel {
        min-height: 290px;
        border-right: 0;
        border-bottom: 1px solid #dfe9f3;
        padding: 38px 25px;
      }

      .brand-logo-img {
        max-width: 180px;
      }

      .brand-visual-inner p.brand_name {
        font-size: 44px;
      }

      .brand-content-panel {
        padding: 35px 28px;
      }

      .brand-content-panel h1 {
        font-size: 32px;
      }

      .brand-content-panel p {
        font-size: 15px;
      }

      .brand-action-bar {
        padding: 32px 28px;
      }

      .quote-block {
        padding-left: 0;
        text-align: center;
      }

      .quote-block h2 {
        margin-left: auto;
        margin-right: auto;
      }

      .brand-benefit-strip {
        padding: 28px;
      }

      .benefit-box {
        justify-content: flex-start;
      }
    }

    @media (max-width: 575px) {
      .brand-offer-card {
        border-radius: 14px;
      }

      .brand-visual-panel {
              min-height: max-content;
        padding: 15px;
    }
    .brand-content-panel p {
        display: none;
    }
    .pickup-highlight-box .pickup-left p {
    display: block !important;
}
    .brand-kicker {
    display: none;
}
.brand-rating-row span {
    color: #000;
    font-size: 14px;
    font-weight: normal;
}
      .brand-content-panel h1 {
        font-size: 28px;
             margin-bottom: 10px;
    }
    .brand-rating-row {
    margin-bottom: 10px;
}

      .pickup-highlight-box {
        padding: 14px;
             margin-bottom: 10px;
    }

      .pickup-clock {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }

      .pickup-highlight-box p.average-time {
        font-size: 16px;
      }

      .pickup-highlight-box p {
        font-size: 13px;
      }

      .pickup-bolt {
        font-size: 30px;
      }

      .call-number {
        font-size: 24px;
      }

      .hours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .hours-divider {
        width: 100%;
        height: 1px;
      }

     

      .offer-note strong {
              margin-top: 5px;
        margin-left: 0;
        font-size: 14px;
    }
    }
    
     .section-padding {
      padding: 70px 0;
      background: #f7f7f7;
}

    .hero-bmw {
      position: relative;
      background:
        linear-gradient(90deg, rgba(17,20,23,0.94), rgba(17,20,23,0.72)),
        url('/images/banner/junk-bmw-car-removal.webp') center/cover no-repeat;
      padding: 110px 0;
      color: #fff;
      overflow: hidden;
    }

    .hero-bmw .eyebrow {
      display: inline-block;
      background: rgba(231, 25, 32, 0.16);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.25);
      padding: 8px 14px;
      border-radius: 50px;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .hero-bmw h1 {
      font-size: 54px;
      line-height: 1.08;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero-bmw p {
      font-size: 18px;
      color: #e8e8e8;
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .hero-points span {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 9px 14px;
      border-radius: 50px;
      font-size: 14px;
    }

    .btn-main {
      background: var(--color1);
      color: #fff;
      border-radius: 8px;
      padding: 14px 26px;
      font-weight: 700;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: 0.25s ease;
    }

    .btn-main:hover {
      background: #c9141a;
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-outline-light-custom {
      color: #fff;
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 8px;
      padding: 14px 26px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: 0.25s ease;
    }

    .btn-outline-light-custom:hover {
      background: #fff;
      color: var(--dark);
    }

    .quote-card {
      background: #fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.22);
      color: var(--dark);
    }

    .quote-card h3 {
      font-weight: 800;
      margin-bottom: 8px;
    }

    .quote-card p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 20px;
    }

    .form-control,
    .form-select {
      height: 50px;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-size: 15px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--color1);
      box-shadow: 0 0 0 0.2rem rgba(231,25,32,0.12);
    }

    .section-title {
      margin-bottom: 45px;
    }

    .section-title .sub-title {
      color: var(--color1);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-size: 14px;
      margin-bottom: 10px;
      display: block;
    }

    .section-title h2 {
      font-size: 40px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto;
    }

    .info-card {
     background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--theme-radius);
    padding: 15px;
    height: 100%;
    transition: 0.25s ease;
        display: flex;
    gap: 12px;
    }

    .info-card:hover {
      border-color: var(--color1);
    }

    .info-card .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: rgba(231,25,32,0.1);
      color: var(--color1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 18px;
    }
.info-card .card-icon {
    background: var(--color1);
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 22px;
    color: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
    border-radius: var(--theme-radius);
    margin-top: 5px;
    align-items: center;
}
    .info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    }
section.section-padding.affects-your-cars ul.check-list {
    column-count: 2;
}
    .info-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .split-section {
      background: #f7f7f7;
    }

    .image-box {
      position: relative;
          border-radius: var(--theme-radius);
      overflow: hidden;
    }

    .image-box img {
      width: 100%;
      display: block;
          border-radius: var(--theme-radius);
    }

    .floating-badge {
      position: absolute;
      left: 24px;
      bottom: 24px;
      background: #fff;
      padding: 18px 22px;
          border-radius: var(--theme-radius);
      box-shadow: 0 16px 42px rgba(0,0,0,0.18);
    }

    .floating-badge strong {
      display: block;
      color: var(--dark);
      font-size: 24px;
      line-height: 1;
    }

    .floating-badge span {
      color: var(--muted);
      font-size: 14px;
    }

    .check-list {
      padding: 0;
      margin: 24px 0 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 34px;
      margin-bottom: 14px;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      width: 24px;
      height: 24px;
      background: var(--color1);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
    }

    .process-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 34px 28px;
      height: 100%;
    }

    .step-number {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--dark);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 18px;
    }

ul.model-box {
    column-count: 4;
}
    .model-box li {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      font-weight: 700;
      color: var(--color2);
      text-align: center;
      transition: 0.25s ease;
    margin-bottom: 15px;
}
ul.model-box li a:hover {
    color: #000;
}

    .cta-section {
      background:
        linear-gradient(90deg, rgba(231,25,32,0.95), rgba(17,20,23,0.95)),
        url('/images/banner/junk-car-cta.webp') center/cover no-repeat;
      color: #fff;
      padding: 70px 0;
      border-radius: 0;
    }

    .cta-section h2 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .cta-section p {
      color: #f2f2f2;
      margin-bottom: 0;
      max-width: 680px;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 12px !important;
      margin-bottom: 14px;
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 800;
      color: var(--dark);
      background: #fff;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: var(--color1);
      background: rgba(231,25,32,0.06);
      box-shadow: none;
    }

    .disclaimer {
      background: #fff8f8;
      border: 1px solid rgba(231,25,32,0.18);
      border-radius: 14px;
      padding: 18px;
      color: var(--muted);
      font-size: 14px;
    }



 /* Reset all to white */
 .condition-item {
        background-color: #efefef;
    }



    @media (min-width: 576px) {
          .condition-grid .condition-item:nth-child(10n+2),
.condition-grid .condition-item:nth-child(10n+4),
.condition-grid .condition-item:nth-child(10n+6),
.condition-grid .condition-item:nth-child(10n+8),
.condition-grid .condition-item:nth-child(10n+10) {
    background-color: #fff;
}  
    }
    @media (max-width: 991px) {
      .hero-bmw {
        padding: 80px 0;
      }

      .hero-bmw h1 {
        font-size: 40px;
      }

      .quote-card {
        margin-top: 35px;
      }

      .section-title h2 {
        font-size: 32px;
      }
    }

    @media (max-width: 575px) {
      .hero-bmw h1 {
        font-size: 34px;
      }

      .section-padding {
        padding: 40px 0;
      }

      .cta-section h2 {
        font-size: 30px;
      }
      .trust-banner-section {
    padding: 40px 0 !important;
}

    .condition-grid .condition-item:nth-child(4n+2),
    .condition-grid .condition-item:nth-child(4n+3) {
        background-color: #fff;
    }
    }
    
    .trust-banner-section {
    padding: 70px 0;
    background: #ffffff;
  }

  .trust-banner-box {
    max-width: 1180px;
    margin: 0 auto;
    border: 2px solid var(--color1);
    border-radius: 7px;
    min-height: 126px;
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: center;
    padding: 18px 70px;
    position: relative;
    background: #ffffff;
    overflow: visible;
  }

  .trust-banner-left h3 {
    color: var(--color1);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
  }

  .trust-banner-left p {
    color: #2d2f3d;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .trust-check-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
  }

  .trust-banner-flag {
    text-align: center;
    position: relative;
  }

  .trust-banner-flag svg {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: -35px auto -35px;
  }

  .trust-banner-right {
    text-align: left;
    padding-left: 55px;
  }

  .trust-banner-right h3 {
    color: #000;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 600;
    margin: 0;
  }

  @media (max-width: 991px) {
    .trust-banner-box {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
      padding: 28px 25px;
    }

    .trust-banner-left p {
      justify-content: center;
    }

    .trust-banner-flag svg {
      width: 200px;
      margin: -10px auto;
    }

    .trust-banner-right {
      text-align: center;
      padding-left: 0;
    }
  }

  @media (max-width: 575px) {
    .trust-banner-left h3,
    .trust-banner-left p,
    .trust-banner-right h3 {
      font-size: 20px;
    }

    .trust-banner-box {
      padding: 24px 18px;
    }

    .trust-banner-flag svg {
      width: 190px;
    }
  }
  
 

    .site-header {
      background: #fff;
      padding: 18px 0;
      box-shadow: 0 8px 24px rgba(15, 35, 65, 0.06);
    }

    .site-logo img {
      max-width: 150px;
    }

    .main-nav a {
      color: var(--dark);
      font-weight: 700;
      margin: 0 18px;
    }

    .header-phone {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--dark);
      font-weight: 600;
      font-size: 24px;
    }

    .header-phone i {
      color: var(--secondary);
      font-size: 26px;
    }

    .header-phone span {
      display: block;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
      line-height: 1;
    }

    .btn-header {
      background: var(--color1);
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: 0.25s ease;
    }

    .btn-header:hover {
      background: #0648ad;
      color: #fff;
    }

    .brand-page-wrapper {
      padding: 45px 0 70px;
    }

    .breadcrumb-box {
      background: #fff;
      border-radius: 12px;
      padding: 16px 22px;
      box-shadow: 0 8px 24px rgba(15, 35, 65, 0.06);
      font-size: 15px;
      margin-bottom: 26px;
    }

    .breadcrumb-box a {
      color: var(--dark);
      font-weight: 800;
    }

    .breadcrumb-box span {
      margin: 0 8px;
      color: var(--muted);
    }

    .brand-hero-card {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(15, 35, 65, 0.12);
      border: 1px solid var(--border);
    }

    .brand-logo-panel {
      height: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        url('/images/patterns/tire-tracks-light.webp') center bottom / 88% no-repeat,
        linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
      border-right: 1px solid var(--border);
    }

    .brand-logo-inner {
      text-align: center;
      padding: 40px;
    }

    .brand-logo-img {
      max-width: 220px;
      width: 100%;
      height: auto;
      margin-bottom: 0px;
    }

    .brand-logo-inner h2 {
     color: var(--color2);
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    }

    .brand-hero-content {
      padding: 60px 70px;
    }

    .brand-label {
      display: inline-block;
      background: var(--soft-blue);
      color: var(--color1);
      font-size: 14px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .brand-hero-content h1 {
      font-size: 48px;
      line-height: 1.12;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .brand-hero-content h1 span {
      color: var(--color1);
    }

    .brand-hero-content p {
      font-size: 18px;
      color: var(--text);
      margin-bottom: 24px;
    }

    .rating-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .stars {
      color: #ffb400;
      font-size: 25px;
      letter-spacing: 2px;
    }

    .rating-row span {
      color: var(--text);
      font-weight: 700;
    }

    .pickup-info-box {
      border: 2px solid #b8d0ff;
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 22px;
    }

    .pickup-icon {
      width: 56px;
      height: 56px;
      background: var(--soft-blue);
      color: var(--color1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      flex: 0 0 auto;
    }

    .pickup-info-box strong {
      display: block;
      color: var(--color1);
      font-size: 21px;
      margin-bottom: 2px;
    }

    .pickup-info-box p {
      margin: 0;
      font-size: 15px;
      color: var(--text);
    }

    .price-line {
      font-size: 17px;
      color: var(--text);
    }

    .price-line strong {
      background: #dbeafe;
      color: var(--color1);
      padding: 6px 12px;
      border-radius: 8px;
      margin-left: 8px;
      display: inline-block;
    }

    .brand-cta-bar {
      background: linear-gradient(90deg, var(--color2) 0%, #075bd8 100%);
      padding: 34px 60px;
      color: #fff;
    }

    .call-box span {
      display: block;
      font-size: 17px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .call-box a {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 34px;
      font-weight: 600;
      line-height: 1.1;
    }

    .call-box a i {
      color: var(--secondary);
    }

    .call-box p {
      margin: 8px 0 0;
      color: #dbeafe;
    }

    .quote-box h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .btn-quote {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: var(--secondary);
      color: #fff;
      padding: 17px 34px;
      border-radius: 10px;
      font-size: 20px;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(239, 35, 60, 0.3);
      transition: 0.25s ease;
    }

    .btn-quote:hover {
      background: #d71930;
      color: #fff;
    }

    .brand-benefits {
      padding: 28px 50px 34px;
      background: #fff;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: left;
    }

    .benefit-icon {
      font-size: 34px;
      color: var(--color1);
    }

    .benefit-item h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      margin: 0;
    }

    .benefit-item p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .white-section {
      background: #fff;
    }

    .section-title {
      margin-bottom: 42px;
    }

    .section-title .sub-title {
      display: inline-block;
      color: var(--color1);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 10px;
    }

    .section-title h2 {
      color: var(--dark);
      font-size: 38px;
      line-height: 1.2;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto;
    }

    .content-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 34px;
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      height: 100%;
    }

    .content-card h3 {
      color: var(--dark);
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .simple-table {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
    }

    .simple-table table {
      margin: 0;
    }

    .simple-table th {
      background: #f2f6fb;
      color: var(--dark);
      font-weight: 600;
      font-size: 15px;
    }

    .simple-table td {
      color: var(--text);
      font-size: 15px;
    }

    .pickup-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      height: 100%;
    }

    .pickup-card img {
      width: 100%;
      height: 185px;
      object-fit: cover;
    }

    .pickup-card-body {
      padding: 18px;
    }

    .pickup-card h4 {
      color: var(--dark);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pickup-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .zip-quote-box {
      background: #fff;
      border-radius: 18px;
      padding: 26px;
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.08);
      border: 1px solid var(--border);
    }

    .zip-quote-box h3 {
      color: var(--dark);
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 0;
    }

    .zip-input {
      height: 54px;
      border-radius: 8px;
      border: 1px solid var(--border);
      padding: 0 16px;
      width: 100%;
    }

    .btn-dark-submit {
      height: 54px;
      border: 0;
      background: var(--dark);
      color: #fff;
      border-radius: 8px;
      font-weight: 600;
      padding: 0 26px;
    }

    .step-card {
      background: transparent;
      text-align: center;
      padding: 10px 20px;
      position: relative;
    }

    .step-card h3 {
      color: var(--dark);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }


    .search-cloud {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .search-cloud a {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      color: var(--color1);
      font-weight: 800;
      font-size: 14px;
      transition: 0.25s ease;
    }

    .search-cloud a:hover {
      background: var(--color1);
      color: #fff;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 12px !important;
      margin-bottom: 14px;
      overflow: hidden;
    }

    .accordion-button {
      color: var(--dark);
      font-weight: 600;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: var(--soft-blue);
      color: var(--color1);
      box-shadow: none;
    }

    .review-card {
      background: #fff;
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      padding: 34px;
      max-width: 850px;
      margin: 0 auto;
    }

    .review-card .stars {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .review-card h4 {
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .state-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .state-grid a {
      background: #fff;
      border: 1px solid var(--border);
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--color1);
      font-size: 14px;
      font-weight: 800;
      text-align: center;
      transition: 0.25s ease;
    }

    .state-grid a:hover {
      background: var(--color1);
      color: #fff;
    }

    .final-cta {
      background: linear-gradient(90deg, var(--color2) 0%, #075bd8 100%);
      color: #fff;
      padding: 70px 0;
    }

    .final-cta h2 {
      font-size: 38px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .final-cta p {
      color: #dbeafe;
      margin-bottom: 0;
      max-width: 720px;
    }

    .site-footer {
      background: #dfeaf2;
      padding: 55px 0 25px;
    }

    .site-footer h4 {
      color: var(--dark);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .site-footer a,
    .site-footer p {
      color: var(--text);
      font-size: 14px;
      margin-bottom: 8px;
      display: block;
    }

    .copyright {
      border-top: 1px solid #cbd8e2;
      margin-top: 35px;
      padding-top: 22px;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 1199px) {
      .brand-hero-content {
        padding: 50px 45px;
      }

      .brand-hero-content h1 {
        font-size: 42px;
      }


      .state-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 991px) {
      .site-header .row {
        gap: 20px;
      }

      .main-nav {
        text-align: center;
      }

      .brand-logo-panel {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .brand-hero-content {
        padding: 40px 30px;
      }

      .brand-hero-content h1 {
        font-size: 36px;
      }

      .brand-cta-bar {
        padding: 32px 30px;
      }

      .quote-box {
        text-align: left;
      }

      .benefit-item {
        justify-content: flex-start;
      }

      .search-cloud {
        grid-template-columns: repeat(2, 1fr);
      }

      .state-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }



    .site-header {
      background: #fff;
      padding: 18px 0;
      box-shadow: 0 8px 24px rgba(15, 35, 65, 0.06);
    }

    .site-logo img {
      max-width: 150px;
    }

    .main-nav a {
      color: var(--dark);
      font-weight: 700;
      margin: 0 18px;
    }

    .header-phone {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--dark);
      font-weight: 600;
      font-size: 24px;
    }

    .header-phone i {
      color: var(--secondary);
      font-size: 26px;
    }

    .header-phone span {
      display: block;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
      line-height: 1;
    }

    .btn-header {
      background: var(--color1);
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: 0.25s ease;
    }

    .btn-header:hover {
      background: #0648ad;
      color: #fff;
    }

    .brand-page-wrapper {
      padding: 45px 0 70px;
    }

    .breadcrumb-box {
      background: #fff;
      border-radius: 12px;
      padding: 16px 22px;
      box-shadow: 0 8px 24px rgba(15, 35, 65, 0.06);
      font-size: 15px;
      margin-bottom: 26px;
    }

    .breadcrumb-box a {
      color: var(--dark);
      font-weight: 800;
    }

    .breadcrumb-box span {
      margin: 0 8px;
      color: var(--muted);
    }

    .brand-hero-card {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(15, 35, 65, 0.12);
      border: 1px solid var(--border);
    }

    .brand-logo-panel {
      height: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        url('/images/patterns/tire-tracks-light.webp') center bottom / 88% no-repeat,
        linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
      border-right: 1px solid var(--border);
    }

    .brand-logo-inner {
      text-align: center;
      padding: 40px;
    }

    .brand-logo-inner h2 {
      font-size: 58px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #111827;
      margin: 0;
    }

    .brand-hero-content {
      padding: 60px 70px;
    }

    .brand-label {
      display: inline-block;
      background: var(--soft-blue);
      color: var(--color1);
      font-size: 14px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .brand-hero-content h1 {
      font-size: 48px;
      line-height: 1.12;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .brand-hero-content h1 span {
      color: var(--color1);
    }

    .brand-hero-content p {
      font-size: 18px;
      color: var(--text);
      margin-bottom: 24px;
    }

    .rating-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .stars {
      color: #ffb400;
      font-size: 25px;
      letter-spacing: 2px;
    }

    .rating-row span {
      color: var(--text);
      font-weight: 700;
    }

    .pickup-info-box {
      border: 2px solid #b8d0ff;
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 22px;
    }

    .pickup-icon {
      width: 56px;
      height: 56px;
      background: var(--soft-blue);
      color: var(--color1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      flex: 0 0 auto;
    }

    .pickup-info-box strong {
      display: block;
      color: var(--color1);
      font-size: 21px;
      margin-bottom: 2px;
    }

    .pickup-info-box p {
      margin: 0;
      font-size: 15px;
      color: var(--text);
    }

    .price-line {
      font-size: 17px;
      color: var(--text);
    }

    .price-line strong {
      background: #dbeafe;
      color: var(--color1);
      padding: 6px 12px;
      border-radius: 8px;
      margin-left: 8px;
      display: inline-block;
    }

    .brand-cta-bar {
      background: linear-gradient(90deg, var(--color2) 0%, #075bd8 100%);
      padding: 34px 60px;
      color: #fff;
    }

    .call-box span {
      display: block;
      font-size: 17px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .call-box a {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 34px;
      font-weight: 600;
      line-height: 1.1;
    }

    .call-box a i {
      color: var(--secondary);
    }

    .call-box p {
      margin: 8px 0 0;
      color: #dbeafe;
    }

    .quote-box h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .btn-quote {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: var(--secondary);
      color: #fff;
      padding: 17px 34px;
      border-radius: 10px;
      font-size: 20px;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(239, 35, 60, 0.3);
      transition: 0.25s ease;
    }

    .btn-quote:hover {
      background: #d71930;
      color: #fff;
    }

    .brand-benefits {
      padding: 28px 50px 34px;
      background: #fff;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: left;
    }

    .benefit-icon {
      font-size: 34px;
      color: var(--color1);
    }

    .benefit-item h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      margin: 0;
    }

    .benefit-item p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .white-section {
      background: #fff;
    }

    .section-title {
      margin-bottom: 42px;
    }

    .section-title .sub-title {
      display: inline-block;
      color: var(--color1);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 10px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto;
    }

    .content-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 34px;
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      height: 100%;
    }

    .content-card h3 {
      color: var(--dark);
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .simple-table {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
    }

    .simple-table table {
      margin: 0;
    }

    .simple-table th {
      background: #f2f6fb;
      color: var(--dark);
      font-weight: 600;
      font-size: 15px;
    }

    .simple-table td {
      color: var(--text);
      font-size: 15px;
    }

    .pickup-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      height: 100%;
    }

    .pickup-card img {
      width: 100%;
      height: 185px;
      object-fit: cover;
    }

    .pickup-card-body {
      padding: 18px;
    }

    .pickup-card h4 {
      color: var(--dark);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pickup-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .zip-quote-box {
      background: #fff;
      border-radius: 18px;
      padding: 26px;
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.08);
      border: 1px solid var(--border);
    }

    .zip-quote-box h3 {
      color: var(--dark);
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 0;
    }

    .zip-input {
      height: 54px;
      border-radius: 8px;
      border: 1px solid var(--border);
      padding: 0 16px;
      width: 100%;
    }

    .btn-dark-submit {
      height: 54px;
      border: 0;
      background: var(--dark);
      color: #fff;
      border-radius: 8px;
      font-weight: 600;
      padding: 0 26px;
    }

    .step-card {
      background: transparent;
      text-align: center;
      padding: 10px 20px;
      position: relative;
    }

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: var(--color1);
    color: #fff;
    border-radius: var(--theme-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon img {
    max-width: 40px;
}

    .step-card h3 {
      color: var(--color2);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }


    .search-cloud {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .search-cloud a {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      color: var(--color1);
      font-weight: 800;
      font-size: 14px;
      transition: 0.25s ease;
    }

    .search-cloud a:hover {
      background: var(--color1);
      color: #fff;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 12px !important;
      margin-bottom: 14px;
      overflow: hidden;
    }

    .accordion-button {
      color: var(--dark);
      font-weight: 600;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: var(--soft-blue);
      color: var(--color1);
      box-shadow: none;
    }

    .review-card {
      background: #fff;
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(15, 35, 65, 0.06);
      padding: 34px;
      max-width: 850px;
      margin: 0 auto;
    }

    .review-card .stars {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .review-card h4 {
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .state-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .state-grid a {
      background: #fff;
      border: 1px solid var(--border);
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--color1);
      font-size: 14px;
      font-weight: 800;
      text-align: center;
      transition: 0.25s ease;
    }

    .state-grid a:hover {
      background: var(--color1);
      color: #fff;
    }

    .final-cta {
      background: linear-gradient(90deg, var(--color2) 0%, #075bd8 100%);
      color: #fff;
      padding: 70px 0;
    }

    .final-cta h2 {
      font-size: 38px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .final-cta p {
      color: #dbeafe;
      margin-bottom: 0;
      max-width: 720px;
    }

    .site-footer {
      background: #dfeaf2;
      padding: 55px 0 25px;
    }

    .site-footer h4 {
      color: var(--dark);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .site-footer a,
    .site-footer p {
      color: var(--text);
      font-size: 14px;
      margin-bottom: 8px;
      display: block;
    }

    .copyright {
      border-top: 1px solid #cbd8e2;
      margin-top: 0px;
      padding-top: 22px;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 1199px) {
      .brand-hero-content {
        padding: 50px 45px;
      }

      .brand-hero-content h1 {
        font-size: 42px;
      }

      .state-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 991px) {
      .site-header .row {
        gap: 20px;
      }

      .main-nav {
        text-align: center;
      }

      .brand-logo-panel {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .brand-hero-content {
        padding: 40px 30px;
      }

      .brand-hero-content h1 {
        font-size: 36px;
      }

      .brand-cta-bar {
        padding: 32px 30px;
      }

      .quote-box {
        text-align: left;
      }

      .benefit-item {
        justify-content: flex-start;
      }

      .search-cloud {
        grid-template-columns: repeat(2, 1fr);
      }

      .state-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 575px) {
      .section-padding {
        padding: 40px 0;
      }

.section-title {
    margin-bottom: 20px;
}
      .brand-page-wrapper {
        padding: 30px 0 55px;
      }

      .brand-hero-content h1 {
        font-size: 31px;
      }

      .brand-hero-content p {
        font-size: 16px;
      }

      .brand-logo-img {
        max-width: 100px;
      margin-bottom: 0;
    }
      .brand-visual-inner p.brand_name {
        display: none;
    }
    .brand-content-panel {
        padding: 15px;
    }
        .brand-benefit-strip {
        padding: 15px;
    }
    .call-block {
             padding-bottom: 10px;
        border-right: none;
        border-bottom: 1px solid rgb(0 0 0 / 13%);
           padding-right: 0;
    }
      .brand-logo-inner h2 {
        font-size: 42px;
      }

      .call-box a {
        font-size: 25px;
      }

      .btn-quote {
        width: 100%;
        justify-content: center;
      }

      .brand-benefits {
        padding: 26px;
      }

      .section-title h2 {
        font-size: 30px;
      }

      .search-cloud {
        grid-template-columns: 1fr;
      }

      .state-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .final-cta h2 {
        font-size: 30px;
      }
    }
    
    .condition-section {
    background: #ffffff;
    padding: 70px 0;
  }

  .condition-section .section-title {
    text-align: center;
    margin-bottom: 46px;
  }

  .condition-section .sub-title {
    display: inline-block;
    color: #075bd8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
  }

  .condition-section h2 {
    color: #061b47;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .condition-section p {
    color: #667085;
    font-size: 17px;
    margin: 0 auto;
    max-width: 720px;
  }



  @media (max-width: 1199px) {
    .condition-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 991px) {
    .condition-section {
      padding: 65px 0;
    }

    .condition-section h2 {
      font-size: 32px;
    }

    .condition-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 575px) {
    .condition-section {
      padding: 55px 0;
    }

    .condition-section h2 {
      font-size: 28px;
    }

    .condition-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .condition-item {
      min-height: 105px;
      padding: 18px 10px;
    }

    .condition-item i {
      font-size: 26px;
    }

    .condition-item span {
      font-size: 14px;
    }
  }

  .condition-section {
    background: #ffffff;
    padding: 85px 0;
    font-family: Arial, sans-serif;
  }

  .condition-section .section-title {
    text-align: center;
    margin-bottom: 46px;
  }

  .condition-section .sub-title {
    display: inline-block;
    color: #075bd8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
  }

  .condition-section h2 {
    color: #061b47;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .condition-section p {
    color: #667085;
    font-size: 17px;
    margin: 0 auto;
    max-width: 720px;
  }

  .condition-grid {
display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    border: 1px solid #dfe9f3;
    border-radius: var(--theme-radius);
    overflow: hidden;
  }

  .condition-item {
    min-height: 118px;
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
  }

  /*.condition-item:hover {*/
  /*  background: #eef5ff;*/
  /*  transform: translateY(-2px);*/
  /*}*/


  .condition-item i {
    color: #ef233c;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
  }

  .condition-item span {
    color: #061b47;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
  }

  @media (max-width: 1199px) {
    .condition-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 991px) {
    .condition-section {
      padding: 65px 0;
    }

    .condition-section h2 {
      font-size: 32px;
    }

    .condition-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 575px) {
    .condition-section {
      padding: 55px 0;
    }

    .condition-section h2 {
      font-size: 28px;
    }

    .condition-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .condition-item {
      min-height: 105px;
      padding: 18px 10px;
    }

    .condition-item i {
      font-size: 26px;
    }

    .condition-item span {
      font-size: 14px;
    }
    .nav-sidebar-header a.navbar-brand.mbil {
    padding: 0px!important;
}
.brand-logo-box a span {
    line-height: 18px;
    display: inline-block;
}
.play-btn {
    width: 60px;
    height: 60px;
    font-size: 21px;
}
  }
 @media (max-width: 400px) {
         .mobile-icon i {
        min-width: 38px!important;
        min-height: 38px!important;
        width: 38px!important;
        height: 38px!important;
        font-size: 16px;
    }
    .d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn a {
        font-size: 14px!important;
    }
    .ph_responsive.mobile-icon.th-btn a#peddle-button {
            padding: 14px 9px 8px 9px;
        font-size: 12px !important;
}
    .drs-items span
{
    font-size: 15px;
}
 }




