#cat-home-act {
	display: table;
	text-align: center;
	width: 100%;
	padding-bottom: 20px;
	margin-top: 20px;
}

#cat-home-act h2 {
	text-align: center;
	width: 100%;
	padding: 20px;
	font-size: 35px;
}

#cat-home-act .cont-cat {
	position: relative;
	text-align: center;
	display: inline-block;	
	width: 23%;
    height: 300px;
	border: 1px solid #c0c0c0;
	background: #fff;
	margin: 5px;
	overflow: hidden;
}
#cat-home-act .cont-cat img {
	width: 100%;
	height: 300px;
	object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2 ease-out;	
}

#cat-home-act .cont-cat img:hover {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2 ease-out;	
}

#cat-home-act .cat-title {
	position: absolute;
	top: 0;
	left: 0; 
	text-align: left;
	width: 100%;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding: 10px;
	line-height: 22px;
	text-shadow: -1px 0 black, 0 1px black, 2px 0 black, 0 -2px black;
}


#cat-home-act .cat-title:hover {
    color: #eee;
}

@media screen and (max-width: 800px) { 

#cat-home-act .cont-cat {
	width: 100%;
}
#cat-home-act .cont-cat{
	margin: 0;
}

}