
#cats{
	text-align: center;
}

.cat_item.first{
	display: none;
}

.cat_item{
	width:250px;
	height: 365px;
	margin-left:10px;
	margin-bottom: 10px;
	background-color: white;
	border-radius:1px;
	transition: 300ms;
	cursor: pointer;
	display: inline-flex;
	padding: 5px;
}
.cat_item a{
	color:black;
	text-decoration: none;
}

.cat_item:hover{
	box-shadow:0 0 7px rgba(0,0,0,.2);
}

.i_properties{
	background:white;
	padding-left:10px;
	padding-right:10px;
	border-radius:5px;
	padding-top:20px;
	margin-top:20px;
	padding-bottom:25px;
}

.cat_image{
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-color: white;
	height: 250px;
	width: 250px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}
.cat_name{
	height: 60px;
	width: 250px;
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	font-size:18px;
	font-weight: bold;
}