

/*********************************************************** small screen */
	#MainContent2 {
		display: none;
	}

	#MainContent {
		width: 100%;
		padding: 50px 0px;
	}

	.DishBox {
		width: calc((100% / 1) - 100px);
		height: calc((100vw - 100px) / 2 * 3);
		margin: 0px auto 20px auto;
	}
	.DishBox2 {
		width: calc((100% / 1) - 100px);
		height: calc((100vw - 100px) / 2 * 3);
		margin: 0px auto 20px auto;
	}
	.DishBox4 {
		top: 0px;
		width: calc((100% / 1) - 100px);
		height: calc((100vw - 100px) / 2 * 3);
		margin: 0px auto 20px auto;
	}

	/*#DishBox4 {
		top: 0px;
	}*/

	#MainContentMobile {
		display: block;
	}

/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	#MainContent2 {
		display: block;
	}

	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;
	}

	.DishBox {
		width: calc((100% / 2) - 20px);
		height: calc((100vw - 100px - 40px - 20px) / 2 * 1.2);
		margin: 0px 10px 20px 10px;
	}
	.DishBox2 {
		width: calc((100% / 2) - 20px);
		height: calc((100vw - 100px - 40px - 20px) / 2 * 1.2);
		margin: 0px 10px 20px 10px;
	}
	.DishBox4 {
		top: 0px;
		width: calc((100% / 2) - 20px);
		height: calc((100vw - 100px - 40px - 20px) / 2 * 1.2);
		margin: 0px 10px 20px 10px;
	}

	/*#DishBox4 {
		top: 0px;
	}*/

	#MainContentMobile {
		display: none;
	}
}

/*********************************************************** large screen */
@media screen and (min-width: 1120px) {
	#MainContent2 {
		display: block;
	}

	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;	
	}

	.DishBox {
		width: calc((100% / 3) - 20px);
		height: calc(300px * 1.5);
		margin: 0px 10px 20px 10px;
	}
	.DishBox2 {
		width: calc((100% / 3) - 20px);
		height: calc(300px * 1.5 - 50px);
		margin: 0px 10px 20px 10px;
	}
	.DishBox4 {
		top: -50px;
		width: calc((100% / 3) - 20px);
		height: calc(300px * 1.5);
		margin: 0px 10px 20px 10px;
	}

	/*#DishBox4 {
		top: -50px;
	}*/

	#MainContentMobile {
		display: none;
	}
}


/*********************************************************** Main Content */
#BottomBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgb(26, 25, 23);
}

#MainContent2 {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
}

#MainContent {
	position: relative;
	top: 0px;
	left: 0px;
	background: rgb(19, 18, 17);
	margin: auto;

	display: flex;
	flex-wrap: wrap;
}

.DishBox {
	position: relative;
	/*top: 0px;
	left: 0px;*/
	display: inline-block;
	cursor: pointer;

	/*background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/

	overflow: hidden;
}
.DishBox2 {
	position: relative;
	/*top: 0px;
	left: 0px;*/
	display: inline-block;
	cursor: pointer;

	/*background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/

	overflow: hidden;
}
.DishBox4 {
	position: relative;
	/*top: 0px;
	left: 0px;*/
	display: inline-block;
	cursor: pointer;

	/*background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/

	overflow: hidden;
}

.DishImage {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transform: scale(1.01);

	-webkit-transition: transform 0.8s;
	transition: transform 0.8s;
}

.DishBoxOver:hover > .DishImage {
	transform: scale(1.05);
}

.DishBoxImageFront {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*border: 5px solid rgb(193, 176, 137);*/
	border-width: 5px;
	border-style: solid;
	border-color: rgb(193, 176, 137);

	pointer-events: none;

	-webkit-transition: border-color 0.35s;
}
/*.DishBox:hover > .DishBoxImageFront {
	border-color: rgb(193, 176, 137);
}
.DishBox2:hover > .DishBoxImageFront {
	border-color: rgb(193, 176, 137);
}*/

.DishBoxInner {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
}

.DishBoxBg {
	position: absolute;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	background: rgba(56, 47, 44, 0.85);
}

.DishBoxTopLine {
	position: absolute;
	top: 30px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background: rgb(193, 176, 137);
}

.DishBoxBottomLine {
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background: rgb(193, 176, 137);
}

.DishBoxContent {
	width: calc(100% - 60px);
}

.DishBoxContentTitle {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	font-size: 16px;
	line-height: 17px;
	text-align: center;
	margin: 0px 0px 10px 0px;
}

.DishBoxContentText {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	font-size: 13.5px;
	line-height: 15px;
	text-align: center;
}


/*********************************************************** Main Content 2 Mobile */
#MainContentMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 50px 0px;
	background: rgb(19, 18, 17);
	margin: auto;
	min-height: 600px;
}

.DishImageMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 100px);
	height: calc((100vw - 100px) * 1.1);

	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	margin: auto;
}

.DishImageFrontMobile {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*border: 5px solid rgb(193, 176, 137);*/
	border-width: 5px;
	border-style: solid;
	border-color: rgb(193, 176, 137);

	pointer-events: none;
}

.DishInfoMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 100px);
	background: rgb(171, 156, 120);
	margin: auto;
}

.DishLineMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 40px);
	height: 1px;
	background: rgb(19, 18, 17);
	margin: auto;
}

.DishTitleMoblie {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 60px);
	margin: 0px auto 20px auto;

	font-size: 16px;
	color: rgb(19, 18, 17);
	line-height: 17px;
	text-align: center;
}

.DishTextMoblie {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 60px);
	margin: auto;

	font-size: 15px;
	color: rgb(19, 18, 17);
	line-height: 16px;
	text-align: left;
}