section.desplegable2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

section.desplegable2 .tarjeta {
	position: relative;
	margin: 1em;
	width: 300px;
	height: 400px;
	background: #000;
	box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
}

section.desplegable2 .tarjeta .imgBx {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

section.desplegable2 .tarjeta .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
	transition: 0.5s;
}

section.desplegable2 .tarjeta:hover .imgBx img {
	opacity: 0;
}

section.desplegable2 .tarjeta .content {
	position: absolute;
	bottom: 20px;
	left: 10%;
	width: 80%;
	height: 60px;
	background: #efefef;
	transition: 0.5s;
	padding: 15px;
	box-sizing: border-box;
}

section.desplegable2 .tarjeta:hover .content {
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
}

section.desplegable2 .tarjeta .content h2 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	text-align: center;
}

section.desplegable2 .tarjeta .content p {
	margin: 10px 0 0;
	padding: 0;
	opacity: 0;
	line-height: 1.2em;
	transition: 0.5s;
	transition-property: opacity;
	visibility: hidden;
}

section.desplegable2 .tarjeta:hover .content p {
	opacity: 1;
	transition-delay: 0.5s;
	visibility: visible;
}

@media (max-width: 767px) {
	section.desplegable2 .tarjeta {
		margin: 1em auto;
	}
}