
.limpiar{
	clear: both;
}

/*--GALERIA--*/
.galeria{
	background: #fff;
	border: 0px solid #0B347E;
	margin-top: 70px;
	widows: 50%;
}
.galeria img{/*--efectos al iniciar galeria--*/
	box-shadow: 1px 1px 10px #000;
	border-radius: 12%;
	display: online-block;
	float: center;
	margin: 15px;
	padding: 2px;
	opacity: .8;
	transition-duration: 1s;
	width: 22%;
}
.galeria img:hover{/*--efectos al pasar el cursor--*/
	border-radius: 5%;
	transition-duration: 1s;
	opacity: 1;
}


/************************
/* Diseño de 768px
/************************/
 @media screen and (max-width: 768px) {

	/*--galeria--*/
	.galeria img{
		width: 42%;
	}
 }
 

/************************
/* Diseno de 480px
/***********************/
 @media screen and (max-width: 480px) {

 	/*--galeria--*/
	.galeria img{
		float: none;
		display: block;
		margin: auto;
		margin-top: 10px;
		margin-bottom:10px ;
		width: 60%;
	}

 }