
  /* Ако сакаш и компонентите од Sneat да ја следат primary */
  .btn-primary,
  .bg-primary { background-color: var(--bs-primary) !important; }
  .btn-primary:hover { filter: brightness(0.92); }
  .text-primary { color: var(--bs-primary) !important; }

  /* Мал стил за настројки копчето */
  .theme-gear {
    right:20px; bottom:20px; width:52px; height:52px; z-index:1080;
  }

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/* .title{
    display: flex !important;
    justify-content: left;
    text-align: left;
} */

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
  background-color: #ea001e;
  color: #fff;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-xl-square:hover {
  background: linear-gradient(90deg, black, var(--bs-dark));
  color: var(--bs-secondary);
}

.btn.btn-primary {
  color: var(--bs-white);
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  border: none;
}

.btn.btn-primary.more {
  color: var(--bs-white);
  background: linear-gradient(90deg, var(--bs-primary), #1f2e4e);
  border: none;
}

.btn.btn-primary:hover {
  background: linear-gradient(
    90deg,
    black,
    var(--bs-dark)
  ); /* From black to --bs-dark */
  /* border: 1px solid var(--bs-secondary); */
  color: var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  /* background: var(--bs-secondary); */
  /* border: 1px solid var(--bs-secondary); */
  color: var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-dark {
  background: linear-gradient(90deg, black, var(--bs-dark));
  color: var(--bs-white);
}

.btn.btn-dark:hover {
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.double-heading {
  font-size: 12vmin;
  height: 2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.double-heading span {
  font-family: Impact, "Anton", Haettenschweiler, "Arial Narrow Bold",
    sans-serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  position: absolute;
  letter-spacing: -0.005em;
}

/* First span - Grey */
.double-heading span:first-child {
  color: #b3b3b3;
  transform: translate(-0.255em, -0.25em);
}

/* Second span - Red */
.double-heading span:last-child {
  color: #ea001e;
  transform: translate(0.15em, 0.35em);
}

/* Ensure text appears by using pseudo-elements */
.double-heading span::before {
  content: attr(data-text);
  position: relative;
  display: block;
}

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Styling for each logo */
.partner-logo {
  width: 300px;
  height: 200px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  /* margin-right: 20px;  */
}

.holographic-card {
  width: 300px;
  height: 200px;
  /* background: #111; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* overflow: hidden; */
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: #0ff;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(149, 148, 148, 0.93);
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  /* white-space: nowrap; */
}

/* The track that holds the logos */
.brand-track {
  display: flex;
  align-items: center;
  gap: 20px; /* Adjust the spacing between logos */
  animation: scroll-marquee 30s linear infinite;
  white-space: nowrap;
}

/* Styling for each logo */
.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  /* margin-right: 20px;  */
}

.brand-logo:hover {
  transform: scale(1.2); /* Scale up on hover */
}

.brand-logo:hover ~ .brand-track {
  animation-play-state: paused; /* Pause animation on hover */
}

/* Keyframes for infinite scrolling effect */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .brand-logo {
    height: 60px;
    width: 60px;
  }

  .partners {
    flex-wrap: wrap;
    gap: 20px;
  }

  .holographic-card {
    width: 250px;
    height: 170px;
  }

  .partner-logo {
    width: 250px;
    height: 170px;
  }
  .double-heading {
    font-size: 7vmin;
  }
}

@media (max-width: 768px) {
  .brand-track {
    white-space: normal;
    animation: scroll-marquee 5s linear infinite;
  }
  .brand-logo {
    height: 40px;
    width: 40px;
  }

  .partners {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .holographic-card {
    width: 75%;
    height: auto;
  }

  .partner-logo {
    width: 75%;
    height: auto;
  }
  .double-heading {
    font-size: 10vmin;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    width: 35px;
    height: 35px;
  }
  .holographic-card {
    width: 90%;
    height: auto;
  }

  .partner-logo {
    width: 90%;
    height: auto;
  }
  .double-heading {
    font-size: 12vmin;
  }
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}

/*** Icon Animation End ***/

/*** Navbar Start ***/
.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: rgba(225, 225, 225, 0.1);  */
  z-index: 1020;
  color: white;
  padding: 0 1rem;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

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

/* .navbar-toggler {
    margin-top: 0;
    align-self: center; 
} */

.navbar-brand h1 {
  display: flex;
  align-items: center;
  gap: 5px; /* Add spacing between logo and text */
  margin: 0;
}

.navbar-brand h1 img {
  max-height: 50px; /* Ensure logo height is consistent */
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 30px 0 0 0;
  letter-spacing: 1px;
  color: var(--bs-secondary);
  font-size: 18px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  /* color: var(--bs-secondary); */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  /* background: var(--bs-light); */
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 1025px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-brand h1 {
    font-size: 1.6rem; /* Adjust font size for mid-sized screens */
  }
}

@media (max-width: 1280px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 12px;
    color: var(--bs-primary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
  }

  .navbar-brand h1 {
    font-size: 1.1rem; /* Adjust font size for mid-sized screens */
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }

  .navbar-toggler {
    margin-top: 17px;
  }
  .navbar-light .navbar-nav .nav-link {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .navbar-brand h1 {
    font-size: 1.7rem; /* Reduce font size on smaller screens */
  }

  .navbar-collapse {
    position: absolute;
    top: 5rem;
    width: 100%;
  }

  .nav-item.nav-link {
    color: #ea001e !important;
  }

  .nav-link {
    color: #ea001e !important;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 25px;
  }

  .dropdown-menu {
    font-size: 18px;
    border: none;
    border-radius: 10px;
  }

  .dropdown-item {
    color: #ea001e !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-item.dropdown {
    margin-bottom: 3rem;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 3rem 0 0 0;
  }
}

@media (max-width: 768px) {
  .navbar-brand h1 {
    font-size: 1.6rem; /* Reduce font size on smaller screens */
  }
}

@media (min-width: 361px) and (max-width: 500px) {
  .navbar-brand h1 {
    font-size: 1.5rem; /* Adjust font size for mid-sized screens */
  }

  .navbar-toggler {
    margin-left: auto; /* Keep the hamburger icon aligned */
  }

  .navbar-brand h1 img {
    max-height: 45px; /* Adjust logo size if necessary */
  }
}

@media (max-width: 360px) {
  .navbar-brand h1 {
    font-size: 1.1rem; /* Reduce font size for smaller screens */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
  object-fit: cover;
  height: 700px;
}

.carousel .carousel-item,
.carousel .carousel-item img {
  height: 700px;
}

.carousel-item {
  position: relative;
}

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.carousel .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 6px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bs-secondary);
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--bs-primary);
}

@media (max-width: 992px) {
  .carousel-indicators [data-bs-target] {
    display: none;
  }
  .text-box {
    max-width: 100%;
    margin: 0 10px;
    padding: 30px 15px; /* Slightly reduced padding on smaller screens */
  }
}

.text-box-container {
  display: flex;
  justify-content: flex-start; /* Align content to the left */
}

.text-box {
  background: rgba(255, 255, 255, 0.1); /* Glass effect */
  backdrop-filter: blur(10px); /* Blur effect */
  padding: 40px 20px; /* Increase top and bottom padding for more height */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  max-width: 90%;
  margin-left: 10px;
  text-align: center;
}

.text-box p {
  margin: 0 0 50px 0; /* Add more space below the text */
}

/* Button */
.text-box a {
  display: inline-block; /* Keep the button width independent */
  margin-top: 20px; /* Additional space between the text and the button */
  text-align: center;
  width: auto; /* Button width not tied to the text width */
  padding: 10px 25px; /* Adjust button padding if needed */
}

@media (max-width: 576px) {
  .carousel-caption {
    align-items: flex-start;
    padding-top: 20px;
  }

  .text-box {
    padding: 25px 10px;
  }
}
/*** Carousel Header End ***/
.wrapper {
  display: grid;
  place-content: center;
  background-color: var(--background-color);
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 1rem + 10vw, 10rem);
  /* font-weight: 200; */
  text-transform: uppercase;
  color: var(--text-color);
}

.wrapper > div {
  grid-area: 1/1/-1/-1;
  display: flex;
  gap: 0.2em; /* Spacing between words */
}

.word {
  display: inline-block;
}

.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}

