.floating_box{
	width:100%;
	height:auto;
	position: relative;
	text-decoration:none;
	display: inline-block;
	float: left;
	margin: 0px;
	padding: 0px;
	z-index : 1;
	
}

.floating_box img{
	max-height: 300px;
	width:100%;
	object-fit: cover;
}



.floating_box .text_title{
	visibility:hidden;
	position: absolute;
	top:0%;
	background-color: #32324e;
	text-align:center;
	color: #e0e0eb;
	width: 100%;
	height: 0%;
	font-size:20px;		
	padding:5px 0;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index:3;
	transition: height 1s;
}

.floating_box:hover .text_title{
	visibility: visible;
	height:25px;
}