/* Product Features */
.product-features {
	margin: 60px 0;
}
.product-features .content {
	text-align: center;
	margin-bottom: 30px;
}
.product-features .content h2 {
	margin-bottom: 10px;
}
.product-features .content p:last-child {
	margin-bottom: 0;
}
.product-features .features {
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.product-features .features>.feature {
	flex: 1 1 calc((100% / 5) - 16px);
	max-width: calc((100% / 5) - 16px);
	position: relative;
	box-shadow: 0 3.727px 3.727px 0 rgba(0, 0, 0, 0.07);
}
.product-features .features>.feature a {
	display: block;
	position: relative;
	overflow: hidden;
	color: #fff;
	font-weight: 600;
}
.product-features .features>.feature .image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background-color: var(--color-1);
}
.product-features .features>.feature .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	display: block;
	transition: transform ease 0.4s;
}
.product-features .features>.feature a:hover .image img,
.product-features .features>.feature a:focus .image img {
	transform: scale(1.05);
}
.product-features .features>.feature .image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, .25) 100%);
	pointer-events: none;
	z-index: 1;
	transition: all ease .3s;
}
.product-features .features>.feature:hover .image:after {
	background: linear-gradient(0deg, rgba(66, 73, 65, 0.70) 0%, rgba(66, 73, 65, 0.70) 100%);
}
.product-features .features>.feature .heading {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: 700;
	padding: 0 10px;
	color: #fff;
}
@media screen and (max-width: 991px) {
	.product-features .features>.feature {
		flex: 1 1 calc((100% / 3) - 14px);
		max-width: calc((100% / 3) - 14px);
	}
}
@media screen and (max-width: 767px) {
	.product-features {
		margin: 40px 0;
	}
	.product-features .features {
		gap: 15px;
	}
	.product-features .features>.feature {
		flex: 1 1 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.product-features .features>.feature .heading {
		font-size: 18px;
	}
}