:root {
	/*

	--hallosanblack: "Hallo sans black";
*/
    --san:'Open Sans', sans-serif;
    --mont:'Montserrat', sans-serif;;
    --roboto:'Roboto', sans-serif;;
	--fs-12: 12px;
    --fs-13: 13px;
	--fs-14: 14px;
	--fs-15: 15px;
	--fs-16: 16px;
	--fs-17: 17px;
	--fs-18: 18px;
	--fs-19: 19px;
	--fs-20: 20px;
	--fs-21: 21px;
	--fs-22: 22px;
    --fs-23: 23px;
	--fs-24: 24px;
	--fs-25: 25px;
    --fs-27: 27px;
    --fs-28: 28px;
	--fs-29: 29px;
	--fs-30: 30px;
    --fs-31: 31px;
    --fs-32: 32px;
	--fs-34: 34px;
	--fs-40: 40px;
	--fs-43: 43px;
	--fs-47: 47px;
	--fs-57: 57px;
	--fs-60: 60px;
	--fs-75: 75px;
	--fw-100: 100;
	--fw-200: 200;
	--fw-300: 300;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--line-height-18: 18px;
	--line-height-23: 23px;
	--line-height-25: 25px;
	--line-height-26: 26px;
	--line-height-27: 27px;
	--line-height-29: 29px;
	--line-height-30: 30px;
	--line-height-35: 35px;
    --line-height-40: 40px;
	--white: #ffffff;
	--black: #000;
	--gray: #484343;
    --darkgray:#243447;
    --exra-darkgary: #243447;
    --lightgray:#f6f6f6;
    --black-mask:#00000075;
    --shaodw-search: 0px 3px 6px #00000029;
    --paginationbg:#FBFBFB;
    --dark-border: #939393;
    --light-border: #E9E9E9;
    --light-gray-tranparent: #a9a9a98c;
    --light-white: #FBFBFB;
    --primary-color:#9B1313;
    --background-color:#0d0c0c;
    --primary-color-mask:#9B131365;
}
/* header styles */
.navbar .megamenu{ padding: 1rem; }
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
.navbar .has-megamenu{position:static!important;}
.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
}
/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
    max-height: 90vh;
    margin-top:10px;
  }
}
.navbar{
  transition: all 0.5s;
  border-bottom: 1px solid #b8b7b7;
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  align-items: start;
}
.navbar .header-logo{
  max-width: 150px;
}
.navbar:has(.navbar-collapse.show) {
  background-color: #000000 !important;
  min-height: 100vh;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.dropdown-toggle::after {
  margin-left: .5em;
  vertical-align: .1em;
}
/* navbar menu link styles */
.navbar-nav>.nav-item .nav-link{
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  margin: 0 15px;
  outline: none;
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  padding: 0;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; 
  width: 0;
  height: 2px; 
  background-color: #9B1313;
  transform-origin: bottom right;
  transition: width 0.3s ease; 
}
.navbar .nav-item:hover .nav-link::before {
  width: 100%; 
}
.navbar .nav-item:hover .nav-link {
  color: #9B1313 !important;
}
/* open megamenu on hover */
.dropdown:hover>.dropdown-menu {
  display: block;
}
.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
/* menu icon  */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.custom-toggler.navbar-toggler {
  border: none;
}
/* animation of megamenu */
.animation {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideDownIn {
0% {
  -webkit-transform: translateY(-20px);
}
100% {
  -webkit-transform: translateY(0);
}
0% {
  -webkit-transform: translateY(-20);
}
}
@keyframes slideDownIn {
0% {
  transform: translateY(-20px);
}
100% {
  transform: translateY(0);
}
0% {
  transform: translateY(-20px);
}
}
.slideDownIn {
-webkit-animation-name: slideDownIn;
animation-name: slideDownIn;
}
@media only screen and (max-width: 992px) {
  .navbar-nav>.nav-item .nav-link {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin: 0px 0px 10px 0px;
  }
  .navbar-collapse.collapse.show{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar .header-logo{
    max-width: 100px;
  }
}



/* footer styles */
.footer{
    background-color: #0d0c0c;
  }
  .footer .copyright-text{
    background-color: #000;
  }
  .footer svg path{
    fill: #8e8e8e;
    cursor: pointer;
    transition: all 0.5s;
  }
  .footer svg:hover path{
    fill: #9B1313;
  }



/* colors styles */
  .grey-color{
    color: #8e8e8e;
  }
  .bg-color-white{
    background-color: #fff;
  }

  /* text with outline */
  .outline-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
  }


  /* link-list styles */
  .link-list {
    line-height: 1.7;
    text-decoration: none;
    position: relative;
  }
  .link-list:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9B1313;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .link-list:hover {
    transition: all 0.5s;
    color: #9B1313 !important;
    transform: scaleX(1.08);
  }
  .link-list:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }


  /* button styles */

  .custom-button, .btn-primary {
    cursor: pointer;
    position: relative;
    color: #fff;
    font-weight: 600;
    border: 2px solid #9B1313;
    background-color: #991010;
    transition: all 0.5s ease;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer !important;
  }
  .custom-button:hover, .btn-primary:hover {
    color: #fff;
    background-color: #bb0e0e;
    border-color: #9B1313;
  }

.btn-primary:focus {
  color: #fff;
  background-color: #991010;
  border-color: var(--primary-color);
  box-shadow:0 0 0 .25rem var(--primary-color-mask);
}


/* line before/after styles */
  .line-before, .line-after {
    position: relative;
    width: fit-content;
  }
  .line-before {
    margin-left: 40px;
  }
  .line-after {
    margin-right: 40px;
  }
  .line-before::before,
  .line-after::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 5px;
    background-color: #9B1313;
    border-radius: 200px;
  }
  .line-before::before {
    left: -40px;
    margin-right: 50px !important;
  }
  .line-after::after {
    right: -40px;
    margin-left: 50px !important;
  }


  /* ratings styles */
  .ratings{
    margin-right:10px;
  }
  .ratings i{
    color:#cecece;
    font-size:16px;
  }
  .rating-color{
    color:#fbc634 !important;
  }


  /* owl-carousel styles */
  .owl-carousel .owl-nav{
    font-size: 50px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .owl-carousel .owl-nav button i{
    background-color: #b42323 !important;
    padding: 10px !important;
    font-size: 18px;
    border-radius: 50%;
  }
  .owl-carousel .owl-nav button.disabled i{
    background-color: #bebebe !important;
  }
  .owl-prev {
    margin: -1rem;
  }
  .owl-next {
    margin: -1rem;
  }
  .rtl .owl-prev {
    margin: -1rem;
  }
  .rtl .owl-next {
    margin: -1rem;
  }
  .owl-dots {
    text-align: center;
    padding-top: 15px;
  }
  .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #d0d0d0;
    margin: 0 4px;
  }
  .owl-dots button.owl-dot.active {
    background-color: #9B1313;
  }

  
  /* accordian styles */
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
  }
  .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='#ffffff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  }
  .accordion-button::after {
      transition: all 0.5s;
  }
  .accordion-item{
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, .125);
  }
  .accordion-item p{
    margin: 0;
  }
  .accordion-button:focus{
      border: none;
      box-shadow: none;
  }
  .accordion-button:not(.collapsed){
      color: #fff;
      background-color: #0d0c0c;
  }
  .card-group a {
    color:initial;
    text-decoration:none;
}

/* services card styles */
.service-cards .card img{
  height: 220px;
  object-fit: cover;
}
.service-cards .card .card-img-overlay{
  background-color: #b42b2bc9;
  transition: all 0.7s;
}
.service-cards .card:hover .card-img-overlay{
  background-color: #b42b2b;
}


/* vendor card styles */
.vendor-cards .card {
  border: none;
  min-height: 280px;
}
.vendor-cards .card img{
  height: 280px;
  object-fit: cover;
}
.vendor-cards .card .card-img-overlay{
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
}


/* post cards styles */
.post-cards .card img{
  height: 220px;
  object-fit: cover;
}

.post-cards .card .card-desc{
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* page header banner styles */
.page-header {
  background-image: url('../images/hero-banner-mycarsrepair.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  padding: 10rem 0rem 5rem 0rem;
}


/* pagination styles */
.page-item.active .page-link {
  background-color: #9B1313;
  border-color: #9B1313;
}
.page-link {
  color: #9B1313;
}


/* car cards styles */
.car-cards .card, .car-cards .card a{
  color: #fff;
}
.car-cards .card img{
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.form-select:disabled {
  background-color: #3c3c3c;
}