
section.desplegable1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px;
}

section.desplegable1 .card {
	position: relative;
	max-width: 530px;
	height: 300px;
	background: #fff;
	margin: 30px 10px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
	transition: 0.5s ease-in-out;
	transition-property: height;
}

section.desplegable1 .card:hover {
	height: 820px;
	/* height: 100%; */
}

section.desplegable1 .card .imgBx {
	position: relative;
	width: 260px;
	top: -60px;
	/* left: 20px; */
	z-index: 1;
}

section.desplegable1 .card .imgBx img {
	max-width: 100%;
    border-radius: 4px;
    height: 240px;
    object-fit: cover;
    /*margin-left:20px;*/
}

section.desplegable1 .card .imgBx p {
    font-size: 11px;
    line-height: normal;
    word-break: normal;
    text-align: center;
}

section.desplegable1 .card .content {
	line-height: normal;
	position: relative;
	margin-top: -140px;
	padding: 10px 15px;
	color: #111;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s ease-in-out;
	/* transition-property: visibility opacity margin-top; */
}

section.desplegable1 .card:hover .content {
	visibility: visible;
	opacity: 1;
	margin-top: -70px;
	transition-delay: 0.1s;
}

section.desplegable1 .card .content h2 {
	margin-bottom: 1em;
}

section.desplegable1 .card .content p {
    font-size: 90%;
    line-height:1.rem;
    word-break: normal;
    text-align: justify;
}

@media (max-width: 767px) {
	section.desplegable1 .card .imgBx {
		width: 150px;
	}
	section.desplegable1 .card .content {
		padding: 0;
	}
	/* section.desplegable1 .card:hover {
		height: 700px;
	} */
}