#content-title-menu {
	width: 100%;
	padding: 15px 0px;
	background-color: #EFEFEF;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#content-title-menu img {
	width: 55%;
}

#content-cards-menu {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.content-card {
	width: calc(100% / 3 - 25px);
	margin: 10px 10px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: ease all 0.5s;
}

.content-card:hover {
	transform: scale(1.1,1.1);
}

.content-img-plato {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
	transition: ease all 0.5s;
}

.content-img-plato:hover {
	transform: scale(1.1,1.1);
	box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -7px rgba(0,0,0,0.2);
}

.content-img-plato:hover .content-title-plato {
	transform: scale(1.1,1.1);
	box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -7px rgba(0,0,0,0.2);
}

.content-img-plato img {
	width: 100%;
}

.content-title-plato {
	width: 100%;
	padding: 3px;
	border-radius: 4px;
	background-color: #FF5555;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -10px;
}

.content-title-plato span {
	color: #ffffff;
	font-size: 12px;
	font-family: 'averta Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}