:root {
  --primary: #e12929;
  --white: #ffffff;
  --black: #000;
  --lightgray: #ececec;
}




@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.dropdown-menu{
    &.show{
        -webkit-animation: fadeIn 0.3s alternate; /* Safari 4.0 - 8.0 */
         animation: fadeIn 0.3s alternate;
    }
}

.btn-danger{
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn:hover{
  background-color: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

  /* Important styles */
  #toggle {
    display: none;
    width: 28px;
    height: 30px;
    margin: 40px 10px 10px;
    z-index: 1002;
  }
  
  #toggle span:after,
  #toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
  }
  #toggle span:after{
    top: 9px;
  }
  #toggle span {
    position: relative;
    display: block;
  }
  
  #toggle span,
  #toggle span:after,
  #toggle span:before {
    width: 100%;
    height: 5px;
    background-color: #000;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  
  /* on activation */
  #toggle.on span {
    background-color: transparent;
  }
  #toggle.on span:before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #toggle.on span:after {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    padding: 300px 0px 0px 0px;
  }
  
  /* menu appearance*/
  #menu {
    position: fixed;
    color: #999;
    width: 200px;
    padding: 10px;
    margin: auto;
    font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
    text-align: center;
    border-radius: 4px;
    background: white;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    width: 100%;
  }
  #menu:after {
    position: absolute;
    top: -15px;
    right: 10px;
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid white;
  }
  ul, li, li a {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
  }
  li a {
    padding: 5px;
    color: #000;
    text-decoration: none;
    transition: all .2s;
  }
  li a:hover,
  li a:focus {
    background: var(--primary);
    color: #fff;
  }



.navbar {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand img {
  max-width: 100px;
}
.navbar .navbar-nav .nav-link {
  color: #000;
}
.navbar-nav .nav-link.active{
  background-color:var(--primary) !important;
  color: #fff !important;
  font-weight: 600;
}
.navbar .container-xl{
    background-color:var(--primary);
}
#navbarSupportedContent{
    background-color: #fff;
}
.navbar .profile{
    
    
}
.dropdown-item:hover{
  background-color: var(--primary);
}

@media screen and (min-width: 1024px) {
  .navbar {
    letter-spacing: 0.1em;
  }
  .navbar .navbar-nav .nav-link {
    padding: 0.5em 1em;
  }
  .search-and-icons {
    width: 50%;
  }
  .search-and-icons form {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .navbar .navbar-brand img {
    max-width: 12em;
  }
  .navbar .navbar-collapse {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .search-and-icons {
    display: flex;
    align-items: center;
    padding: 0px;
    width: 100vw;
  }
}
.topbar{
display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 0px 10px;
  align-items: center;
  height: 30px;
}
.search-and-icons form input {
  border-radius: 0;
  height: 2em;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='grey' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E")
    no-repeat 95%;
}
.search-and-icons form input:focus {
  background: #fff;
  box-shadow: none;
}
.search-and-icons .user-icons div {
  padding-right: 1em;
}
.search-and-icons .user-icons a{
  text-decoration: none; 
  color: #000;
}
.search-and-icons .user-icons a:hover{
  text-decoration: none; 
  color: var(--primary);
}
.contact{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navbar-nav{
    width: 100%;
    background-color: #a9a9a9a8;
}
.navbar-nav li{
    margin: 0px auto;
}
.contact-info{
    width: 100%;
    background-color: var(--primary);
}
.contact-info p,
.contact-info a {
  font-size: 0.9em;
  padding-right: 1em;
  color: #fff;
  margin: 0px;
  text-decoration: none;
}
.contact-info a {
  padding-right: 0;
}
.lang select{
    background-color: #fff;
  border: none;
  font-size: 12px;
  margin: 0px 5px;
}
.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

    .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 90%;
        top: auto;
        left: 5%;
    }

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    margin: 10px;
}

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

    .navbar-toggler .hamburger-toggle {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        z-index: 11;
        float: right;
    }

        .navbar-toggler .hamburger-toggle .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
        }

            .navbar-toggler .hamburger-toggle .hamburger span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: #333;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
                left: 0px;
            }

                .navbar-toggler .hamburger-toggle .hamburger span:first-child {
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }

                .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
                    top: 50%;
                    transform: translate(0, -50%);
                }

                .navbar-toggler .hamburger-toggle .hamburger span:last-child {
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }

            .navbar-toggler .hamburger-toggle .hamburger.active span {
                position: absolute;
                margin: 0;
            }

                .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
                    top: 45%;
                    transform: rotate(45deg);
                }

                .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
                    left: 50%;
                    width: 0px;
                }

                .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
                    top: 45%;
                    transform: rotate(-45deg);
                }