.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: -webkit-linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background: linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 112px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/
.heading.container {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  margin: 0;
  width: 100vw; /* Set width to full viewport */
  max-width: 100%; /* Ensure it doesn't adhere to container restrictions */
  position: relative;
}
/*** Features Start ***/
.feature {
  background: var(--bs-light);
}

.feature .feature-item {
  display: flex;
  border-radius: 10px;
}

.feature .feature-item .feature-icon span {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.brand-logos {
  display: flex; /* Use flexbox to arrange items in a row */
  justify-content: center; /* Center the items horizontally */
  flex-wrap: wrap; /* Allow wrapping to next line if needed */
  gap: 20px; /* Add space between the images */
}

.brand-logo {
  width: 100px; /* Set a fixed width for the images */
  height: auto; /* Maintain aspect ratio */
  max-height: 100px; /* Set a maximum height for uniformity */
  object-fit: contain; /* Ensure the images fit well within their containers */
}

/*** Features End ***/

/*** About Start ***/

.about .about-item {
  text-align: left;
}

.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about .about-img img {
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.about {
  background-color: var(--bs-light); /* Keep the bs-light background */
  padding: 20px;
}

.about .about-item .about-item-inner .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-item .text-item {
  position: relative;
  /* padding-left: 25px; */
}

@media (max-width: 991px) {
  .about .about-item,
  .about .about-item-inner {
    text-align: center;
  }

  .about .about-img {
    text-align: center;
  }

  .about .about-img img {
    width: 100%;
    height: auto;
  }
}

/*** About End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
    url(../img/fact-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item .counter-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.service .service-item p {
  font-size: 19px; 
  line-height: 1.6;
  margin-top: 10px;
}

.service .service-item:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background: var(--bs-light);
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  width: 100%;
}

.service .service-item .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
  position: relative;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
}

/* .categories .categories-item:hover { */
/* border: 1px solid var(--bs-primary); */
/* } */

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 10px rgba(234, 0, 30);
  /* transform: scale(1.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;  */
}

.categories .categories-item .categories-item-inner .categories-img img:hover {
  transform: scale(1.05); /* Scale up image slightly */
  transition: transform 0.3s ease; /* Smooth image transition */
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 65px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: -65px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  border-radius: 50px;
  transition: 0.5s;
}
.similar-cars .categories-carousel .owl-nav .owl-prev,
.similar-cars .categories-carousel .owl-nav .owl-next {
  position: relative;
  /* top: -65px; */
  width: 80px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  border-radius: 50px;
  transition: 0.5s;
}

.similar-cars .categories-carousel .owl-nav .owl-prev {
  left: 2rem;
}

.similar-cars .categories-carousel .owl-nav .owl-next {
  right: -80rem;
}

.categories-carousel .owl-nav .owl-prev {
  left: 0;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}


/*** Cars Categories End ***/

/*** Filters Start ***/
.filter-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  background: rgba(255, 255, 255, 0.1); /* Glass effect */
  backdrop-filter: blur(10px);
  padding: 20px;
  /* max-width: 100%; */
}

.filter-section h4 {
  color: #e63946;
  font-weight: bold;
  margin-bottom: 15px;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  background-color: #ffffff;
  color: #495057;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 150px; /* ✅ Додадено за еднаква ширина */
  box-sizing: border-box;
}

.filter-input::placeholder {
  color: #495057; /* Поблед placeholder */
  font-size: 0.9rem;
  opacity: 1; /* Ensure visible */
}

.filter-input:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly stronger shadow on hover */
  background: rgb(31, 46, 78, 0.5);
  color: #fff;
}

.filter-input:hover::placeholder {
  color: #ffffff;
}

.filter-input option {
  background-color: #ffffff; /* Keeps dropdown options white */
  color: #495057;
  border-radius: 40px;
}

.filter-buttons {
  display: flex;
  gap: 5rem;
  margin-top: 15px;
}

.reset-btn,
.search-btn {
  background-color: #ea001e;
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  display: block;
  transition: background 0.3s ease;
}

.reset-btn:hover,
.search-btn:hover {
  background-color: #cc2d40;
}

@media (max-width: 1060px) {
  /* Stack Filter Groups Vertically */
  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .filter-group {
    width: 100%;
    display: contents; /* Use grid cell space */
  }

  .filter-input {
    width: 100%;
  }

  .filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .reset-btn,
  .search-btn {
    /* width: 60%; */
    max-width: 420px;
    padding: 10px 20px;
  }
}
/*** Filters End ***/

/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/cars.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.steps .steps-item {
  position: relative;
  background: var(--bs-dark);
  border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
  color: var(--bs-white);
}

.steps .steps-item .setps-number {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: 0;
  right: 40px;
  font-weight: 900;
  border: 1px solid var(--bs-white);
  border-radius: 64px;
  transform: translateY(50%);
  color: var(--bs-white);
  background: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.last {
  margin-bottom: 1.8rem;
}
/*** Process End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

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

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}
/*** Blog End ***/

/*** Banner Start ***/
.banner .banner-item {
  position: relative;
  width: 50%;
  height: 100vh; /* Default full viewport height */
  background-size: cover; /* Make the image cover the full container */
  background-position: center;
  border-radius: 10px;
  overflow: hidden; /* Ensures no padding or overflow */
  transition: 0.5s;
  z-index: 1;
  flex: 1 1 calc(50% - 20px); /* Make each banner take 50% width minus gap */
  max-width: calc(50% - 20px); /* Ensure max width */
}

.banner .banner-item:first-child {
  background-image: url(../img/banner-1.jpg); /* Set the background image for the first banner */
}

.banner .banner-item.van {
  background-image: url(../img/van.jpg); /* Set the background image for the van banner */
}

.banner {
  padding: 0;
}

.banner .banner-container {
  display: flex; /* Use flexbox */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 20px; /* Add spacing between banners */
}

.banner .banner-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6); /* Add a dark overlay */
  z-index: 2;
}

.banner .banner-item .banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* Align to the end by default */
  z-index: 5;
  text-align: right;
}

.banner-title .text-center {
  font-size: 3rem;
  color: var(--bs-dark) !important;
}

