/* .car-cell {
    position: relative;
    border: 1px solid #c9c9c9;
}

.car-cell a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.car-cell img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.6s cubic-bezier(0.61, 1, 0.88, 1);
    transform-origin: center;
    z-index: 10;
}

.car-cell:hover img {
    transform: translate(-50%, -50%) scale(0.95);
}

.owl-nav {
    display: none;
}

.owl-dots {
    margin: 20px 0;
    display: flex;
    width: 100%;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.carousel-holder .owl-dots .owl-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #1b8365;
    border-radius: 50%;
    border: 1px solid #1b8365;
    transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1);
}

.carousel-holder .owl-dots .owl-dot.active,
.carousel-holder .owl-dots .owl-dot.active:hover {
    background: #fff;
}

.carousel-holder .owl-dots .owl-dot:hover {
    background: #45d1a9;
}

.car-cell img {
    max-width: 80%;
    max-height: 80%;
}

.carousel-holder .owl-dots {
    display: none;
}

.carousel-holder .no-direction .owl-nav {
    display: block;
    pointer-events: none;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.carousel-holder .no-direction .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    pointer-events: all;
}

.carousel-holder .no-direction .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    pointer-events: all;
}

.carousel-holder .owl-nav {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-holder .owl-nav button {
    pointer-events: all;
}

.slide-title {
    position: absolute;
    z-index: 10;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
}

.slide-title h4 {
    margin: 0;
}

.slide-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 10px 20px;
    text-align: center;
} */

.car-cell {
	position: relative;
	padding: 30px;
	padding-top: 150px;
	border: 2px solid #101010;
}

.owl-carousel .owl-item .car-cell img {
	max-height: 180px;
    width: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.8;
}

.car-cell .slide-title h4 {
	border-bottom: 2px solid var(--main-red);
    padding-bottom: 15px;
}

.car-cell .slide-text p {
	font-size: 16px;
}

.slide-text {
  position: relative;
  max-height: 115px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.slide-text.expanded {
  max-height: 1000px;
}

.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--main-red);
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}