.icons {
    display: inline-flex;
    margin-left: auto;
}

    .icons a {
        transition: all 0.2s ease-in-out;
        padding: 0.2rem 0.4rem;
        color: #ccc !important;
        text-decoration: none;
    }

        .icons a:hover {
            color:  var(--white);
            text-shadow: 0 0 30px  var(--white);
        }

.nav-item.dropdown.dropdown-mega{
    position: static;
    .dropdown-menu{
        width: 90%;
        top: auto;
        left: 5%;
    }
}

.navbar-toggler{
    border: none;
    padding: 0;
    outline: none;
    &:focus{
        box-shadow: none;
    }
    .hamburger-toggle{
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        z-index: 11;
        float: right;

        .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
            span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: #333;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77,0.2,0.05,1.0), background 0.2s cubic-bezier(0.77,0.2,0.05,1.0), all 0.2s ease-in-out;
                left: 0px;
                &:first-child{
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }
                &:nth-child(2){
                    top: 50%;
                    transform: translate(0,-50%);
                }
                &:last-child{
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }
            }
            &.active{
                span {
                    position: absolute;
                    margin: 0;
                    &:first-child{
                        top: 45%;
                        transform: rotate(45deg);
                    }
                    &:nth-child(2){
                        left: 50%;
                        width: 0px;
                    }
                    &:last-child{
                        top: 45%;
                        transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}

.sidebar-title {
  font-size: 18px;
  color: #000;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding: 10px 0 10px 0;
}
.sidebar .sidebar-item > a {
  font-size: 12px;
  color: var(--color-dark);
  line-height: 3;
  font-weight: 600;
  text-transform: uppercase;
}
.sidebar .sidebar-item > a:hover{
  color: var(--primary);
}

.sidebar .sidebar-item img{
  width: 25px;
  margin: 0px 10px 0px 0px;
}
.navbar-brand{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

a{
  text-decoration: none; 
}

.icons{
  display: inline-flex;
  margin-left: auto;
  a{
    transition: all 0.2s ease-in-out;
    padding: 0.2rem 0.4rem;
    color: #ccc !important;
    text-decoration: none;
    &:hover{
      color:  var(--white);
      text-shadow: 0 0 30px  var(--white);
    }
  }
}
.bs-slider .carousel-caption{
  background-color: #0000006b;
  position: absolute;
}


/* Zoom In Animation */
@keyframes zoomIn {
  0% {
      opacity: 0;
      transform: scale(0.3);
  }
  50% {
      opacity: 1;
  }
  100% {
      transform: scale(1);
  }
}

/* Flip In X Animation */
@keyframes flipInX {
  0% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0;
  }
  40% {
      transform: perspective(400px) rotateX(-10deg);
      opacity: 1;
  }
  70% {
      transform: perspective(400px) rotateX(10deg);
  }
  100% {
      transform: perspective(400px) rotateX(0deg);
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Slide In Left Animation */
@keyframes slideInLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

/* Basic animation settings for all carousel captions */
.bs-slider .carousel-caption h1 {
  animation-duration: 2s;
  animation-fill-mode: both;
}


/*---------top-tabs start---------*/
.top-tabs .nav-tabs .nav-link.active {
 color:var(--primary) !important;
}
.top-tabs .nav-tabs .nav-link{
  color: var(--black);
}
.top-tabs .card{
  margin: 5px auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
  padding: 5px;
  border-radius: 0px;
  min-height: 300px;
}
.top-tabs .card-title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
  height: 70px;
  text-transform: uppercase;
  text-align: left;
}
.top-tabs .price del {
  font-size: 18px !important;
}
.top-tabs .price int {
  font-size: 20px !important;
  font-weight: 700;
}
.top-tabs .card-body{
padding: 5px;
}
.top-tabs .card-img-top{
  border-radius: 0px;
}

.top-tabs  .card-title a{
  font-size: 18px !important;
  font-weight: 600;
  
}
.top-tabs  .card-title a:hover{
  color: var(--primary);
}


/*---------top-tabs end---------*/


/*---------section start---------*/
.section-content{
  margin: 10px;
}
.section-title{
  text-align: center;
  color: var(--primary);
  font-weight: 800;
  
}
 .price del{
  font-size: 14px;
}
 .price int{
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.card{
  border: #ff0f0f 1px solid;
}
.card-title{
  text-align: justify;
}
.card-title a {
  color: var(--black);
  text-decoration:none;
  text-align: justify;
  font-size: 18px;
}
.section-search{
  background-color: var(--lightgray);
  padding: 30px 20px;
  color: #fff;
}
.section-search label{
  color: var(--black);
}
.section-search .btn{
background-color: var(--primary);
border-color: var(--primary);
color: var(--white);
}
.section-search .vehicle {
  color: #222023;
  background-color: var(--white);
}
.section-search .vehicle .vehicle-footer-btn .btn {
  padding: 2px 5px;
  color: var(--white);
  border-color: var(--primary);
}
.text-bg-danger{
  background-color:var(--primary) !important;
}
.clearancevehicles .price del{
  font-size: 12px;
}
.clearancevehicles .price int{
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}
.clearancevehicles .card-title a {
  color: var(--black);
  text-decoration:none;
}
.clearancevehicles .card-title a:hover{
  color: var(--primary);
}
.clearancevehicles .card-title{
  text-align: justify;
  height: 50px;
}
.pagination-buttons{
  padding: 10px;
}
/*---------section end---------*/

/*---------footer---------*/
footer {
  background-color: #222023;
  background-image: -webkit-linear-gradient( top, #222023, #1e2c47 );
  background-image: -moz-linear-gradient( top, #222023, #1e2c47 );
  background-image: -o-linear-gradient( top, #222023, #1e2c47 );
  background-image: linear-gradient( to bottom, #222023, #1e2c47 );
  color: #fff;
  padding: 10px 0;
  font-size: 17px;
}
footer h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
footer h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2px;
}
footer ul {
  list-style-type: none;
}
footer ul li a{
  text-decoration: none;
}
.about-footer li i {
  position: absolute;
  left: 0;
}
.about-footer li {
  position: relative;
  margin-bottom: 10px;
}

.about-footer ul {
  margin-top: 40px;
  list-style-type: none;
}
.section-area .svg-inline--fa {
  display: var(--fa-display,inline-block);
  height: 4em;
  overflow: visible;
  vertical-align: -.125em;
  color: var(--primary);
}
.about-footer svg{
  padding: 5px;
}
tbody, td, tfoot, th, thead, tr{
  height: 4vh;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: var(--white);
}
.footer-title {
  border-bottom: 2px solid #a61f2d;
  padding-bottom: 25px;
  margin-bottom: 15px;
}

ul.footer-social {
  float: right;
  display: flex;
}

ul.footer-social li {
  display: inline;
  margin-right: 16px;
}

ul.footer-social i {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #222025;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 800;
}

ul.footer-social li:last-child {
  margin-right: 0px;
}

ul.footer-social i:hover {
  background: var(--primary);
  color: #fff;
}

.page-more-info li {
  margin-bottom: 10px;
}

footer table td:first-child {
  font-weight: 600;
}
footer table .far{
  padding-right: 5px !important;
}

footer .table td:last-child {text-align: right;}
footer .table td {
  padding: 0px;
  border: 0;
}

footer .table tr {
}

footer .table td i {
  position: absolute;
  left: 0px;
  font-size: 21px;
  top: 6px;
}

footer .table td {
  position: relative;
  padding: 4px 0;
}
.footer-logo td {
  padding-right: 4px !important;
}

.footer-logo td:last-child {
  padding-right: 0px !important;
}
footer hr {
  border-color: #9294a0;
}

.footer-bottom p {
  text-align: right;
}
.footer-bottom {
  margin-top: 30px;
}
.open-hours hr {
  margin: 30px 0;
}
.open-hours svg{
  margin-right: 10px;
}
.onsale{
  background-color:var(--primary);
  border-radius: 5px;
  padding: 2px 5px;
  position: absolute;
  z-index: 10;
  margin: 5px;
  color: var(--white);
}
.related-products .loop-product-categories { 
background-color:var(--primary);
border-radius: 5px;
padding: 2px 5px;
position: absolute;
z-index: 10;
margin: 5px;
color: var(--white);
}

.related-products .product{
  position: relative;
  margin: 0px;
}
.related-products .product-outer{  
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 1rem auto;
}
.related-products h3{
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  height: 70px;
  text-transform: uppercase;
}
.related-products h3:hover{
  color: var(--primary);
}
.product .product-thumbnail{
  width: 300px;
  height: 225px;
  position: relative;
  overflow: hidden;
}
.product .product-thumbnail .img-fluid {
  
  height: auto;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  object-fit: cover;
}
.product .product-thumbnail .img-fluid:hover {
  transform: scale(1.05); /* This zooms the image to 110% on hover */
}
.product form{
background-color: var(--lightgray);
padding: 10px 15px;
}
.electro-price ins{
  color: var(--primary);
}

.page-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  border-left: 10px solid var(--primary);
  padding-left: 10px;
  color: #26394d;
  font-weight: bold;
}
.section-title{
	 color: var(--primary);
}
.section-area p{
	text-align:justify;
}
.section-card{
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  margin: 5px;
  padding: 15px;
}

.icon-wrapper{
	text-align:center;
}

.section-card .fa{
	font-size: 40px;
  text-align: center;
  color: var(--primary);
}

.reviews .carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.reviews .carousel-inner {
  padding: 1em;
}

.review-form{
  background-color: var(--lightgray);
  padding: 20px 50px;
}
.review-form label{
  color: var(--primary);
}
.review-form .btn{
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  width: 100%;
}
@media screen and (min-width: 576px) {
 .reviews .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
.reviews  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
  
}
@media screen and (min-width: 768px) {
.reviews  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.reviews .carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.reviews .carousel-control-prev,
.reviews .carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}



.reviews .card-container{
  display: grid;
  gap: 3em;
  padding: 2em;
  max-width: 1500px;
}
.header__column-layout{
  display: flex;
  gap: 2em;
  align-items: center;
}
.reviews  .header__img{
  border-radius: 100%;
  border: solid 3px var(--fc-light-gray--opacity-50);
  width: 50px;
}


@media (min-width: 1330px){
 .reviews .card-container{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repat(2, 1fr);
  }
}
.reviews .card{
  border-radius: 10px;
  padding: 3em;
}

.reviews .card--violet{
  background-color: var(--bg-moderate-violet);
  position: relative;
  z-index: -2;
}

.reviews .card--violet::before, .card--violet::after{
  content: ',';
  position: absolute;
  color: var(--fc-light-gray);
  font-size: 40rem;
  font-family: sans-serif;
  top: -3rem;
  transform: rotate(180deg);
  letter-spacing: 0;
  z-index: -1;
  opacity: 30%;
}
.reviews .card--violet::before{
  right: 0;
}

.reviews .card--violet::after{
  right: 5rem;
}
.reviews .btn{
	color: var(--white);
    background-color: var(--primary);
	border-color:var(--primary);
}
.reviews .btn:hover{
	color: var(--primary);
    background-color:  var(--white);
	border-color:var(--primary);
}
.pagination .page-item a{
	color:var(--primary);
}
.active > .page-link{
	 background-color: var(--primary);
	 color:  var(--white) !important;
	 border-color:var(--primary);
}

/* === BLOG === */


.single-post {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
	margin: 10px auto;
}

.single-post .body {
    padding: 30px
}

.single-post .img-post {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    margin-bottom: 30px
}

.single-post .img-post>img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: -webkit-transform .4s ease, opacity .4s ease;
    transition: transform .4s ease, opacity .4s ease;
    max-width: 100%;
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01)
}

.single-post .img-post:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    opacity: .7;
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .8s ease-in-out
}

.single-post .img-post:hover .social_share {
    display: block
}

.single-post .footer {
    padding: 0 30px 30px 30px
}

.single-post .footer .actions {
    display: inline-block
}

.single-post .footer .stats {
    cursor: default;
    list-style: none;
    padding: 0;
    display: inline-block;
    float: right;
    margin: 0;
    line-height: 35px
}

.single-post .footer .stats li {
    border-left: solid 1px rgba(160, 160, 160, 0.3);
    display: inline-block;
    font-weight: 400;
    letter-spacing: 0.25em;
    line-height: 1;
    margin: 0 0 0 2em;
    padding: 0 0 0 2em;
    text-transform: uppercase;
    font-size: 13px
}

.single-post .footer .stats li a {
    color: #777;
	text-decoration: none;
}

.single-post .footer .stats li:first-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0
}

.single-post h3 {
    font-size: 20px;
    text-transform: uppercase
}

.single-post h3 a {
    color: #242424;
    text-decoration: none
}

.single-post p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    margin: 0
}

.single-post .blockquote p {
    margin-top: 0 !important
}

.single-post .meta {
    list-style: none;
    padding: 0;
    margin: 0
}

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

.single-post .meta li a {
    font-style: italic;
    color: #959595;
    text-decoration: none;
    font-size: 12px
}

.single-post .meta li a i {
    margin-right: 6px;
    font-size: 12px
}

.single-post2 {
    overflow: hidden
}

.single-post2 .content {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 80px;
    position: relative
}

.single-post2 .content .actions_sidebar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px
}

.single-post2 .content .actions_sidebar a {
    display: inline-block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-right: 0;
    text-align: center;
    border-right: 1px solid #e4eaec
}

.single-post2 .content .title {
    font-weight: 100
}

.single-post2 .content .text {
    font-size: 15px
}

.right-box .categories-clouds li {
    display: inline-block;
    margin-bottom: 5px
}

.right-box .categories-clouds li a {
    display: block;
    border: 1px solid;
    padding: 6px 10px;
    border-radius: 3px
}

.right-box .instagram-plugin {
    overflow: hidden
}

.right-box .instagram-plugin li {
    float: left;
    overflow: hidden;
    border: 1px solid #fff
}

.comment-reply li {
    margin-bottom: 15px
}

.comment-reply li:last-child {
    margin-bottom: none
}

.comment-reply li h5 {
    font-size: 18px
}

.comment-reply li p {
    margin-bottom: 0px;
    font-size: 15px;
    color: #777
}

.comment-reply .list-inline li {
    display: inline-block;
    margin: 0;
    padding-right: 20px
}

.comment-reply .list-inline li a {
    font-size: 13px
}

@media (max-width: 640px) {
    .blog-page .left-box .single-comment-box>ul>li {
        padding: 25px 0
    }
    .blog-page .left-box .single-comment-box ul li .icon-box {
        display: inline-block
    }
    .blog-page .left-box .single-comment-box ul li .text-box {
        display: block;
        padding-left: 0;
        margin-top: 10px
    }
    .blog-page .single-post .footer .stats {
        float: none;
        margin-top: 10px
    }
    .blog-page .single-post .body,
    .blog-page .single-post .footer {
        padding: 30px
    }
}
.howtobuy .rounded-circle{
	width: 60px;
	height: 60px;
	top: -30px;
	border-width: 4px !important; 
	background-color: var(--primary);
	font-weight: 700;
}


.contact .fa{
	font-size: 40px;
  text-align: center;
  color: #a90d0d;
}


.contact .form-control {
  box-shadow: none !important;
  outline: none !important;
  border: 2px solid #cecece;
  height: 38px;
}

.contact .form-control:hover ,.form-control:focus{
  border-color: #97a0af;
}

.contact .con_sub_text {
  margin: 20px 0px;
  font-size: 15px;
}

.contact .contact-detail-box {
  height: 200px;
  margin-bottom: 50px;
  padding:20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact .contact-detail-box svg{
  font-size: 1rem;
}

.contact .contact-detail-box address {
  font-size: 14px;
}
.contact .contact-map {
  background-color: #ededed;
}
.vehicle{
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 0px;
  margin: 0px;
}
.vehicle .vehicle-title a{
  color: var(--primary);
}

.vehicle .vehicle-title .price{
  color: #000;
}
.vehicle .vehicle-title span{
  padding: 0px;
}

.vehicle .feature .btn{
  text-wrap: nowrap;
}

.vehicle span{
  display: block;
  color: #999;
  font-size: 13px;
  padding: 5px;
}
.vehicle h3{
display: flex;
  justify-content: space-between;
}

.vehicle .list_detail {
  display:flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0px;
}

.vehicle .list_detail > li {
  display: inline-block;
  margin-right: 4%;
}
.vehicle .list_detail  li{
  list-style-type: none;
}
.vehicle .vehicle_status {
  background-color: var(--primary);
  border-radius: 5px;
  padding: 2px 5px;
  position: absolute;
  z-index: 10;
  margin: 5px;
  color: var(--white);
  top: 5px;

}
.vehicle .feature{
    display: flex;
  justify-content: center;
}
.vehicle .feature-list { 
  display: inline-block; 
  width: 133px;
  margin: 2px !important; 
}



.vehicle .vehicle-footer-btn .btn{
  padding: 2px 5px;
  color: var(--primary);
  border-color: var(--primary);  
  width: 100px;
}
.vehicle .vehicle-footer-btn .btn:hover{
  background-color:var(--primary);
  color: var(--white);
}

.single-product-wrapper ul li{
     list-style-type: none !important;
      margin: 0 0 0 -27px;
}

.single-product-wrapper label{
  color: var(--primary);
  border-color: var(--primary);
}

.single-product-wrapper label:hover {
  background-color:var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.single-product-wrapper .summary h1{
    color: var(--primary);
    text-transform: uppercase;
}
.single-product-wrapper .summary{
  border: var(--lightgray) 1px solid;
  padding: 10px;
}
.single-product-wrapper .form-check {
  padding-left: 1rem;
}
.price-div{
  background-color: var(--lightgray);
  padding: 10px;
  margin: 20px auto;
}
.inquiry-form{
  background-color: var(--lightgray);
  padding: 30px;
}
.inquiry-form .btn{
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  width: 100%;
}
.social-media {
  display: flex;
  flex-direction: row;
  background-color: var(--lightgray);
  padding: 10px;
}
.social-media > div{
  width: 5%;
}
.social-media .follow{
  width:20%;
  font-size: 22px;
  font-weight: 700;
}
.social-media svg{
  font-size: 32px;
}
.fa-facebook-f{
  color: #26394d;
}
.fa-instagram{
  color: #E4405F;
}
.fa-tiktok {
  color: #010101;
}
.fa-linkedin-in{
  color: #0A66C2;
}

@media (max-width: 768px) {
  .navbar .navbar-nav .nav-link:hover{
    background-color: var(--lightgray);
  }
  .social-media > div {
    width: 15%;
  }
.social-media .follow{
  width:30%;
  font-size: 22px;
  font-weight: 700;
}
.vehicle .list_acc{
  display: none;
}
.vehicle .font_14{
  display: none;
}
.vehicle .list_detail{
  display: none;
}
.vehicle h3{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.vehicle .vehicle-title span {
  font-size: 18px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
.carousel-item img {
  min-height: 200px;
  width: 100%;
  object-fit: cover; /* Ensures the image covers the div while maintaining aspect ratio */
}
#toggle {
  display: block;
}
.navbar-nav{
  background-color: var(--white);
}
.navbar-nav li {
  margin: 0px 10px;
}

}
.pagination{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 0px;
  margin: 10px;
  display: flex;
  justify-content: center;
}
.pagination span{
  padding: 0px 10px;
}
.thumbnail-img {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.thumbnail-img:hover, .thumbnail-img.active {
  opacity: 1;
}
.thumbnail-img:hover, .thumbnail-img.active {
  border: 3px solid var(--primary);;
}
#steps h4{
  color: var(--primary);
}

.team-card {
  transition: transform 0.3s ease-in-out;
}
.team-card:hover {
  transform: scale(1.05);
}
.social-icons a {
  margin: 0 5px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.social-icons a:hover {
  color: var(--lightgray);
}

.association .card {
  transition: transform 0.3s ease-in-out;
}
.association .card:hover {
  transform: scale(1.05);
}
.association .social-icons a {
  margin: 0 5px;
  font-size: 10px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.association .social-icons a:hover {
  color: var(--lightgray);
}
