/* Certificaciones */
.certificaciones{
	background-color: rgba(255, 255, 255, 0.9);
	width: 100%;
	margin: auto;
	padding: 1%;
	margin-bottom: 1%;
}

.certificaciones h3{
	padding: 0.5%;
	color: #2c2c2c;
}

.divContenedorCertificaciones{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.certificacion {
	width: 22%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.certificacion * {
	padding: 1%;
	text-align: center;
}

.certificacion img {
	width: 50%;
	filter: drop-shadow(0px 0px 11px rgba(0,0,0,0.75));
}

@media(max-width: 1300px){
	.certificacion{
		width: 27%;
	}
}

@media(max-width: 1000px){
	.certificacion{
		width: 35%;
	}
	.certificacion img {
		width: 55%;
	}
}

@media(max-width: 600px){
	.certificacion{
		width: 42%;
	}
	.certificacion img {
		width: 60%;
	}
}

@media(max-width: 400px){
	.certificacion{
		width: 45%;
	}
	.certificacion img {
		width: 65%;
	}
	.certificacion h4,
	.certificacion p {
		font-size: 0.9em;
	}
}