section.desplegable2 {
	display: flex;
	justify-content: center;
	/*align-items: center;*/

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.cont-t{
width: 300px;
margin: 0 1em 1em 1em;
}

section.desplegable2 .tarjeta {
	position: relative;
	margin: 0 1em 1em 1em;
	width: 300px;
	height: 400px;
	background: #000;
	box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
}

section.desplegable2 .tarjeta .imgBx {
	    background: #00a198;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    padding-top: 50%;
}

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: #FFF;
	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, section.desplegable2 .tarjeta:hover svg {
	transform: rotate(180deg);
	opacity: 0;
}

section.desplegable2 .tarjeta .content {
	color: #FFF;
	position: absolute;
	bottom: 20px;
	left: 10%;
	width: 80%;
	height: 60px;
background:  #04897f;

	transition: 0.5s;
	padding: 15px;
	box-sizing: border-box;
	font-weight: 100;
}

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;
	color: #FFF;
	font-weight: bold;
	
}

section.desplegable2 .tarjeta .content p,
section.desplegable2 .tarjeta .content ul,
section.desplegable2 .tarjeta .content ol {
	margin: 10px 0 0;
	padding: 0;
	opacity: 0;
	
	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;
	}
}