.carousel-outer-wrapper {
    position: relative;
}

.car-cell {
    position: relative;
}

.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-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 .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-outer-wrapper:hover .carousel-holder .owl-nav {
    opacity: 1;
}

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

.carousel-holder .owl-nav .owl-prev {
    position: absolute;
    left: 0;
}

.carousel-holder .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

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

.slide-title h4 {
    margin: 0;
}