.contenido_galeria{
	width: 90%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}

.carta_presentacion{
	width: 33.333333%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}
.carta_presentacion img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.btnG{
	width: 100%;
	height: 30px;
	background: blueviolet;
	text-align: right;
	color: #fff;
	font-size: 10px;
	cursor: pointer;
}

.etiqueta{
	opacity: 0;	
	width: 100%;
	height: 0px;
	background: blue;
	transition: .5;
}
.abredescrip{
	transition: .5;
	opacity: 1;
	height: 200px;
	-webkit-animation: bajar 0.5s linear ;
	-o-animation: bajar 0.5s linear ;
	animation: bajar 0.5s linear ;
}
@keyframes bajar{
	from{ transform: translateY(-100%);opacity: 0; }
	to{ transform: translateY(0px);opacity: 1; }
}
.pagination{
	width: 100%;
	height: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.pagination ul{
	list-style-type: none;

}

.pagination ul li{
	float: left;
	width: 50px;
	height: 30px;
	cursor: pointer;
	font-weight: 700;
	transition: .3s;
	text-align: center;
	padding-top: 5px;
}
.pagination ul li:hover{
	background: #01C4D5;
	transition: .3s;
}
.pagination ul li a{
	color: #333;
}

.pagination ul .uni{
	float: left;
	width: 100px;
	height: 30px;
	background: #ea8511;
	text-align: center;
	cursor: pointer;
	transition: .3s;
	padding-top: 5px;
}
.pagination ul .uni:hover{
	background: #01C4D5;
	transition: .3s;
}
.pagination ul .uni a{
	color: #fff;
}
.pagination ul .disabled{
	float: left;
	width: 100px;
	height: 30px;
	background: #ea8511;
	text-align: center;
	cursor: pointer;
	transition: .3s;
	padding-top: 5px;
}
.pagination ul .disabled:hover{
	background: #01C4D5;
	transition: .3s;
}
.pagination ul .active{
	background: #01C4D5;
	
}
.pagination ul .active a{
	color: #fff;
}
.pagination ul .disabled a{ 
	text-decoration: none;
	color: #fff;
}


@media(max-width: 500px){
	.carta_presentacion{
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
}