#products {
	padding:35px 0px;
	padding-top: 0px;
}
#products .head {
	font-weight: 700;
	font-size:34px;
	line-height: 34px;
	color:var(--primaryColor);
	background-color:whitesmoke;
	padding:15px 0px;
	position: sticky;
	top:75px;
	z-index: 15;
}
#products .head article {
	font-weight: 300;
	color:var(--secondaryColor);
	font-size:16px;
	line-height: 26px;
	opacity: .8;
	margin-top:15px;
}

#products .productList {
	padding:35px 0px;
}
#products .productList .item {
	padding:0px;
	border-right:solid 1px rgba(0,0,0,0.1);
	border-bottom:solid 1px rgba(0,0,0,0.1);
	border-radius: var(--radius);
	transition: .3s;
	position: relative;
	overflow: hidden;
}
#products .box {
	position: relative;
	border-radius: var(--radius);

}
#products .item:nth-child(3n) {
	border-right:0px;
}
#products .item:nth-last-child(1),
#products .item:nth-last-child(2),
#products .item:nth-last-child(3) {
	border-bottom:0px;
}
#products .item:hover {

}
#products .item .title {
	text-align: center;
	color:var(--secondaryColor);
	font-weight: 500;
	font-size:14px;
	opacity: .8;
	position: relative;
	top:-25px;
}
#products .item .mask {
	content:"";
	width: 100%;
	height: 0%;
	position: absolute;
	left:0;
	bottom:0;
	transition: .5s;
	z-index: 10;
	backdrop-filter:blur(10.9px);
    -webkit-backdrop-filter:blur(10.9px);
    background-color:#cf4b0cc4;
    box-shadow: 0px -38px 50px 0px #28272680;
    padding:25px;
	color:White;
	opacity: 0;
}
#products .item:hover .mask {
	height: 60%;
	opacity: 1;
	
}
#products .item .mask .title {
	top:0;
	font-size:20px;
	line-height: 20px;
	font-weight: 700;
	margin-bottom:15px;
	color:white;
	opacity: 1;
}
#products .item .mask article {
	font-weight: 300;
	opacity: .8;
	font-size:15px;
	text-align: center;
}
#products .fakeButton {
	display: flex;
	justify-content: center;
	margin-top:15px;
}
#products .fakeButton span:hover {
	background-color: white;
	color:var(--primaryColor);
	border-color:white !important;
}
#products .fakeButton span {
	width: initial;
	color:white;
	cursor: pointer;
	transition: .3s;
	font-weight: 400;
	font-size:13px !important;
	letter-spacing: .5px;
}

#products .productItem {
	margin-bottom:50px;
}
#products .productItem .visual img {
	border-radius: 20px;
}
#products .productItem .title {
	font-weight: 600;
	font-size:18px;
	line-height: 18px;
	margin-top:25px;
	margin-bottom:15px;
	padding-left:25px;
}
#products .productItem ul {
	font-size:14px;
	line-height: 24px;
	color:var(--textColor);
	padding-left:25px;
}
#products .productItem ul li {
	position: relative;
}
#products .productItem ul li:before {
	content:"";
	position: relative;
	width: 7px;
	height: 7px;
	border-radius: 100%;
	background-color:var(--secondaryColor);
	display:inline-block;
	margin-right:10px;
	top:-2px;
	min-width: 7px;
	min-height: 7px;
}


@media screen and (max-width:992px) {
	#pageHead {
		height: 325px;
	}
	#products .productItem .visual img  {
		border-radius: 10px;
	}

	#products .productItem .title,
	#products .productItem ul  {
		padding-left:0px;
		line-height: 14px;
		font-size:13px;
	}
	#products .productItem ul li {
		margin-bottom:10px;
		display:flex;
	}
	#products .productItem ul li:before {
		top:3px;
	}
	#products .item .mask {
		padding:13px;
	}
	#products .item .mask .title {
		font-size:16px;
		line-height: 16px;
		font-weight: 600;
		margin-bottom:10px;
	}
	#products .item .mask article {
		font-size:12px;
	}
	#products .item:hover .mask {
		height: 100%;		
	}
	#products .item:hover .mask .fakeButton {
		display:none;	
	}
	#products .item .title {
		font-size:12px;
		font-weight: 600;
		letter-spacing: .5px;
	}
	#products .item:nth-child(2n) {
		border-right:0px;
	}
	#products .item:nth-child(3n) {
		border-right:1px solid rgba(0,0,0,.1);
	}
	#products .item:nth-last-child(1),
	#products .item:nth-last-child(2) {
		border-bottom:0px;
	}
	#products .item:nth-last-child(3) {
		border-bottom:1px solid rgba(0,0,0,.1);
	}
	#products .head {
		position: static;
	}
}
