.kmr-features-slider {
    display: flex;
    flex-direction: column;
		width: 100%;
}

.kmr-slider-inner-wrapping {
    width: 100%;
		height: 360px;
		padding: 0;
		position: relative;
		/* overflow: hidden; */
    border-radius: 5px;
}
.kmr-items-list {
    width: 100%;
    height: 100%;
		display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    position: relative;
		/* overflow: hidden; */
}
.kmr-slider-item {
	width: 100%;
	min-width: 280px;
	max-width: 320px;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
}
.kmr-slider-item:nth-child(n+3):after {
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
.kmr-slider-item:nth-child(3):after {
		left: 50%;
    backdrop-filter: grayscale(1);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(151 151 151) 25%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.kmr-slider-item:nth-child(n+4):after {
	left: 0;
	background: linear-gradient(90deg, transparent 0, #5d5d5d4f 98%);
	backdrop-filter: grayscale(1);
}

.kmr-slide-image-container {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.kmr-slide-image-container .kmr-slider-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: bottom center;
}
.kmr-slide-text-container {
    position: absolute;
    width: 100%;
    padding: 1rem;
    background: #222222cc;
    bottom: 0;
}
.kmr-slide-text-container .kmr-slide-title-heading {
      margin: 0 0 3px;
		font-size: 20px;
		color: inherit;
}
.kmr-slide-text-container .kmr-slide-description {
  margin: 0;
	font-size: 15px;
	color: inherit;
}

.kmr-slider-controls-display {
    display: flex;
    gap: 8rem;
    align-items: center;
		padding: 0;
    margin-top: 1rem;
}
