section.desplegable2 {
	display: flex;
	justify-content: center;
	/*align-items: center;*/
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

section.desplegable2 .tarjeta {
	position: relative;
	
	width: 300px;
	height: 400px;
	background: #000;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}

section.desplegable2 .referenciaimg {
	
	width: 300px;
	margin: 1.2em auto;
	
}



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 .content i.fas, section.desplegable2 .tarjeta .content svg {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	color: #444444;
}

section.desplegable2 .tarjeta .content h2 i.fas, section.desplegable2 .tarjeta .content h2 svg {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	color: #444444;
	opacity: 1;
	visibility: visible;
	transition-property: opacity, visibility;
	transition-delay: 0.25s;
}

section.desplegable2 .tarjeta:hover .content h2 i.fas, section.desplegable2 .tarjeta:hover .content h2 svg {
	opacity: 0;
	visibility: hidden;
	transition-delay: 0.25s;
}

section.desplegable2 .tarjeta:hover .imgBx img {
	opacity: 0;
}

section.desplegable2 .tarjeta i.fas.fa-arrow-down {
	opacity: 1;
}

section.desplegable2 .tarjeta:hover i.fas.fa-arrow-down {
	transform: rotate(180deg);
	opacity: 0;
}

section.desplegable2 .tarjeta .content {
	position: absolute;
	bottom: 20px;
	left: 10%;
	width: 80%;
	height: 80px;
	background: #efefef;
	transition: 0.5s;
	padding: 15px;
	box-sizing: border-box;
}

section.desplegable2 .tarjeta:hover .content {
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	/*overflow-y: auto;*/
}

section.desplegable2 .tarjeta .content h2 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	text-align: center;
}

section.desplegable2 .tarjeta .content p,
section.desplegable2 .tarjeta .content ul,
section.desplegable2 .tarjeta .content ol {
	margin: 10px 0 0;
	padding: 0;
	opacity: 0;
	line-height: 1.4em;
	transition: 0.5s;
	transition-property: opacity;
	visibility: hidden;
}

section.desplegable2 .tarjeta:hover .content p,
section.desplegable2 .tarjeta:hover .content ul,
section.desplegable2 .tarjeta:hover .content ol {
	opacity: 1;
	transition-delay: 0.5s;
	visibility: visible;
}

section.desplegable2 .tarjeta:hover .content ul,
section.desplegable2 .tarjeta:hover .content ol {
	-webkit-margin-start: 1em;
	margin-inline-start: 1em;
}

@media (max-width: 767px) {
	section.desplegable2 .tarjeta {
		margin: 1em auto;
	}
}