.institutionalContent--certificates {
	max-width: 700px;
}
.certificatesBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 16px;
}
.certificatesBox__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% / 5 - 16px);
	margin: 0 0 32px;
	padding: 16px;
	background: #ffffff;
	border-radius: 3rem;
	text-align: center;
}
.certificatesBox__img {
	height: 80px;
	margin: 0 0 16px 0;
}
.certificatesBox__span {
	font-weight: 500;
	color: #333333;
}

@media (max-width: 980px) {
	.certificatesBox__box {
		width: calc(100% / 3 - 16px);
	}
}
@media (max-width: 650px) {
	.certificatesBox__box {
		width: calc(100% / 2 - 16px);
	}
	.certificatesBox__img {
		height: 50px;
	}
}