/* Responsive Design for Larger Screens */
@media (min-width: 992px) {
  .banner .banner-item .banner-content h2 {
    font-size: 45px;
    margin: 20px 0;
  }

  .banner .banner-item .banner-content p {
    font-size: 40px;
    margin: 20px 0;
  }
  .banner .banner-container {
    max-width: 100%;
  }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 991px) {
  .banner .banner-item {
    flex: 1 1 100%; /* Make banners stack vertically on small screens */
    max-width: 100%; /* Full width */
    height: 70vh; /* Reduce height for smaller screens */
  }

  .banner .banner-item .banner-content {
    align-items: center; /* Center align content */
    text-align: center; /* Center text alignment */
  }

  .banner .banner-item .banner-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .banner .banner-item .banner-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .banner-title .text-center {
    font-size: 2rem;
  }

  .banner .banner-btn a {
    padding: 10px 20px; /* Adjust button size */
    font-size: 14px;
  }
}

/*** Banner End ***/

/*** Contact Start ***/
.contact .contact-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.contact .contact-add-item .contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.contact-blocks {
  display: flex;
  justify-content: center;
}

.contact-blocks a {
  color: #6e7684;
}

.contact-blocks a:hover {
  letter-spacing: 1px;
  color: #f54f51;
}

.contact-btn {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  background: var(--bs-white);
  transition: 0.5s;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: url(../img/footer-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 2rem 0;
}

.footer-item {
  margin-top: 2rem;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}

.social {
  margin-top: 20px;
}

/*** Footer End ***/

@media only screen and (min-width: 1200px) {
  .container2 {
    max-width: 1170px;
  }
}
@media only screen and (max-width: 767px) {
  .container2 {
    position: relative;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container2 {
    position: relative;
  }
}

/* Car details */

.inventory-section
  .inspection-column
  .inner-column
  .content-box.two
  .review:hover
  svg
  path {
  fill: #fff;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn.two:hover
  svg
  path {
  fill: #fff;
}

.title > a:hover,
.text > a:hover {
  color: #ea001e;
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  li
  img {
  margin-right: 10px;
}

.inventory-section
  .side-bar-column.v3
  .contact-box-two
  .btn-box
  .side-btn.two:hover,
.inventory-section
  .side-bar-column
  .inner-column
  .contact-box-two
  .btn-box
  .side-btn.two:hover {
  background-color: transparent !important;
  color: #000;
}

.inventory-section {
  background-color: var(--theme-color-light);
  position: relative;
  padding: 52px 0 120px;
  border-radius: 80px;
}

.inventory-section .overview-sec.v2 {
  margin-top: 42px;
}

.inventory-section .boxcar-title-three {
  /* position: relative; */
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
}

.inventory-section .boxcar-title-three h2 {
  margin-bottom: 0;
}

.inventory-section .boxcar-title-three .text {
  font-size: 20px;
  color: var(--theme-color-dark);
  line-height: 27px;
  margin-bottom: 20px;
  font-weight: 400;
}

.inventory-section .boxcar-title-three .spectes-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.spectes-list {
  padding-left: 0;
}

/* .inventory-section .boxcar-title-three .spectes-list li {
    margin-right: 10px;
  } */

.inventory-section .boxcar-title-three .spectes-list li:last-child {
  margin-right: 0;
}

.inventory-section .boxcar-title-three .spectes-list li span {
  font-size: 15px;
  color: var(--theme-color1);
  display: inline-block;
  border-radius: 120px;
  background: var(--bg-3, #e9f2ff);
  padding: 7px 20px 5px;
}

.inventory-section .boxcar-title-three .spectes-list li span img {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.inventory-section .boxcar-title-three .spectes-list.v2 li span {
  background-color: unset;
  color: var(--theme-color-dark);
  border: 1px solid var(--Border, #e1e1e1);
}

.inventory-section .boxcar-title-three .content-box {
  /* position: absolute; */
  /* bottom: 0; */
  /* right: 0; */
  width: 25%;
  text-align: center;
}

.inventory-section .boxcar-title-three .content-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

/* .inventory-section .boxcar-title-three .content-box .btn-box .share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 18px;
} */

.inventory-section
  .boxcar-title-three
  .content-box
  .btn-box
  .share-btn:last-child {
  margin-right: 0;
}

/* .inventory-section .boxcar-title-three .content-box .btn-box .share-btn span {
  font-size: 15px;
  color: var(--theme-color-dark);
  display: inline-block;
  margin-right: 10px;
} */

/* .inventory-section .boxcar-title-three .content-box .btn-box .share-btn .share {
  fill: var(--White, #fff);
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  -webkit-filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.05));
} */

.inventory-section .boxcar-title-three .content-box .btn-box.v2 {
  margin-bottom: 0;
}

.inventory-section .boxcar-title-three .content-box .title {
  font-weight: 700;
  margin-bottom: 4px;
}

.inventory-section .boxcar-title-three .content-box span {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color-dark);
}

.inventory-section .boxcar-title-three .content-box span i {
  margin-right: 10px;
}

.inventory-section .gallery-sec .slick-next,
.inventory-section .gallery-sec .slick-prev {
  border: 0;
  background-color: rgba(143, 143, 153, 0.9);
}

.inventory-section .gallery-sec .slick-prev::before,
.inventory-section .gallery-sec .slick-next::before {
  color: var(--theme-color-light);
}

.inventory-section .gallery-sec .slick-next {
  right: 10px;
}

.inventory-section .gallery-sec .slick-prev {
  left: 10px;
  z-index: 9;
}

.inventory-section .gallery-sec .image-column .inner-column .image-box {
  position: relative;
}

.inventory-section .gallery-sec .image-column .inner-column .image-box .image {
  border-radius: 16px 0px 0px 16px;
  overflow: hidden;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .image
  img {
  width: 100%;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 100%;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li {
  margin-right: 10px;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li:last-child {
  margin-right: 0;
  margin-left: auto;
  left: auto;
  right: 20px;
  position: relative;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-light);
  padding: 7px 20px 5px;
  border-radius: 12px;
}

.inventory-section
  .gallery-sec
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a
  img {
  margin-right: 10px;
}

.inventory-section .gallery-sec .image-column-two .inner-column .image-box {
  position: relative;
  display: inline-block;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box:hover
  .content-box {
  opacity: 1;
  visibility: visible;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box
  .content-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box
  .content-box
  .video-list {
  width: 100%;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-light);
  padding: 7px 20px 5px;
  border-radius: 12px;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a
  img {
  margin-right: 10px;
}

.inventory-section
  .gallery-sec
  .image-column-two
  .inner-column
  .image-box
  .content-box
  .video-list
  li:last-child {
  margin-left: auto;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.inventory-section .gallery-sec-two {
  margin-bottom: 100px;
  padding: 0 60px;
}

@media (max-width: 1440px) {
  .inventory-section .gallery-sec-two {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .inventory-section .gallery-sec-two {
    padding: 0 15px;
    margin-bottom: 60px;
  }
  .inventory-section .boxcar-title-three {
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center;
    text-align: center; /* Center the title and price */
    margin-bottom: 30px;
  }
}

@media (max-width: 890px) {
  .content-box {
    width: 46% !important;
  }
}

.gallery-sec-two .wrap-slider-gallery {
  border-radius: 16px;
  overflow: hidden;
}

.inventory-section .gallery-sec-two .slick-next {
  right: 10px;
}

.inventory-section .gallery-sec-two .slick-prev {
  left: 10px;
  z-index: 99;
}

.inventory-section .gallery-sec-two .slick-next,
.inventory-section .gallery-sec-two .slick-prev {
  background-color: #8f8c95;
  border: 0;
}

.inventory-section .gallery-sec-two .slick-prev::before,
.inventory-section .gallery-sec-two .slick-next::before {
  color: var(--theme-color-light);
}

.inventory-section .gallery-sec-two .image-column {
  margin: 0 15px;
}

.inventory-section .gallery-sec-two .image-column .inner-column .image-box {
  position: relative;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .image {
  border-radius: 16px;
  overflow: hidden;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .image
  img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 500px) {
  .inventory-section
    .gallery-sec-two
    .image-column
    .inner-column
    .image-box
    .image
    img {
    height: 400px;
  }

  .cars-section-eight .nav-tabs {
    justify-content: flex-start;
    row-gap: 10px;
  }
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 100%;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li {
  margin-right: 10px;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li:last-child {
  margin-right: 0;
  margin-left: auto;
  left: auto;
  right: 20px;
  position: relative;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-light);
  padding: 7px 20px 5px;
  border-radius: 12px;
}

.inventory-section
  .gallery-sec-two
  .image-column
  .inner-column
  .image-box
  .content-box
  .video-list
  li
  a
  img {
  margin-right: 10px;
}

.inventory-section .inspection-column {
  margin-top: 9px;
}

.inventory-section .inspection-column .inner-column .title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 27px;
}

.inventory-section .inspection-column .inner-column .overview-sec {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 26px;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec
  .content-column
  .inner-column
  .list
  li {
  font-size: 15px;
  color: var(--theme-color-dark);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec
  .content-column
  .inner-column
  .list
  li
  span {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 198px;
  display: inline-block;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec
  .content-column
  .inner-column
  .list
  li
  span
  img {
  margin-right: 15px;
  position: relative;
  top: -2px;
}

.overview-sec {
  display: flex; /* Aligns columns side by side */
  flex-wrap: wrap; /* Ensures content wraps on smaller screens */
  justify-content: space-between; /* Adds spacing between the two columns */
}

.content-column {
  width: 48%; /* Ensures two columns take equal width */
  /* margin-bottom: 20px; */
}

.content-column ul {
  list-style: none; /* Removes bullet points */
  padding: 0;
}

.content-column li {
  display: flex; /* Aligns icon and text horizontally */
  align-items: center;
  margin-bottom: 50px;
}

.content-column li span {
  display: flex;
  align-items: center;
  font-weight: bold; /* Makes the labels bold */
  width: 60%;
}

.content-column li img {
  margin: 10px 5px 17px 0;
  width: 35px;
  height: 35px;
}

.details {
  /* margin-bottom: 2rem; */
  margin: 3rem 0 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

.inventory-section .inspection-column .inner-column .overview-sec-two {
  margin-top: 52px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 50px;
}

.inventory-section .inspection-column .inner-column .overview-sec-two .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.inventory-section .inspection-column .inner-column .overview-sec-two .list li {
  width: 160px;
  height: 150px;
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  background: var(--theme-color-light);
  text-align: center;
  /* padding: 32px 0; */
  /* margin-right: 30px; */
}

.boxcar-testimonial-section.home1 .boxcar-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.boxcar-testimonial-section.home1 .boxcar-title h2 {
  margin-bottom: 0;
}

.boxcar-testimonial-section.home1 .boxcar-title .text {
  margin-top: 0;
}

@media (max-width: 768px) {
  .content-column {
    width: 100%;
  }
  .content-column li img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 600px) {
  .compare-section .compare-products table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  }

  .compare-section .compare-products table tr th,
  .compare-section .compare-products table tr td {
    width: 100%;
    flex-shrink: 0;
  }
}

@media (max-width: 500px) {
  .inventory-section
    .inspection-column
    .inner-column
    .overview-sec-two
    .list
    li {
    width: 100%;
  }
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec-two
  .list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec-two
  .list
  li
  img {
  margin-bottom: 8px;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec-two
  .list
  li
  span {
  display: block;
  color: #818181;
  margin-bottom: -2px;
}

.inventory-section
  .inspection-column
  .inner-column
  .overview-sec-two
  .list
  li
  small {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color-dark);
}

.inventory-section .inspection-column .inner-column .description-sec {
  margin-top: 52px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 50px;
}

.inventory-section .inspection-column .inner-column .description-sec .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 23px;
}

.inventory-section .inspection-column .inner-column .description-sec .text {
  font-size: 15px;
  color: var(--theme-color-dark);
}

.inventory-section .inspection-column .inner-column .description-sec .text.two {
  margin-bottom: 24px;
}

.inventory-section .inspection-column .inner-column .description-sec .des-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 38px;
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  li {
  margin-right: 18px;
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  li
  .item {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color-dark);
  padding: 14px 26px 12px;
  border-radius: 12px;
  background: var(--bg-2, #eef1fb);
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  li
  .item
  img {
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  .two
  .item {
  background: var(--bg-3, #e9f2ff);
}

.inventory-section
  .inspection-column
  .inner-column
  .description-sec
  .des-list
  .three
  .item {
  background: var(--bg-4, #ffe9f3);
}

.inventory-section .inspection-column .inner-column .features-sec {
  margin-top: 52px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 44px;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec
  .list-column
  .inner-column
  .title {
  font-size: 18px;
  font-weight: 500;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec
  .list-column
  .inner-column
  .feature-list
  li {
  font-size: 15px;
  color: var(--theme-color-dark);
  margin-bottom: 13px;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec
  .list-column
  .inner-column
  .feature-list
  li:last-child {
  margin-bottom: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec
  .list-column
  .inner-column
  .feature-list
  li
  i {
  color: #ea001e;
  background-color: #eef0fc;
  line-height: 21px;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
}

.feature-list li i {
  color: #fff;
  border-radius: 50%;
  background: #ea001e;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center; /* Center the icon inside the circle */
  align-items: center; /* Center the icon vertically */
  margin-right: 10px; /* Optional: Space between icon and text */
}

.feature-list li {
  display: flex;
  align-items: center; /* Vertically align the text and icon */
  margin-bottom: 10px; /* Optional: Add space between list items */
}

.feature-list {
  padding-left: 0;
}

.type {
  font-weight: bold;
  color: #6e7684;
  margin-bottom: 20px;
}

.inventory-section .inspection-column .inner-column .features-sec.v2 {
  padding-bottom: 36px;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec.v2
  .list-column {
  margin-bottom: 30px;
}

.inventory-section .inspection-column .inner-column .faqs-section {
  margin-top: 52px;
}

.inventory-section .inspection-column .inner-column .faqs-section .title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 8px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 30px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .accordion.block {
  border-bottom: 1px solid #e1e1e1;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .accordion.block.v2 {
  border-bottom: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block:active {
  background-color: unset;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .accordion.block.active-block {
  background-color: transparent;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block {
  margin-bottom: 0;
  padding-bottom: 7px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block
  .acc-btn {
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  border: 0;
  padding: 23px 0 15px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block
  .acc-content
  .content {
  padding: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block
  .acc-btn {
  background-color: unset;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block.active-block
  .acc-btn {
  color: var(--theme-color-dark);
  background-color: transparent;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block
  .acc-btn
  .icon {
  height: 0;
  line-height: 0;
  top: 37px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block.active-block
  .acc-btn
  .icon {
  height: 0;
  line-height: 0;
  top: 37px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block.active-block
  .acc-btn
  .icon:before {
  content: "\f106";
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .widget-accordion
  .block
  .acc-content {
  padding: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .list-column
  .inner-column {
  margin-bottom: 13px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .list-column
  .inner-column
  .spects-list
  li {
  font-size: 15px;
  color: var(--theme-color-dark);
  font-weight: 500;
  padding-bottom: 12px;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .list-column
  .inner-column
  .spects-list
  li:last-child {
  padding-bottom: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .faqs-section
  .list-column
  .inner-column
  .spects-list
  li
  span {
  font-weight: 500;
  width: 207px;
  display: inline-block;
}

.inventory-section .inspection-column .inner-column .location-box {
  margin-top: 52px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 51px;
}

.inventory-section .inspection-column .inner-column .location-box .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
}

.inventory-section .inspection-column .inner-column .location-box .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  max-width: 431px;
  margin-bottom: 14px;
}

.inventory-section .inspection-column .inner-column .location-box .brand-btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color1);
  display: inline-block;
  margin-bottom: 22px;
}

.inventory-section
  .inspection-column
  .inner-column
  .location-box
  .brand-btn
  svg {
  margin-left: 9px;
  position: relative;
  top: -1px;
}

.inventory-section .inspection-column .inner-column .location-box iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}

.inventory-section .inspection-column .inner-column .contact-box-three {
  margin-top: 60px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 60px;
  position: relative;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  line-height: 115px;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  margin-bottom: 14px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box {
  padding-left: 140px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .title {
  font-weight: 500;
  margin-bottom: 5px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  margin-bottom: 10px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .contact-list
  li {
  margin-right: 16px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .contact-list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .contact-list
  li
  a {
  font-size: 15px;
  color: var(--theme-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .inner-box
  .contact-list
  li
  a
  .image-box {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  background-color: #e9f2ff;
  margin-right: 10px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box
  .side-btn {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  font-size: 15px;
  font-weight: 500;
  height: 54px;
  line-height: 54px;
  text-align: center;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  margin-right: 20px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box
  .side-btn
  svg {
  position: relative;
  top: -1px;
  margin-left: 9px;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box
  .side-btn.two {
  color: #60c961;
  border: 1px solid #60c961;
  background: var(--White, #fff);
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box
  .side-btn-three {
  color: var(--theme-color-dark);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .contact-box-three
  .content-box
  .btn-box
  .side-btn-three
  svg {
  position: relative;
  top: -1px;
  margin-left: 9px;
}

.inventory-section .inspection-column .inner-column .form-box {
  margin-top: 52px;
}

.inventory-section .inspection-column .inner-column .form-box .form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 22px;
}

.inventory-section .inspection-column .inner-column .form-box .form-list li {
  font-weight: 500;
  color: var(--theme-color-dark);
  font-size: 16px;
  margin-right: 93px;
}

.inventory-section
  .inspection-column
  .inner-column
  .form-box
  .form-list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .form-box
  .form-list
  li
  span {
  display: inline-block;
  width: 165px;
  font-weight: 400;
  font-size: 15px;
}

.inventory-section .inspection-column .inner-column .form-box .theme-btn {
  padding: 0 60px;
}

.inventory-section .inspection-column .inner-column .review-sec {
  margin-top: 52px;
}

.inventory-section .inspection-column .inner-column .review-sec .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
}

.inventory-section .inspection-column .inner-column .review-sec .review-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .rating-box {
  position: relative;
  width: 200px;
  height: 200px;
  border: 10px solid #e9f2ff;
  border-radius: 50%;
  margin-right: 39px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .rating-box
  .content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .rating-box
  .content-box
  span {
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .rating-box
  .content-box
  .title {
  font-size: 40px;
  font-weight: 700;
  color: var(--theme-color1);
  margin-bottom: -1px;
  margin-top: -3px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .rating-box
  .content-box
  small {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color1);
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list {
  width: 303px;
  margin-top: 6px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 5px;
  margin-bottom: 16px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li:last-child {
  padding-bottom: 0;
  border: 0;
  margin-bottom: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li
  .review-title
  span {
  display: block;
  color: var(--theme-color-dark);
  font-weight: 500;
  margin-bottom: -5px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li
  .review-title
  small {
  font-size: 15px;
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li
  sub {
  font-weight: 500;
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list
  li
  sub
  i {
  color: var(--theme-color1);
  margin-right: 9px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec
  .review-box
  .review-list.two {
  margin-right: 54px;
}

.inventory-section .inspection-column .inner-column .review-sec.v2 .review-box {
  display: unset;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec.v2
  .review-box
  .rating-box {
  margin-right: 0;
  margin-bottom: 30px;
}

.inventory-section
  .inspection-column
  .inner-column
  .review-sec.v2
  .content-box-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section .inspection-column .inner-column .reviews {
  margin-top: 38px;
}

.inventory-section .inspection-column .inner-column .reviews .title {
  margin-bottom: 23px;
}

.inventory-section .inspection-column .inner-column .reviews .auther-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.inventory-section .inspection-column .inner-column .reviews .auther-name span {
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--theme-color-dark);
  border-radius: 50%;
  text-align: center;
  color: var(--theme-color-light);
  display: inline-block;
  margin-right: 12px;
}

.inventory-section
  .inspection-column
  .inner-column
  .reviews
  .auther-name
  .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 17px;
}

.inventory-section
  .inspection-column
  .inner-column
  .reviews
  .auther-name
  small {
  font-size: 14px;
  color: var(--theme-color-dark);
}

.inventory-section .inspection-column .inner-column .reviews .rating-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .reviews
  .rating-list
  .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section
  .inspection-column
  .inner-column
  .reviews
  .rating-list
  .list
  li {
  font-size: 10px;
  margin-right: 4px;
  color: var(--theme-color1);
}

.inventory-section
  .inspection-column
  .inner-column
  .reviews
  .rating-list
  .list
  li:last-child {
  margin-right: 0;
}

.inventory-section .inspection-column .inner-column .reviews .rating-list span {
  font-size: 15px;
  color: var(--theme-color-dark);
  font-weight: 500;
  margin-left: 12px;
}

.inventory-section .inspection-column .inner-column .reviews .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  max-width: 849px;
}

.inventory-section .inspection-column .inner-column {
  margin-top: 23px;
}

.inventory-section .inspection-column .inner-column .image-box img {
  border-radius: 12px;
  margin-right: 16px;
}

.inventory-section .inspection-column .inner-column .image-box img:last-child {
  margin-right: 0;
}

.inventory-section .inspection-column .inner-column .btn-box .like-btn {
  font-size: 15px;
  color: #818181;
  margin-right: 28px;
}

.inventory-section .inspection-column .inner-column .btn-box .like-btn i {
  margin-right: 10px;
}

.inventory-section .inspection-column .inner-column .btn-box .like-btn:hover {
  color: var(--theme-color1);
}

.inventory-section .inspection-column .inner-column .content-box.two {
  margin-top: 29px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 60px;
}

.inventory-section .inspection-column .inner-column .content-box.two .text {
  margin-bottom: 27px;
}

.inventory-section .inspection-column .inner-column .content-box.two .review {
  font-size: 15px;
  color: var(--theme-color1);
  font-weight: 500;
  height: 54px;
  line-height: 54px;
  padding: 0 38px;
  border-radius: 12px;
  border: 1px solid var(--color-secondary, #ea001e);
  background: var(--White, #fff);
  display: inline-block;
  margin-top: 30px;
}

.inventory-section
  .inspection-column
  .inner-column
  .content-box.two
  .review
  svg {
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.inventory-section .inspection-column .inner-column .Reply-sec {
  margin-top: 52px;
  margin-bottom: 20px;
}

.inventory-section .inspection-column .inner-column .Reply-sec .text {
  margin-bottom: 30px;
}

.inventory-section .inspection-column .inner-column .Reply-sec .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list {
  width: 330px;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list
  .list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list
  .list-box
  span {
  font-size: 15px;
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list
  .list-box
  .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list
  .list-box
  .list
  li {
  font-size: 12px;
  color: var(--theme-color1);
  margin-right: 4px;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list
  .list-box
  .list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .inspection-column
  .inner-column
  .Reply-sec
  .right-box
  .rating-list.two {
  margin-right: 144px;
}

.inventory-section .inspection-column .inner-column form {
  width: 100%;
  margin: 0;
  margin-left: -12px;
}

.inventory-section .inspection-column .inner-column form .form_boxes {
  border-radius: 12px;
  border: 1px solid rgb(225, 225, 225);
  background: var(--color-white, #fff);
  padding: 7px 15px;
  margin-bottom: 30px;
}

.inventory-section .inspection-column .inner-column form .form_boxes textarea {
  width: 100%;
  height: 200px;
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  textarea::-webkit-input-placeholder {
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  textarea::-moz-placeholder {
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  textarea:-ms-input-placeholder {
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  textarea::-ms-input-placeholder {
  color: var(--theme-color-dark);
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  textarea::placeholder {
  color: var(--theme-color-dark);
}

.inventory-section .inspection-column .inner-column form .form_boxes label {
  display: block;
  color: #818181;
  font-size: 15px;
  font-weight: 400;
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  .drop-menu {
  height: unset;
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  .drop-menu
  .select {
  padding: 0;
  line-height: unset;
}

.inventory-section
  .inspection-column
  .inner-column
  form
  .form_boxes
  .drop-menu
  .dropdown {
  padding: 5px 15px;
  margin-top: 10px;
  border-radius: 12px;
  left: -15px;
  width: calc(100% + 30px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}

.inventory-section .inspection-column .inner-column form .form_boxes.v2 {
  padding-top: 14px;
}

.inventory-section .inspection-column .inner-column form .theme-btn {
  background: #ea001e;
  color: #fff;
  height: 54px;
  line-height: 54px;
  border-radius: 12px;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section .inspection-column .inner-column form .theme-btn svg {
  margin-left: 10px;
}

.inventory-section .inspection-column.v2 {
  margin-top: -23px;
}

.inventory-section .side-bar-column {
  margin-top: 16px;
}

.inventory-section .side-bar-column .inner-column .contact-box {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  padding: 30px 30px 26px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-color-light);
}

.inventory-section .side-bar-column .inner-column .contact-box .icon-box {
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  margin-bottom: 14px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .title {
  font-weight: 500;
  margin-bottom: 5px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  margin-bottom: 10px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .contact-list
  li {
  margin-right: 16px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .contact-list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .contact-list
  li
  a {
  font-size: 15px;
  color: var(--theme-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .contact-list
  li
  a
  .image-box {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  background-color: #e9f2ff;
  margin-right: 10px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  font-size: 15px;
  font-weight: 500;
  height: 54px;
  line-height: 54px;
  text-align: center;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn
  svg {
  position: relative;
  top: -1px;
  margin-left: 9px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn.two {
  color: #60c961;
  border: 1px solid #60c961;
  background: var(--White, #fff);
  margin-bottom: 15px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn.two:hover {
  background: #60c961 !important;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn-three {
  color: var(--theme-color-dark);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box
  .content-box
  .btn-box
  .side-btn-three
  svg {
  position: relative;
  top: -1px;
  margin-left: 9px;
}

.inventory-section .side-bar-column .inner-column .contact-box-two {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  padding: 33px 30px 30px;
  margin-bottom: 30px;
}

.inventory-section .side-bar-column .inner-column .contact-box-two span {
  color: var(--theme-color-dark);
}

.inventory-section .side-bar-column .inner-column .contact-box-two .title {
  font-weight: 700;
  margin-bottom: 0;
  line-height: 44px;
}

.inventory-section .side-bar-column .inner-column .contact-box-two small {
  font-size: 16px;
  color: var(--theme-color-dark);
}

.inventory-section .side-bar-column .inner-column .contact-box-two .btn-box {
  margin-top: 21px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box-two
  .btn-box
  .side-btn {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  font-size: 15px;
  font-weight: 500;
  height: 54px;
  line-height: 54px;
  text-align: center;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box-two
  .btn-box
  .side-btn
  img {
  margin-right: 10px;
}

.inventory-section
  .side-bar-column
  .inner-column
  .contact-box-two
  .btn-box
  .side-btn.two {
  background: var(--White, #fff);
  margin-bottom: 20px;
  color: var(--theme-color-dark);
  border: 1px solid var(--theme-color-dark);
}

.inventory-section .side-bar-column.v2 {
  margin-top: 0;
}

.inventory-section .side-bar-column.v2 .inner-column {
  padding-left: 49px;
}

.inventory-section .side-bar-column.v3 .contact-box-two {
  padding: 0;
  border: 0;
}

.inventory-section .side-bar-column.v3 .contact-box-two .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section .side-bar-column.v3 .contact-box-two .btn-box .side-btn {
  margin-right: 30px;
}

.inventory-section .side-bar-column.v3 .contact-box-two .btn-box .side-btn.two {
  margin-right: 0;
}

.inventory-section .side-bar-column.v3 .contact-box-two .content-box h2 {
  font-weight: 700;
  margin-bottom: 0;
}

.inventory-section .side-bar-column.v3 .contact-box-two .content-box .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  line-height: 27px;
  margin-bottom: 12px;
}

.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
}

.inventory-section .side-bar-column.v3 .contact-box-two .content-box .list li {
  position: relative;
  font-size: 14px;
  color: var(--theme-color-dark);
  margin-right: 18px;
}

.inventory-section
  .side-bar-column.v3
  .contact-box-two
  .content-box
  .list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .side-bar-column.v3
  .contact-box-two
  .content-box
  .list
  li:last-child::before {
  display: none;
}

.inventory-section
  .side-bar-column.v3
  .contact-box-two
  .content-box
  .list
  li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -11px;
  width: 4px;
  border-radius: 10px;
  height: 4px;
  background-color: #abaaaa;
}

.inventory-section .side-bar-column.v3 .overview-box {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  background: var(--bg-1, #f9fbfc);
  padding: 21px 32px 22px;
}

.inventory-section .side-bar-column.v3 .overview-box .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
}

.inventory-section .side-bar-column.v3 .overview-box .list li {
  font-size: 15px;
  color: var(--theme-color-dark);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  padding: 11px 0 9px;
}

.inventory-section .side-bar-column.v3 .overview-box .list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.inventory-section .side-bar-column.v3 .overview-box .list li span {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 198px;
  display: inline-block;
}

.inventory-section .side-bar-column.v3 .overview-box .list li span img {
  margin-right: 15px;
  position: relative;
  top: -2px;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  background: var(--theme-color-light);
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 .btn-box .side-btn {
  margin-right: 0;
  margin-bottom: 0;
}

.inventory-section
  .side-bar-column.v4
  .contact-box-two.v2
  .btn-box
  .side-btn.two {
  margin-right: 0;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box h2 {
  font-weight: 700;
  margin-bottom: 0;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .text {
  font-size: 15px;
  color: var(--theme-color-dark);
  line-height: 27px;
  margin-bottom: 12px;
}

.inventory-section .side-bar-column.v4 .contact-box-two.v2 .content-box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
}

.inventory-section
  .side-bar-column.v4
  .contact-box-two.v2
  .content-box
  .list
  li {
  position: relative;
  font-size: 14px;
  color: var(--theme-color-dark);
  margin-right: 18px;
}

.inventory-section
  .side-bar-column.v4
  .contact-box-two.v2
  .content-box
  .list
  li:last-child {
  margin-right: 0;
}

.inventory-section
  .side-bar-column.v4
  .contact-box-two.v2
  .content-box
  .list
  li:last-child::before {
  display: none;
}

.inventory-section
  .side-bar-column.v4
  .contact-box-two.v2
  .content-box
  .list
  li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -11px;
  width: 4px;
  border-radius: 10px;
  height: 4px;
  background-color: #abaaaa;
}

.inventory-section .side-bar-column.v4 .overview-box {
  margin-bottom: 30px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-color-light);
}

.inventory-section .side-bar-column.v4 .overview-box .list.v2 li {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.inventory-section.v1 {
  background: var(--bg-1, #f9fbfc);
}

.inventory-section.v1 .description-sec.v2,
.inventory-section.v1 .features-sec.v2,
.inventory-section.v1 .faqs-section.v2,
.inventory-section.v1 .location-box.v2,
.inventory-section.v1 .form-box.v2,
.inventory-section.v1 .main-review-box,
.inventory-section.v1 .reply-c-box {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
  background: var(--White, #fff);
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 31px 40px 30px;
  margin-top: 30px;
}

.inventory-section.v1 .description-sec.v2 .form-list li,
.inventory-section.v1 .features-sec.v2 .form-list li,
.inventory-section.v1 .faqs-section.v2 .form-list li,
.inventory-section.v1 .location-box.v2 .form-list li,
.inventory-section.v1 .form-box.v2 .form-list li,
.inventory-section.v1 .main-review-box .form-list li,
.inventory-section.v1 .reply-c-box .form-list li {
  margin-right: 85px;
}

.inventory-section.v1 .description-sec.v2 .reviews .content-box.two,
.inventory-section.v1 .features-sec.v2 .reviews .content-box.two,
.inventory-section.v1 .faqs-section.v2 .reviews .content-box.two,
.inventory-section.v1 .location-box.v2 .reviews .content-box.two,
.inventory-section.v1 .form-box.v2 .reviews .content-box.two,
.inventory-section.v1 .main-review-box .reviews .content-box.two,
.inventory-section.v1 .reply-c-box .reviews .content-box.two {
  padding-bottom: 21px;
  border-bottom: 0;
}

.inventory-section.v1 .features-sec.v2 .list-column {
  margin-bottom: 0;
}

.features-sec .list-column {
  margin-bottom: 40px;
}

.features-sec .list-column .inner-column {
  margin-bottom: 40px;
}

.inventory-section
  .inspection-column
  .inner-column
  .features-sec.v2
  .list-column
  .inner-column {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .list-column.col-lg-3 {
    /* flex: 0 0 auto; */
    width: 33%;
  }
}

.inventory-section.v1 .faqs-section.v2 {
  padding-bottom: 7px;
}

.inventory-section.v1 .faqs-section.v2 .widget-accordion {
  padding-bottom: 0;
  border-bottom: 0;
}

.inventory-section.v1 .reply-c-box {
  padding-bottom: 40px;
}

.inventory-pager {
  padding: 50px 0 70px;
  background: #050b20;
}

.inventory-pager .inventory-form {
  max-width: 1162px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 10px;
  height: 76px;
}

.inventory-pager .inventory-form .form_boxes {
  width: 16.4%;
  height: 76px;
}

.inventory-pager .inventory-form .form_boxes a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #050b20;
  font-size: 15px;
  height: 100%;
  margin-left: 30px;
}

.inventory-pager .inventory-form .form_boxes a img {
  margin-right: 10px;
}

.inventory-pager .inventory-form .form-submit .theme-btn {
  border-radius: 30px;
}

.inventory-pager .inventory-form .form-submit .theme-btn i {
  position: relative;
  top: 2px;
  margin-right: 8px;
}

.filter-btn {
  display: inline-block;
  padding: 0 35px 0 25px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #e1e1e1;
  border-radius: 120px;
}

.header-style-v1.style-two.bb-0 {
  border-bottom: 0;
}

.inventory-sidebar .categories-box {
  padding: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
}

.inventory-sidebar .categories-box.border-none-bottom {
  margin: 0;
}

.inventory-sidebar .price-box {
  padding: 0;
}

.inventory-sidebar .price-box form .form-column {
  padding-right: 0;
}

.inventory-sidebar .ui-widget.ui-widget-content {
  margin-top: 25px;
}

.inventory-sidebar .show-more {
  display: inline-block;
  color: #ea001e;
  font-size: 15px;
}

.inventroy-widget {
  border: 1px solid #e1e1e1;
  padding: 20px;
  border-radius: 16px;
}

.inventroy-widget .row {
  margin-bottom: -20px;
}

.inventroy-widget .form_boxes {
  border-radius: 12px;
  border: 1px solid rgb(225, 225, 225);
  background: var(--color-white, #fff);
  padding: 10px 15px;
  margin-bottom: 20px;
  width: 100%;
}

.inventroy-widget .form_boxes label {
  display: block;
  color: #818181;
  font-size: 13px;
  line-height: 16.93px;
  font-weight: 400;
  margin-bottom: 3px;
}

.inventroy-widget .form_boxes .drop-menu {
  height: unset;
}

.inventroy-widget .form_boxes .drop-menu .dropdown {
  top: 130%;
  border: 1px solid #e1e1e1;
  max-height: unset;
  border-radius: 10px;
}

.inventroy-widget .form_boxes .select {
  padding: 0;
  line-height: 19.53px;
}

.border-none-bottom {
  border-bottom: 0 !important;
}

.widget-sidebar-filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 470px;
  height: 100%;
  background: #fff;
  z-index: 999999;
  overflow-y: auto;
  padding: 30px 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wrap-fixed-sidebar.active .widget-sidebar-filter {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.wrap-fixed-sidebar .inventroy-widget {
  border-radius: 0;
  padding: 0;
  border: 0;
}

.wrap-fixed-sidebar .fixed-sidebar-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.wrap-fixed-sidebar .fixed-sidebar-title h3 {
  margin-bottom: 0;
  color: #050b20;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.inventory-section li {
  list-style: none;
  padding: 0px;
  margin-bottom: 8px;
}

.layout-radius {
  border-radius: 80px;
  margin-top: -80px;
  margin-bottom: -80px;
  background-color: #fff;
}

.layout-radius1 {
  border-radius: 80px;
  margin-top: -80px;
  /* margin-bottom: -80px; */
  background-color: #fff;
}

.layout-radius2 {
  border-radius: 80px;
  /* margin-top: -80px; */
  margin-bottom: -80px;
  background-color: #fff;
}

.overview-sec.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

/* .boxcar-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 40px;
  margin: 0 auto;
  width: 100%;
} */
.boxcar-container {
  max-width: var(--container-width);
  padding: 0 20px; /* Reduced padding for better spacing */
  margin: 0 auto;
  width: 100%;
}

.form_boxes {
  border-radius: 12px;
  border: 1px solid rgb(225, 225, 225);
  background: var(--color-white, #fff);
  padding: 7px 15px;
  margin-bottom: 30px;
}
.form_boxes textarea {
  width: 100%;
  height: 200px;
}

/* All cars section */

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 3rem; /* Spacing between cards */
  padding: 1rem;
  margin: 0 auto; /* Center the grid */
}

/* Card Styling */
.categories-item {
  display: flex;
  flex-direction: column;
  background: #f8f9fa; /* Light background */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  overflow: hidden; /* Clip content */
  transition: transform 0.3s ease-in-out;
}

.categories-item:hover {
  transform: translateY(-5px); /* Slight hover effect */
}

.categories-img img {
  width: 100%; /* Full width */
  height: 200px; /* Fixed height */
  object-fit: cover; /* Crop excess */
  border-radius: 8px 8px 0 0; /* Rounded corners on the top */
}

.categories-content {
  padding: 1rem;
  text-align: center;
}

.categories-content h4 {
  font-size: 1.25rem; /* Slightly larger font */
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Price Styling */
.categories-content .bg-gradient2 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(90deg, var(--bs-primary), #1f2e4e);
}

.bg-gradient3 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(90deg, #1f2e4e, var(--bs-primary));
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 768px) {
  .cars-grid {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 1rem;
  }
}
/* Gallery Section */
.gallery-sec {
  text-align: center;
  position: relative;
}

.main-preview {
  position: relative;
}

.main-preview img {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  cursor: pointer;
}

/* Main Preview Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  color: white;
  background: linear-gradient(90deg, var(--bs-primary), #f54f51);
  font-size: 1.6em;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.main-preview .prev {
  left: 10%;
}

.main-preview .next {
  right: 10%;
}

/* Thumbnails Navigation Arrows */
.thumbnails-nav {
  position: relative;
}

.thumbnails-nav .prev {
  left: 20%;
}

.thumbnails-nav .next {
  right: 20%;
}

.arrow.th {
  top: 60%;
  width: 30px;
  height: 30px;
  font-size: 1.1em;
}

/* Thumbnails */
.thumbnails-container {
  display: flex;
  gap: 10px;
  justify-content: flex-start; /* Align thumbnails at the start */
  margin-top: 10px;
  margin-bottom: 3.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* Smooth scrolling effect */
  max-width: 600px; /* Width of container, adjust as needed */
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.thumbnails-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.thumbnails-container .thumbnail {
  flex: 0 0 calc(33.33% - 2px);
  scroll-snap-align: center;
  max-width: 33.33%;
  box-sizing: border-box;
}

.thumbnails-container .thumbnail img {
  width: 100%;
  height: 140px; /* Maintain consistent height */
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: border 0.3s ease;
}

.thumbnails-container .thumbnail img:hover {
  border-color: rgba(230, 57, 70, 0.9);
}

@media (min-width: 1400px) {
  .main-preview .prev {
    left: 21%;
  }

  .main-preview .next {
    right: 21%;
  }

  .thumbnails-nav .prev {
    left: 26%;
  }

  .thumbnails-nav .next {
    right: 25%;
  }
}
/* Mobile View for Thumbnails */
@media (max-width: 1024px) {
  .main-preview .prev {
    left: 8%;
  }

  .main-preview .next {
    right: 8%;
  }

  .thumbnails-nav .prev {
    left: 15%;
  }

  .thumbnails-nav .next {
    right: 14%;
  }
}

@media (max-width: 950px) {
  .thumbnails-container .thumbnail img {
    width: 120px;
    height: 90px;
  }

  .arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  .arrow.th {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .main-preview .prev {
    left: -5%;
  }

  .main-preview .next {
    right: -5%;
  }

  .thumbnails-nav .prev {
    left: 7%;
  }

  .thumbnails-nav .next {
    right: 5%;
  }
}

@media (max-width: 765px) {
  .thumbnails-nav .prev {
    left: 20%;
  }

  .thumbnails-nav .next {
    right: 20%;
  }
}

@media (max-width: 550px) {
  .thumbnails-container .thumbnail img {
    width: 100px;
    height: 80px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .arrow.th {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }

  /* Limit Thumbnails to 3 on Mobile */
  .thumbnails-container {
    gap: 10px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }

  .thumbnails-container .thumbnail {
    flex: 0 0 calc(33.33% - 2px);
  }

  .thumbnails-nav .prev {
    left: -6px;
  }

  .thumbnails-nav .next {
    right: -9px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex; /* Flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  overflow: hidden; /* Prevent overflow issues */
}

.modal-content {
  width: 80%; /* Allow width to adjust automatically */
  height: 80%; /* Allow height to adjust automatically */
  max-width: 80%; /* Scale down to fit within the modal */
  max-height: 80%; /* Scale down to fit within the modal */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transform: translate(12%, 12%); /* Force centering within flexbox */
  position: relative; /* Ensure it stays centered */
}

.modal .prev,
.modal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.modal .prev {
  left: 20px;
}

.modal .next {
  right: 20px;
}

/* .modal .prev:hover,
.modal .next:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
} */

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  background-color: #696969;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000; /* Ensure it's on top */
}

.close:hover {
  color: #ff4d4d;
}

@media (min-width: 770px) {
  .modal .prev,
  .modal .next {
    width: 50px;
    height: 50px;
    font-size: 30px;
    background-color: #ea001e;
  }
  .close {
    top: 15px;
    right: 15px;
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 70%; /* Scale further down for smaller screens */
    max-height: 50%; /* Adjust for smaller viewport height */
  }

  .modal-content {
    transform: translate(21.5%, 50%); /* Force centering within flexbox */
  }

  .modal .prev,
  .modal .next {
    width: 40px;
    height: 40px;
    font-size: 30px;
    background-color: #ea001e;
  }

  .close {
    top: 15px;
    right: 15px;
    font-size: 23px;
  }
}
