.mega-menu-list{
	display: grid;
	grid-template-columns: repeat(3, calc(100%/3));
	grid-template-rows: 210px;
	grid-gap: 4px;
	box-sizing: border-box;
}
.mml-error{
	grid-column: 1/-1;
	text-align: center;
	padding: 30px;
	font-size: 1.3rem;
	color: #000;
}
.mml-element{
	grid-column: span 1;
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 100%;
	height: 210px;
}
.mml-wrapper{
	padding: 15px 20px 30px;
	display: flex;
	height: 100%;
	box-sizing: border-box;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 3;
}
.mml-element:before{
	display: block;
	content: '';
	position: absolute;
	background: rgb(0,0,0);
	opacity: 0.2;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: 0.3s all;
	z-index: 2;
}
.mml-element:hover:before{
	opacity: 0;
}
.mmle-title{
	color: #eee;
	font-size: 1.1rem;
	text-shadow: 0 0 4px #000;
	line-height: 1.2rem;
	background: rgba(0,0,0,0.7);
	padding: 10px 3px;
	width: 100%;
}
.mml-element:hover .mmle-title{
	background: rgba(0,0,0,0.4);
}
.mmle-btn{
	border-color: #fff;
	border-radius: 0;
	font-weight: 500;
	padding: 6px 20px;
	border-width: 2px;
	border-radius: 3px;
	background: #fff;
	color: #222;
	text-shadow: 0 0 0 #fff;
}
.mmle-btn:hover, .mmle-btn:focus{
	color: #fff;
	background: rgba(255,255,255,0.3);
	text-shadow: 0 0 3px #000;
}