.image_card_background
{
	background-color: #fff;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}
.cont_img_card
{
	position: relative;
	display: flex;
	box-sizing: border-box;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	transform-style: preserve-3d;
}
.cont_img_card .box
{
	position: relative;
	width: 300px;
	height: 400px;
	box-sizing: border-box;
	box-sizing: border-box;
	margin: 20px 10px;
	perspective: 1000px;
	overflow: hidden;
	box-shadow: 0px 0px 2px 2px #888888;
	transform-style: preserve-3d;
}
.cont_img_card .box .imgbx
{
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	transform-origin: top;
	transform-style: preserve-3d;
	transition: 0.5s;
	transition-delay: .2s;
}
.cont_img_card .box:hover .imgbx
{
	transform: rotateX(-90deg);
	box-sizing: border-box;
	opacity: 0;
	transition-delay: .2s;
}
.cont_img_card .box .imgbx img
{
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 300px;
	height: 100%;
	object-fit: cover;
}
.cont_img_card .box .contentbox h1
{
	font-size: 22px;
	color: #18ba60;
}
.cont_img_card .box .contentbox p
{
	font-size: 12px;
	font-weight: lighter;
	text-align: left;
	color: #000;
	justify-content: center;
}
.cont_img_card .box .contentbox span
{
	color: #222222;
}		
.cont_img_card .box .contentbox
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	overflow: auto;
	display: flex;
	justify-content: center;
	padding: 30px;
	transform-origin: bottom;
	transform-style: preserve-3d;
	box-sizing: border-box;
	transition: 0.5s;
	transform: rotateX(90deg);
	opacity: 0;
}
.cont_img_card .box:hover .contentbox
{
	transform: rotateX(0deg);
	opacity: 1;
	box-sizing: border-box;
	color: #fff;
	transition-delay: .0s;
}

a{
	text-decoration: none !important;
}