.main_slider_wrap img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.home_design_invite_wrap {
	background: url('/wp-content/uploads/2025/10/your_design.webp');
	background-repeat: repeat;
	height: 300px;
	border-radius: var(--br);
	padding: 10px 40px;
	display: flex;
	align-items: start;
	justify-content: center;
	color: #fff;
	flex-direction: column;
	gap: 20px;
	background-repeat: no-repeat;
}
.custom_design_title b {
	color: var(--sc);
}
.custom_design_title {
	font-weight: 700;
	font-size: 30px;
}
.home_design_invite_wrap .rb_btn {
	background: #fffd !important;
	color: var(--mc) !important;
	border: 0;
}
.home_design_invite_wrap .rb_btn:hover {
	color: #fff !important;
	background: var(--mc) !important;
}
.home_product_cat_item {
	position: relative;
	width: 100%;
	display: block;
	border-radius: var(--br);
	overflow: hidden;
	text-align: center;
	margin-bottom: 20px;
}
.home_product_cat_item:before {
	content: '';
	background: linear-gradient(transparent, #000);
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 50%;
	z-index: 2;
	transition: 0.3s ease-out;
}
.home_product_cat_item:hover:before{
	top: 0;
}
.home_product_cat_item img{width: 100%;height: 100%;max-height: 420px;object-fit: cover;border-radius: var(--br);transition: 0.3s ease-out;}
.home_product_cat_item:hover img{transform: scale(1.1);}
.home_product_cat_item strong{
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: 30px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	transition: 0.5s ease-out;
	z-index: 3;
}
.home_product_cat_item:hover strong{bottom: 50px;}




@media ( max-width: 991px ){
		.main_slider_wrap img{height: 400px;}
	.home_product_cat_item strong{font-size: 15px;bottom: 20px;white-space: nowrap;}
	.home_design_invite_wrap{height: 220px;padding: 10px 20px;}
	.custom_design_title{font-size: 24px;}
}