#s-equipo-trabajo {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0px;
}

#content-equipo {
	width: 80%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.card-equipo {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	transition: ease all 0.6s;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.card-equipo > img {
	width: 100%;
}
.card-equipo > img:nth-child(1) {
	display: flex;
}
.card-equipo > img:nth-child(2) {
	display: none;
}
.card-equipo:hover {
	transform: scale(1.01);
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.card-equipo:hover > img:nth-child(1) {
	display: none;
}
.card-equipo:hover > img:nth-child(2) {
	display: flex;
}

.info-equipo {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 10px 0px;
	font-size: 18px;
	color: #fff;
	align-items: flex-start;
	width: 100%;
	padding: 20px;
	background: rgb(68, 111, 178);
	background: -moz-linear-gradient(
		180deg,
		rgba(68, 111, 178, 0.41780462184873945) 0%,
		rgba(68, 111, 178, 0.8799894957983193) 39%
	);
	background: -webkit-linear-gradient(
		180deg,
		rgba(68, 111, 178, 0.41780462184873945) 0%,
		rgba(68, 111, 178, 0.8799894957983193) 39%
	);
	background: linear-gradient(
		180deg,
		rgba(68, 111, 178, 0.41780462184873945) 0%,
		rgba(68, 111, 178, 0.8799894957983193) 39%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#446fb2",endColorstr="#446fb2",GradientType=1);
}

.info-equipo span:nth-child(1) {
	font-size: 16px;
}

.info-equipo span:nth-child(2) {
	font-size: 14px;
}

.info-equipo p {
	font-size: 14px;
	display: none;
}

.info-equipo p b {
	font-family: "Montserrat-Bold";
}

.card-equipo:hover .info-equipo p {
	display: block;
}

.card-equipo:hover .info-equipo span {
	display: none;
}

@media screen and (max-width: 1024px) {
	#content-equipo {
		grid-template-columns: 1fr;
	}
}
