@charset "utf-8";
/* CSS Document */

section{
	
}

.productos{
width: 100%;
	
}



.datos{
	width: 100%;
	padding: 0px;
	
	}
	

.animado{
	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	
}

.mostrarArriba{
	animation: mostrarArriba 1s;
}

@keyframes mostrarArriba{
	0% {
		transform: translateY(80px);
	}
	100%{
		transform: translateY(0px);
	}
}





.productos h2{
	font-size: 80px;
	text-align: center;
	margin-top: 50px;
	
}



.productos .menu_productos{
	height: auto;
	padding-bottom: 0px;
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	width: 82%;
	
}

/*
.productos .menu_productos ul{
	width: 50%;
	height: auto;
	
	margin-bottom: 0px;
	
}*/

/*.productos .menu_productos ul li{
	
	height: auto;
	list-style-type: none;
  
	
	
}


.productos .menu_productos ul li a{
	width: 22%;
	height: auto;
	text-decoration: none;
	float: left;
	margin: 10px;
	
	
	
	
}

.productos .menu_productos ul li a img{
	width: 100%;
	height: auto;
	
}
*/














