.after_Sales_Main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.after_Sales_Item {
	padding: 32px 32px 30px;
	background-color: #F8F8F8;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.after_Sales_img {
	position: relative;
	overflow: hidden;
	height: 358px;
	width: 100%;
}

.after_Sales_img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: 1s;
}

.after_Sales_Item:hover .after_Sales_img img {
	transform: scale(1.1);
}

.after_Sales_Link {
	position: absolute;
	bottom: -168px;
	width: 100%;
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
	height: 186px;
	backdrop-filter: blur(3px);
	transition: 0.3s;
	opacity: 0;
	background: linear-gradient(0deg, #001d2fa6 0, #3fcaba00 100%);
}

.after_Sales_Item:hover .after_Sales_Link {
	opacity: 1;
	bottom: 0;
}

.after_Link_Text {
	color: #FFF;
	font-size: 18px;
	line-height: 36px;
}

.after_Sales_Link .ezIcon {
	rotate: 180deg;
}

body.rtl .after_Sales_Link .ezIcon {
	rotate: 0deg;
}

.after_Sales_Text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.after_Sales_Title {
	font-size: 24px;
	line-height: 30px;
	color: #003556;
}

.after_Sales_Sub p {
	font-size: 14px;
	line-height: 28px;
	color: #A8A8A8;
}

@media (max-width: 992px) {
	.after_Sales_Main {
		grid-template-columns: repeat(1, 1fr);
	}
	.after_Sales_img {
		height: 208px;
	}
}