div#home-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: -50px auto 100px;
}

div.home-menu-item {
	flex-basis: 31%;
	display: block;
	overflow: hidden;
	border-radius: 25px;
	height: 500px;
}


div.home-menu-item:first-of-type {
	background-color: #59c7ca;
	color: #000;
}

div.home-menu-item:nth-of-type(2) {
	background-color: #f5bd40;
	color: #000;
}

div.home-menu-item:last-of-type {
	background-color: #022443;
	color: #fff;
}

div.home-menu-item h2.item-title {
	text-transform: uppercase;
	/* font-size: 19px; */
	font-size: 24px;
	margin-bottom: 30px;
}

div.home-menu-item > a {
	color: unset;
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

div.item-content {
	max-width: 90%;
	width: 230px;
	display: block;
	margin: 0 auto;
}

div.item-content p {
	font-size: 18px;
	/* color: #000; */
	color: #595959;
}

div.home-menu-item:last-of-type h2.item-title, div.home-menu-item:last-of-type div.item-content p {
	color: #fff;
}

img.item-image {
	width: auto;
	display: block;
	min-width: 100%;
	max-width: unset!important;
	height: 65%!important;
	object-fit: cover;
	object-position: top;
}

@media screen and (max-width: 900px) {
	div.elementor-widget-container div#home-menu {
		flex-direction: column;
		align-items: center;
	}
	
	div#home-menu div.home-menu-item {
		width: 500px;
		max-width: 99%;
		margin: 50px auto;
	}
	div.home-menu-item div.item-content {
		width: 350px;
		max-width: 90%;
		text-align: center;
	}
}