.cases-component-slider {
	position: relative;
	margin: -30px -17px;
	padding: 30px 17px;
	overflow: hidden;
}


.cases-component__slider {
	overflow: visible !important;
}
.cases-component__slider .swiper-slide {
	height: auto !important;
}

.cases-component__button {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.case-card {
	height: 100%;
	width: 100%;
	border-radius: 20px;
	background-color: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.case-card__img {
	width: 100%;
	height: 267px;
	border-radius: 20px;
	margin-bottom: 16px;
	overflow: hidden;
}

.case-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.case-card__heading {
	font-family: "Open Sans", "sans-serif";
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	color: #0E0E0F;
	transition: all .3s ease-in-out;
}

.case-card__heading:hover {
	color: #00A76B;
	cursor: pointer;
}

@media screen and (max-width: 1300px) {
	.cases-component-slider {
		margin: 0;
		padding: 0;
	}
}

@media screen and (max-width: 767px) {
	.case-card {
		border-radius: 12px;
		display: flex;
		flex-direction: column;
		padding: 12px;
	}

	.case-card__img {
		height: 181px;
		border-radius: 8px;
		margin-bottom: 8px;
		overflow: hidden;
	}

	.case-card__heading {
		font-family: "Open Sans", "sans-serif";
		font-weight: 600;
		font-style: normal;
		font-size: 14px;
	}

	.cases-component__button {
		margin-top: 16px;
	}
}