.galeria-container{
	clear:both;
	width:100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow:hidden;
	/* flexbox */
	display: flex;
	flex-wrap: wrap; /*nowrap*/
	/*flex-direction: row;*/	
	justify-content: /*flex-start center space-between space-around*/ center;
}

/*******************************************image-galeria**/

.galeria-thumb {
	width: 25%;
	height: 250px;
	margin: 0rem;
	padding: 0px;
	float: left;
	overflow:hidden;
	
	/* rounded corner */
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
}

.galeria-thumb img{
	bottom: 50px;
	position: center;
	width: auto;
	height: cover;
	margin:0;
	float: center;
	max-width: 100%;
    max-height: cover;
}

/************************************************************************************
MAIN NAVIGATION 980px
*************************************************************************************/
@media all and (max-width : 980px) {
	
}

/************************************************************************************
MAIN NAVIGATION 810px
*************************************************************************************/
@media all and (max-width : 810px) {

}

/************************************************************************************
MAIN NAVIGATION 768px
*************************************************************************************/
@media all and (max-width : 768px) {

}

/************************************************************************************
MAIN NAVIGATION 680px
*************************************************************************************/
@media all and (max-width : 680px) {
	
}

/************************************************************************************
MAIN NAVIGATION 510px
*************************************************************************************/
@media all and (max-width : 510px) {

	.galeria-thumb {
		width: 50%;
		height: 160px;
		margin: 0;
		padding: 0px;
		float: left;
		overflow:hidden;
		background: #fc0000;
		
		/* rounded corner */
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
		
		/*transition*/
		-webkit-transition: width 0.7s;
		-moz-transition: width 0.7s;
		-ms-transition: width 0.7s;
		-o-transition: width 0.7s;
		transition: width 0.7s;
	}

	.galeria-thumb img{
		position: center;
		width: 100%;
		height: cover;
		margin:0;
		float: center;
		max-width: 100%;
		max-height: cover;
	}
		
}

/************************************************************************************
MAIN NAVIGATION 450px
*************************************************************************************/
@media all and (max-width : 450px) {
	
}