.blog-slider-area {
	padding: 12.7rem 0;
}
.blog-slider-title {
	display: flex;
	align-items: center;
	column-gap: 1.8rem;
}
.blog-slider-title h2 {
	font-size: 3.2rem;
	line-height: 1.6;
}
.blog-slider-title a {
	font-size: 1.6rem;
	line-height: normal;
	text-decoration: underline;
	font-weight: 700;
}
.blog-slider-items-wrap {
	margin-top: 6rem;
}
.blog-slider-container {
	width: calc(100% - ((100% - 162rem) / 2));
	margin-left: auto;
	/*overflow: hidden;*/
	position: relative;
}
.blog-slider-items {
	overflow: hidden;
}
.blog-slider-single {
	background-color: #F5F5F5;
	border-radius: .8rem;
	overflow: hidden;
	min-height: 62.5rem;
	position: relative;
}
.bs-image {
	height: 25.7rem;
}
.bs-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bs-content {
	height: 36.8rem;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 1s cubic-bezier(.47,1.28,.41, 1);
	padding: 8.5rem 3.3rem 4.6rem 3.1rem;
}
.bs-category {
	font-size: 1.6rem;
	line-height: normal;
}
.bs-text {
	margin-top: 3.8rem;
	opacity: 0;
	height: 2rem;
}
.bs-rem {
	margin-top: 2.4rem;
	font-size: 1.2rem;
	line-height: normal;
	font-weight: 600;
	background-color: #fff;
	width: max-content;
	padding: .8rem 2.8rem;
	border-radius: 4.8rem;
    position: absolute;
    bottom: 4.6rem;
    left: 3.1rem;
    transition: all .3s;
}
.blog-slider-single:hover .bs-content {
	height: 100%;
}
.blog-slider-single::before {
	width: 100%;
	height: 100%;
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	transition: all .3s;
}
.blog-slider-single:hover::before {
    background-color: #51bab2;
}
.blog-slider-single:hover .bs-text {
	opacity: 1;
	height: auto;
}
.bs-title {
	font-size: 2.4rem;
	line-height: normal;
	font-weight: 400;
	min-height: 10rem;
	padding-bottom: 1.5rem;
}
.blog-slider-single:hover .bs-rem {
	background-color: #000000;
	color: #fff;
}
.bs-next-arrow {
	width: 5.8rem;
	height: 5.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 2.9rem);
	right: 12rem;
	z-index: 9;
	box-shadow: 0px 0px 3rem 0px rgba(0,0,0,0.25) !important;
}
.bs-prev-arrow {
	width: 5.8rem;
	height: 5.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 2.9rem);
	left: -2.8rem;
	z-index: 9;
	box-shadow: 0px 0px 3rem 0px rgba(0,0,0,0.25) !important;
}
.blog-slider-arrow .swiper-button-disabled {
	opacity: .3;
	cursor: no-drop;
}
.bs-content-image {
	display: none;
	width: 100%;
	height: 18rem;
	margin-top: 2rem;
	border-radius: .5rem;
	overflow: hidden;
}
.blog-slider-single:hover .bs-content-image {
	display: block;
}
.bs-content-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 1050px) {
	.blog-slider-single:hover::before {
		display: none;
	}
	.bs-content {
		padding: 30px 15px;
		height: 200px;
	}
	.blog-slider-single:hover .bs-content {
		height: 200px;
	}
	.bs-next-arrow {
		right: 5px;
	}
	.blog-slider-single {
		min-height: 405px;
	}
	.blog-slider-container {
		width: 100%;
		padding-left: 15px;
	}
	.bs-text {
		display: none;
	}
	.bs-rem {
		position: static;
	}
	.blog-slider-items-wrap {
		margin-top: 21px;
	}
	.blog-slider-area {
		padding-top: 73px;
	}
	.blog-slider-title {
		flex-wrap: wrap;
	}
	.blog-slider-single:hover .bs-content-image {
		display: none;
	}
	.bs-prev-arrow {
		left: 5px;
	}
}