#product-card{
	/* background: #ffffff; */
	/* font-family: sans-serif; */
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	/* height: 363px; */
	/* border: 1px solid black; */
	/* flex-direction: row; */
}

#product-card .card{

	width: 180px;
	height: 280px;
	/* background: #f444f4; */
	position: relative;
	/* border-radius: 10px; */
	box-shadow: 0;
	transform: scale(1);
	box-shadow: 5px 20px 30px rgba(0,0,0,.2);
	transition: box-shadow .5s ease-in-out,
				transform .5s ease-in-out;
	overflow: hidden;
	margin:20px 7px;
	/* padding: 0px; */
	/* border: 0.5px solid rgb(0, 0, 0); */
}
#product-card .card:hover{
	box-shadow: 0px 0px 0px rgba(0,0,0,.2);
	transform: scale(0.95);
	transition: box-shadow .5s ease-in-out,
				transform .5s ease-in-out;
}
#product-card .card .imgBox{
	/* width: 70%; */
	height: 100%;
	overflow: hidden;
	/* border: 1px solid black; */
}
#product-card .card .imgBox img{
	width: 100%;
	/* height: 100%; */
	/* border: 1px solid black; */
}
#product-card .card .details{
	position: absolute;
	width: 100%;
	height: 20%;
	background: #ffffff;
	padding: 0px;
	bottom: 0%;
	/* transition: .5s; */

	/* border: 1px solid black; */
}
#product-card .card .details:hover{
	bottom: 0;
}
#product-card .card .details .textContent{

	/* border: 1px solid black; */
	/* color: rgb(0, 0, 0); */
}
#product-card .card .details .textContent h3{
	color: #000000;
	font-size: 14px;
	line-height: 1.5;
	padding: 0;
	/* border: 1px solid black; */
	margin: 5px 0;
	text-align: center;
	
}

#product-card .card .details button{
	font-size: 14px;
	width: 50%;
	padding: 5px 0;
	/* margin: 10px 0; */
	margin-left: 25%;
	
	background: #855d00;
	color: rgb(255, 255, 255);
	/* border-radius: 5px; */
	border: none;
	outline: none;
	cursor: pointer;
	/* border: 1px solid black; */
}
#product-card .card .details button:hover{
	background: #d69600;
	color: rgb(255, 255, 255);
}
#product-card .card .description{
	background:#eba605;
	position: absolute;
	width: 120px;
	height: 120px;
	top: -80px;
	right: -80px;
	border-radius: 0 0 200px 200px;
	transition: all .5s, border-radius 1s, top 1s;
}
#product-card .card .description .icon{
	position: absolute;
	top: 85px;
	right: 85px;
	color: #fff;
	opacity: 1;
}
#product-card .card .description:hover{
	width: 100%;
	height: 80%;
	right: 0;
	top: 0;
	border-radius: 0;
}
#product-card .card .description:hover .icon{
	opacity: 0;
}
#product-card .card .description .contents{
	color: #fff;
	padding: 5%;
	transform: scale(1);
	
	transform: translateY(-200%);
	transition: opacity .2s, transform .8s;
	opacity: 0;
	/* border: 1px solid black; */
}
#product-card .card .description:hover .contents{
	transform: scale(1);
	opacity: 1;
	transform: translateY(0);
}
#product-card .card .description h2{
	font-size: 18px;
	/* margin-top: 4px; */
	text-align: center;
}
#product-card .card .description p{
	font-size: 14px;
	line-height: 1.3;
}


/* @media screen and (max-width : 980px){
#product-card .card{

		width: 250px;
		height: 350px;
		margin: 30px 30px 60px 30px;
	}
	#product-card .card .details button{
		
		margin-top: 0;
	}
} */

/* @media screen and (max-width : 800px){
	#product-card .card{
		margin: 0px 20px 40px 20px;
	}
	
}
@media screen and (max-width : 576px){
	#product-card .card{

		width: 240px;
		height: 320px;
		margin: 30px;
	}
	#product-card .card .details button{
		margin-left: 48px;
	}
} */