@charset "utf-8";
/* CSS Document */

body{
	margin:0px;
	padding:0px;
	font-size:16px;
	font-family: 'Martel', serif;
	color:#06263b;
}
ul, li, ol, dl, dt, dd, form, p, img, h1, h2, h3, h4, h5, h6{
	margin:0px;
	padding:0px;
	list-style:none;
	outline:none;
	border:none;
}
.clear{
	clear:both;
}
a:focus{
	outline:none;
}
/* --- Header --- */
#header{
	padding-top:78px;
}
#header .logo{
	float:left;
}
/* - Menu CSS - */
::selection {
	color: #fff;
	background-color: #8167a9;
}
::-moz-selection {
	color: #fff;
	background-color: #8167a9;
}
.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 5px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 28px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
	font-size:14px;
}
.navbar-brand img{
	height: 48px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-radius: 5px;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #fff;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #fff !important;
	font-weight: 500;
    transition: all 200ms linear;
	text-transform:uppercase;
}
.nav-item:hover .nav-link{
	color: #f0ad05!important;
}
.nav-item.active .nav-link{
	color: #f0ad05!important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
	font-weight:bold;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #f0ad05;
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

/* #Primary style
================================================== */

.bg-light {
	background-color: #6b116b!important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}
.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}

.nav-item a.nav-link i{
	margin-right:8px;
	display:none;
}
.active.nav-item a.nav-link i{
	display:inline-block;
}
#header li.nav-item{
	margin-left:30px;
}
/* #Media
================================================== */
@media (max-width:991px){
	#header{
		padding-top:54px;
	}
	#header .navbar-brand img{
		height:24px;
		padding-top:0px;
		padding-bottom:0px;
	}
}
@media (max-width: 767px) {
	#header li.nav-item{
		margin-left:0px;
	}
	.nav-item{
		padding-top:5px;
		padding-bottom:5px;
	}
	.nav-item a.nav-link i{
		display:inline-block;
	}
	.nav-item:after{
		display: none;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
		display:none;
	}
	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 10px;
		left: -23px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	body.dark .nav-item::before {
		background-color: #fff;
	}
	body.dark .dropdown-toggle::after {
		background-color: #fff;
	}
	body.dark .dropdown-menu {
		background-color: transparent;
		box-shadow: none;
	}
}
/* --- Slider --- */
.slideshow{
	position:relative;
	overflow: hidden;
}
.sliderBox{
	min-height:500px;
}
.BannerTop{
	position:absolute;
	width:100%;
	text-align:center;
	top:110px;
}
.BannerTop:before{
	position:absolute;
	bottom:-120px;
	left:50%;
	width:120px;
	height:120px;
	content:"";
	background:url(../images/wheat.png);
	background-size:120px 120px;
	opacity:0.3;
	margin-left:-60px;
}
.BannerTop h1{
	color:#f0ad05;
	font-size:80px;
	padding-bottom: 10px;
	text-shadow:2px 2px 0px #0e192d;
}
.BannerTop h2{
	color:#f0ad05;
	font-size:42px;
	margin-top:-20px;
	text-shadow:1px 1px 0px #0e192d;
}
.BannerTop h3{
	color:#fff;
	font-size:16px;
	font-weight:bold;
	padding-bottom:20px;
}
.BannerTop ul li{
	display:inline-block;
	padding-left:3px;
	padding-right:3px;
}
.BannerTop ul li a{
	width:36px;
	height:36px;
	display:block;
	text-align:center;
	background:#6b116b;
	border-radius:50%;
	color:#fff;
}
.BannerTop ul li a:hover{
	background:#f0ad05;
}
.BannerTop ul li a i{
	margin-top:10px;
}
@media (max-width:767px){
	.sliderBox{
		min-height:300px;
	}
	.BannerTop{
		top:40px;
		padding-right:15px;
		padding-left:15px;
	}
	.BannerTop h1{
		font-size: 40px;
	}
	.BannerTop h2{
		font-size:28px;
		margin-top:-5px;
		padding-bottom:20px;
	}
}
/* --- Two Information Box in Home Page --- */
.twoBoxInfo{
	display:flex;
	color:#fff;
	position:relative;
	margin-bottom:60px;
}
.twoBoxInfo .yellowBox{
	width:50%;
	background:#915b3c;
	padding:50px 150px 50px 20px;;
	align-items:center;
}
.yellowContent{
	float:right;
}
.twoBoxInfo .yellowBox h2{
	font-size:48px;
	line-height:normal;
	display:inline-block;
}
.twoBoxInfo .yellowBox h2 span{
	display:block;
	font-size:24px;
}
.twoBoxInfo .yellowBox p{
	text-align:right;
	font-size:14px;
	padding-top:50px;
}
.twoBoxInfo .purpleBox{
	width:50%;
	background:#6b116b;
	padding:50px 20px 50px 150px;
	align-items:center;
}
.twoBoxInfo .purpleBox h2{
	font-size:32px;
}
.twoBoxInfo .purpleBox h2:nth-child(1){
	padding-bottom:30px;
}
.twoBoxInfo .purpleBox h2 span{
	display:block;
	font-size:20px;
}
.homeOrdBtn{
	position:absolute;
	bottom:50px;
	left:50%;
}
.homeOrdBtn a{
	background:#fff;
	display:block;
	font-weight:bold;
	text-transform:uppercase;
	color:#000;
	padding:12px 25px;
	border-radius:100px;
	margin-left:-77px;
	transition:all linear 0.2s;
}
.homeOrdBtn a:hover{
	text-decoration:none;
	background:#f0ad05;
	color:#fff;
	box-shadow:0px 0px 10px rgba(0,0,0,0.5);
}
@media (max-width:1199px){
	.twoBoxInfo .yellowBox{
		padding-right:100px;
	}
	.twoBoxInfo .purpleBox{
		padding-left:100px;
	}
}
@media (max-width:991px){
	.twoBoxInfo .yellowBox{
		padding-right:50px;
		padding-bottom:100px;
	}
	.twoBoxInfo .yellowBox h2{
		font-size: 36px;
	}
	.twoBoxInfo .yellowBox h2 span{
		font-size:20px;
	}
	.twoBoxInfo .purpleBox{
		padding-left:50px;
		padding-bottom:100px;
	}
	.homeOrdBtn{
		bottom:25px;
	}
}
@media (max-width:767px){
	.twoBoxInfo{
		flex-wrap:wrap;
	}
	.twoBoxInfo .yellowBox{
		width:100%;
		flex:0 0 100%;
		padding:30px 20px;
		text-align:center;
	}
	.yellowContent{
		float:none;
	}
	.twoBoxInfo .yellowBox p{
		text-align:center;
		padding-top:10px;
	}
	.twoBoxInfo .purpleBox{
		width:100%;
		flex:0 0 100%;
		padding:30px 20px 130px 20px;
		text-align:center;
	}
	.homeOrdBtn{
		bottom:50px;
	}
}
@media (max-width:575px){
	.twoBoxInfo{
		margin-bottom:0px;
	}
}
/* --- Certificates --- */
.certificates{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	padding-bottom: 20px;
}
.certificates img{
	width: 100%;
	max-width: 200px;
	height: auto;
}
/* --- News Home --- */
.newsHome .container{
	background:#f4f1ea;
	padding-top:15px;
	padding-bottom:15px;
	margin-bottom:60px;
}
.newsHome .container .newsInner{
	padding:15px;
	border:2px solid #fff;
	text-align:center;
}
.newsHome .container .newsInner p{
	padding-right:150px;
	padding-left:150px;
	line-height:32px;
}
@media (max-width:991px){
	.newsHome .container .newsInner p{
		padding-left:0px;
		padding-right:0px;
	}
}
/* --- Menu Category Home --- */
.menuHome{
	padding-bottom:30px;
}
.menuHome h2{
	text-align:center;
	position:relative;
	padding-bottom:20px;
	margin-bottom:40px;
	font-size:36px;
	font-weight:bold;
}
.menuHome h2:before{
	width:300px;
	height:12px;
	position:absolute;
	bottom:0px;
	left:50%;
	margin-left:-150px;
	content:"";
	background:url(../images/heading-divider.png);
	background-size:300px 12px;
	opacity:0.25;
}
.menuHome li{
	padding-bottom:30px;
}
.menuHome img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius:5px;
}
.menuHome .pic{
	position:relative;
	overflow:hidden;
	border-radius:5px;
}
.menuHome .pic h3{
	font-size:16px;
	font-weight:bold;
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	padding:45px 15px 15px 15px;
	background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.menuHome a{
	color:#fff;
	display: block;
	height: 240px;
}
.menuHome a:hover{
	color:#f0ad05;
}
.menuHome .gapTop{
	padding-top:30px;
}
@media (max-width:1199px){
	.menuHome .gapTop{
		padding-top:0px;
	}
}
@media (max-width:575px){
	.menuHome .pic{
		width:100%;
		max-width:450px;
		margin-left:auto;
		margin-right:auto;
	}
}
@media (max-width:480px){
	.menuHome h2{
		font-size:32px;
	}
}
/* --- Awards --- */
.awardsHome{
	padding-bottom:30px;
}
.awardsHome h2{
	text-align:center;
	position:relative;
	padding-bottom:20px;
	margin-bottom:40px;
	font-size:36px;
	font-weight:bold;
}
.awardsHome h2:before{
	width:300px;
	height:12px;
	position:absolute;
	bottom:0px;
	left:50%;
	margin-left:-150px;
	content:"";
	background:url(../images/heading-divider.png);
	background-size:300px 12px;
	opacity:0.25;
}
.awardsHome ul{
	text-align:center;
	padding-bottom:20px;
}
.awardsHome ul li{
	margin-bottom:30px;
	align-items:center;
}
.awardsHome ul li .block{
	background:#ecf0f1;
	height:100%;
	padding:35px 15px;
	position:relative;
	border-bottom:5px solid #915b3c;
}
.awardsHome ul li .block h3{
	font-weight:bold;
	font-size:17px;
	color:#915b3c;
	line-height:30px;
	position:relative;
	z-index:1;
}
.awardsHome ul li img{
	width:100%;
	position:absolute;
	width:50px;
	bottom:15px;
	right:15px;
	filter:grayscale(100%);
	transform:rotate(-45deg);
	opacity:0.5;
}
@media (max-width:575px){
	.awardsHome ul li{
		margin-bottom:15px;
	}
}
/* --- Current Offers --- */
.offers{
	padding-bottom:30px;
}
.offers h2{
	text-align:center;
	position:relative;
	padding-bottom:20px;
	margin-bottom:40px;
	font-size:36px;
	font-weight:bold;
}
.offers h2:before{
	width:300px;
	height:12px;
	position:absolute;
	bottom:0px;
	left:50%;
	margin-left:-150px;
	content:"";
	background:url(../images/heading-divider.png);
	background-size:300px 12px;
	opacity:0.25;
}
.offers ul{
	text-align:center;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.offers ul li{
	margin:0px 10px 30px 10px;
	width:100%;
	max-width:350px;
}
.offers ul li .block{
	background:url(../images/offer-bg-1.jpg);
	background-size:350px 350px;
	border-radius:5px;
	overflow:hidden;
	justify-content:center;
	align-items:center;
	display:flex;
	height:350px;
	position:relative;
	padding:20px;
	background: #6b116b;
}
.offers ul li:nth-child(3n+2) .block{
	background:url(../images/offer-bg-2.jpg);
}
.offers ul li:nth-child(3n+3) .block{
	background:url(../images/offer-bg-3.jpg);
}
.offers ul li .block:after{
	background: linear-gradient(180deg, rgba(145,91,60,0.85) 0%, rgba(107,17,107,0.85) 100%);
	width:100%;
	height:100%;
	content:"";
	top:0;
	left:0;
	position:absolute;
}
.offers ul li .block .overlay{
	position:relative;
	z-index:1;
	color:#fff;
}
.offers ul li .block .overlay h3{
	font-weight:bold;
	font-size:24px;
	padding-bottom:15px;
}
.offers ul li .block .overlay p{
	padding-bottom:10px;
}
.offers ul li .block .overlay p span{
	font-size:12px;
}
.offers ul li .block .overlay p:last-child{
	padding-bottom:0px;
}
.offers ul li .block .overlay h4{
	font-weight:bold;
	font-size:16px;
	padding-bottom:15px;
}
@media (max-width:1199px){
	.offers ul li{
		max-width:325px;
	}
}
/* --- Info Block Home --- */
.infoBlockHome{
	background:url(../images/welcome-bg.jpg);
	background-size:cover;
}
.infoBlockHome .overlay{
	background:rgba(0,0,0,.5);
	padding:100px 0px 0px 0px;
}
.infoBlockHome .block{
	padding-bottom:80px;
	color:#fff;
}
.infoBlockHome .block h3{
	font-weight:bold;
	font-size:32px;
	padding-bottom:10px;
}
.infoBlockHome .pic{
	background:#fff;
	padding:10px;
	position:relative;
	z-index:9;
	margin-right:50px;
}
.infoBlockHome .pic img{
	width:100%;
}
.infoBlockHome .block a{
	color:#f0ad05;
}
.infoBlockHome .block a:hover{
	color:#fff;
}
@media (max-width:991px){
	.infoBlockHome .overlay{
		padding-top:60px;
		padding-bottom:60px;
	}
	.infoBlockHome .block{
		padding-bottom:0px;
	}
	.infoBlockHome .pic{
		margin-right:0px;
	}
}
@media (max-width:767px){
	.infoBlockHome .block{
		padding-bottom:20px;
	}
}
/* --- Welcome Text --- */
.welcomeSection{
	background:#ecf0f1;
	padding-bottom:60px;
	margin-bottom:60px;
}
.innerWelcome{
	background:#6b116b;
	color:#fff;
	display:flex;
	margin-top:-50px;
}
.welcomeText{
	max-width:100%;
	flex:0 0 100%;
	padding:35px 50px;
}
.welcomeText h2{
	font-size: 36px;
	padding-bottom: 10px;
}
.welcomeText p{
	line-height:30px;
	padding-bottom:15px;
}
.mainOffer{
	max-width:50%;
	flex:0 0 50%;
	padding-left:50px;
	text-align:center;
	padding:100px 35px 35px 50px;
}
.mainOffer h3{
	font-weight:bold;
	font-size:20px;
	padding-bottom:10px;
}
.mainOffer p{
	padding-bottom:10px;
}
.mainOffer p span{
	font-size:12px;
}
@media (max-width:991px){
	.welcomeSection{
		padding-top:60px;
	}
	.innerWelcome{
		margin-top:0px;
	}
}
@media (max-width:575px){
	.welcomeText{
		padding:15px 15px;
	}
	.welcomeText h2{
		font-size:40px;
	}
}
/* --- Map --- */
.mapHome{
	margin-bottom:60px;
}
.mapHome iframe{
	display:block;
}
/* --- Footer --- */
.footerTop{
	padding-bottom:30px;
	background:#ecf0f1;
	padding-top:60px;
}
.tripAdvBox{
	margin-bottom:30px;
}
#CDSWIDSSP{
	width:100%!important;
}
.facebookBox{
	background:#3b5998;
	margin-bottom:30px;
	text-align:center;
}
.facebookBox a{
	color:#fff;
	padding:100px 20px 50px 20px;
	min-height:325px;
	display:block;
}
.facebookBox a:hover{
	color:#fff;
	text-decoration:none;
	background:#f0ad05;
}
.facebookBox a i{
	font-size:64px;
	margin-bottom:30px;
}
.facebookBox a h5{
	font-weight:bold;
}
.footerTop .box a{
	color:#fff;
}
.footerTop .box{
	background:#7f8c8d;
	color:#fff;
	padding:30px 30px 0px 30px;
	min-height:325px;
}
.footerTop .box h3{
	font-size:18px;
	font-weight:bold;
	padding-bottom:10px;
}
.footerTop .box p{
	font-size:14px;
	padding-bottom:20px;
}
.footerTop .box.last{
	margin-bottom:30px;
	padding-bottom:20px;
}
.footerLast{
	padding:15px 15px;
	text-align:center;
	color:#fff;
	background:#6b116b;
	font-size:13px;
	line-height:26px;
}
.footerLast a{
	color:#f0ad05;
}
.footerLast a:hover{
	text-decoration:underline;
	color:#fff;
}
@media (max-width:991px){
	.footerTop .box{
		height:auto;
	}
}
/* --- Inner Page Banner --- */
.innerBanner{
	position:relative;
	height:250px;
	margin-bottom:60px;
	background:url(../images/inner-banner.jpg);
	background-size:cover;
}
.innerBanner .BannerTop{
	background:rgba(0,0,0,0.4);
	height:250px;
	top:0;
}
.innerBanner .BannerTop h1{
	padding-top: 80px;
	font-size: 64px;
}
.innerBanner .BannerTop::before{
		display:none;
	}
@media (max-width:599px){
	.innerBanner .BannerTop h1{
		font-size: 48px;
		padding-top: 90px;
		padding-right: 20px;
		padding-left: 20px;
	}
}
/* --- Takeaway and Drinks Menu --- */
ul.twoMenu{
	padding-bottom:30px;
}
ul.twoMenu a{
	display:block;
	position:relative;
}
ul.twoMenu a img{
	width:100%;
}
ul.twoMenu a:before{
	background: linear-gradient(180deg, rgba(145,91,60,0.65) 0%, rgba(107,17,107,0.65) 100%);
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	content:"";
}
ul.twoMenu li{
	margin-bottom:30px;
}
ul.twoMenu h3{
	font-size:24px;
	color:#fff;
	position:absolute;
	top:50%;
	font-weight:bold;
	left:50%;
	border:5px solid #6b116b;
	width:250px;
	text-align:center;
	margin:-31px 0px 0px -125px;
}
ul.twoMenu h3 span{
	display:block;
	border:2px solid transparent;
}
ul.twoMenu h3 span b{
	background:#6b116b;
	display:block;
	padding:10px 15px;
}
ul.twoMenu a:hover h3{
	border-color:#fff;
}
ul.twoMenu a:hover h3 span b{
	background:#fff;
	color:#6b116b;
}
/* --- Menu Page --- */
.menuContainer{
	padding-bottom:50px;
}
.menuContainer .goto{
	padding-bottom:15px;
}
.menuContainer .goto a{
	color:#915b3c;
}
.menuContainer .goto a:hover{
	color:#6b116b;
}
.menuContainer h2{
	color: #6b116b;
	font-size: 48px;
	padding: 10px 0;
}
.menuContainer h3{
	color:#e84118;
	font-size: 32px;
	padding-bottom: 15px;
}
.menuContainer ul li h4{
	font-size:18px;
	font-weight:bold;
	color:#915b3c;
	padding-right:70px;
	padding-bottom:5px;
}
.menuContainer h4 span.chilly{
	display:inline-block;
	width:16px;
	height:16px;
	background:url(../images/chilli-icon.png);
	background-size:16px 16px;
	margin-left:5px;
}
.menuContainer h4 span.chilly.do{
	width:27px;
	background:url(../images/2chilli-icon.png);
	background-size:27px 16px;
}
.menuContainer ul li{
	float:left;
	width:50%;
	position:relative;
	border-bottom:1px dashed #ccc;
	margin-bottom:15px;
	margin-right:20px;
	width:calc(50% - 20px);
	padding-bottom:8px;
}
.menuContainer ul li:nth-child(2n+2){
	width:calc(50% - 20px);
	margin-right:0px;
	margin-left:20px;
}
.menuContainer ul li .price{
	position:absolute;
	top:0px;
	right:0px;
	color:#6b116b;
	font-weight:bold;
}
.menuContainer ul li:nth-child(2n+1){
	clear:left;
}
.menuContainer ul li p{
	font-size:14px;
	padding-bottom:8px;
	padding-right:70px;
}
.menuContainer ul li p.allergy{
	font-size:12px;
	color:#5e718e;
}
@media (max-width:991px){
	.menuContainer ul li{
		float:none;
		width:100%;
		margin-right:0px;
	}
	.menuContainer ul li h4{
		padding-bottom:12px;
	}
	.menuContainer ul li p{
		padding-right:0px;
	}
	.menuContainer ul li:nth-child(2n+2){
		width:100%;
		margin-left:0px;
	}
}
/* --- Contact Page --- */
.contactPage h3{
	text-align: center;
	font-size: 32px;
	color:#6b116b;
	padding-bottom: 15px;
}
.contactPage ul.ContactInfo{
	flex: 0 0 100%;
	display:flex;
	text-align:center;
	padding-bottom:30px;
	flex-wrap:wrap;
}
.contactPage ul li{
	margin-bottom:30px;
}
.contactPage ul li .box{
	border:2px solid #915b3c;
	padding:20px;
	min-height:100%;
}
.contactPage ul li .box i{
	font-size:48px;
	padding-bottom:20px;
}
.contactPage ul li .box p{
	font-size:15px;
}
.contactPage ul li .box h4{
	font-size:18px;
	font-weight:bold;
	padding-bottom:10px;
}
.contactForm{
	padding-bottom:60px;
}
.InsField{
	position:relative;
	padding-left:40px;
	margin-bottom:30px;
}
.InsField .icon{
	position:absolute;
	top:0px;
	left:0px;
	width:40px;
	height:40px;
	border-top:1px solid #444;
	border-bottom:1px solid #444;
	border-left:1px solid #444;
	text-align:center;
	padding-top:7px;
}
.InsField input.form-control{
	border:1px solid #444;
	border-radius:0px;
	font-size:14px;
	height:40px;
	color:#333;
}
.InsField input.form-control:focus{
	box-shadow:none;
}
.TextField textarea{
	border:1px solid #444;
	font-size:14px;
	color:#333;
	height:120px;
	resize:none;
	border-radius:0px;
}
.TextField{
	margin-bottom:30px;
}
.TextField textarea.form-control:focus{
	box-shadow:none;
	border:1px solid #444;
}
.captchaArea{
	margin-bottom:30px;
}
.captchaArea input.form-control{
	border:1px solid #444;
	border-radius:0px;
	font-size:14px;
	height:40px;
	color:#333;
	margin-bottom:5px;
}
.captchaArea span{
	display:block;
	font-size:12px;
}
.captchaArea input.form-control:focus{
	box-shadow:none;
	border:1px solid #444;
}
.subButtons input{
	border:none;
	border:2px solid #6b116b;
	border-radius:0px;
	background:transparent;
	color:#6b116b;
	font-weight:bold;
	text-transform:uppercase;
	padding-left:25px;
	padding-right:25px;
}
.subButtons input:hover, .subButtons input:focus{
	color:#fff;
	background:#6b116b;
}
.subButtons input[type="reset"]{
	border-color:#915b3c;
	color:#915b3c;
}
.subButtons input[type="reset"]:hover, .subButtons input[type="reset"]:focus{
	color:#fff;
	background:#915b3c;
}
.subButtons input:focus{
	outline:none;
	box-shadow:none;
}
.errorMessage{
	background: #c0392b;
	color: #fff;
	padding: 10px 15px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.SuccessMessage{
	background: #2ecc71;
	color: #fff;
	padding: 10px 15px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
/* --- Contact Page --- */
#msgcontent {
	background: #d4211c;
	display: block;
	max-width: 100%;
	width:100%;
	min-width: 150px;
	text-align:center;
	color: #fff;
	font-size: 16px;
	text-transform:uppercase;
	padding: 10px;
}
#msg {
	display: none;
	padding-left: 0px;
	position: fixed;
	z-index: 200;
	left:0px!important;
	bottom:0px!important;
	width:100%;
	top:unset!important;
}
.mapInner{
	padding-bottom:1px;
}
.mapInner iframe{
	margin-bottom:0px;
}
/* --- Photo Gallery --- */
.galleryPage{
	padding-bottom:30px;
}
.galleryPage .grid{
	display:block;
	width:100%;
	max-width:auto;
	margin:0px;
}
.galleryPage .grid li{
	width:33.3333%;
	box-sizing:border-box;
	float:left;
	padding:0px 15px 30px 15px;
}
.galleryPage .grid li img{
	width:100%;
	height:auto;
}
@media (max-width:991px){
	.galleryPage .grid li{
		width:50%;
	}
}
@media (max-width:575px){
	.galleryPage .grid li{
		width:100%;
		padding-bottom:15px;
		float:none;
		text-align:center;
	}
	.galleryPage .grid li img{
		max-width:400px;
		text-align:center;
		display:inline-block;
	}
}

/* Check Christmas Menu */
.checkChristmasMenu{
	padding: 60px 20px;
	display: flex;
	justify-content: center;
}
.checkChristmasMenu a{
	width: 100%;
	max-width: 500px;
	overflow: hidden;
}
.checkChristmasMenu img{
	width: 100%;
	transition: transform .5s;
}
.checkChristmasMenu a:hover img{
	transform: scale(1.1);
}

.christmas-menu{
	display: flex;
	justify-content: center;
	padding: 0 20px 60px;
}
.christmas-menu .container{
	position: relative;
	width: 100%;
	max-width: 900px;
	background: url('../images/christmas-bg.jpg');
	padding: 50px 20px;
}
.christmas-menu .container:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .7;
}
.christmas-menu .menu-item{
	position: relative;
	text-align: center;
	color: white;
	padding-bottom: 35px;
}
.christmas-menu .menu-item.last{
	padding-bottom: 0;
}
.christmas-menu .menu-item h2{
	font-size: 20px;
	padding: 14px 20px 10px;
	border-radius: 4px;
	color: #fff;
	background-color: #6b116b;
	margin-bottom: 12px;
}
.christmas-menu .menu-item .price{
	color: #f0ad05;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 10px;
}
.christmas-menu .menu-item .allergies{
	font-size: 12px;
	padding-top: 10px;
	color: #1abc9c;
}
@media (min-width:576px){
	.checkChristmasMenu{
		padding-top: 0;
	}
}
@media (min-width:1200px){
	.christmas-menu .container{
		padding: 80px 100px;
	}
}
