:root{
	--primary-color: #d84903;
	--secondary-color: #f7f1e3;
	--color-black: #020000;
	--color-white: #ffffff;
}
body {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	color: var(--color-black);
    font-family: 'Lato', sans-serif;
}
ul, li, ol, dl, dt, dd, form, p, img, a, h1, h2, h3, h4, h5, h6, table, tr, th, td, tbody, select, textarea, input, button {
	margin: 0px;
	padding: 0px;
	list-style: none;
	outline: none;
	border: none;
}
.clear {
	clear: both;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: 'Orelega One', cursive;
}
a:focus, a {
	outline: none;
	color: var(--primary-color);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
@media (max-width:767px){
	.container{
		max-width: 480px;
	}
}
/* -- Animation -- */
.hidebox {
	opacity: 0;
}
/* --- Header --- */
#header{
	margin-bottom: 60px;
}
#header.homeheader{
	margin-bottom: 0px;
}
.topHeader{
    background: #353b48;
    padding: 5px 0px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.topHeader ul{
	padding-left: 5px;
	padding-right: 5px;
}
.topHeader ul li{
	padding: 5px 10px;
	display: inline-block;
}
.topHeader ul li span{
	background: var(--primary-color);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-block;
	color: var(--color-white);
	line-height: 17px;
	text-align: center;
	margin-right: 5px;
}
.topHeader ul li span .fa{
	font-size: 10px;
}
.midHeader{
	padding: 25px 0px;
}
.midHeader-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.midHeader .logo{
	float: left;
}
.midHeader .logo img{
	width: 100%;
	max-width: 280px;
	border-radius: 3px;
}
.midHeader ul{
	float: right;
	font-weight: bold;
	text-transform: uppercase;
}
.midHeader ul li{
	float: left;
	padding: 0px 0px 0px 5px;
}
.midHeader ul li a{
	background: var(--primary-color);
	display: block;
	color: var(--color-white);
	padding: 5px 10px;
	border-radius: 2px;
	transition: all linear 0.2s;
}
.midHeader ul li a:hover{
	background: var(--color-black);
}
.midHeader ul li:first-child a{
	background: var(--color-black);
}
.midHeader ul li:first-child a:hover{
	background: var(--primary-color);
}
@media (max-width:767px){
	.midHeader-inner{
		justify-content: center;
	}
	.midHeader-inner .logo{
		padding-bottom: 15px;
	}
	.midHeader ul{
		text-align: center;
	}
	.midHeader ul li{
		float: none;
		display: inline-block;
		padding-left: 0px;
	}
}
/* - Navbar - */
.MainNav .navbar{
	background: var(--primary-color);
	font-family: 'Orelega One', cursive;
	border-radius: 0px;
	border:none;
	margin-bottom:1px;
	font-size: 17px;
}
.MainNav .navbar-default .navbar-brand{
	color:#fff;
	font-family: 'Orelega One', cursive;
	text-transform:uppercase;
	display:none;
}
.MainNav .navbar-nav{
	float:none;
	text-align:center;
}
.MainNav .navbar-nav > li{
	float:none;
	display:inline-block;
}
.MainNav .navbar-default .navbar-nav > li > a{
	color: var(--color-white);
	text-transform:uppercase;
	transition: all linear 0.2s;
}
.MainNav .navbar-default .navbar-nav > li > a:hover, .MainNav .navbar-default .navbar-nav > li.active > a{
	background: var(--color-black);
	color: var(--primary-color);
}
@media (max-width:767px){
	.logoTop{
		float: none;
		text-align: center;
		margin-bottom: 30px;
	}
	.headerRight{
		float: none;
		text-align: center;
	}
	.socialMediaTop li{
		float: none;
		display: inline-block;
	}
	.callTop{
		padding-top: 10px;
	}
	.MainNav .navbar-default .navbar-brand{
		display: block;
	}
	.MainNav .navbar-default .navbar-toggle{
		border: none;
	}
	.MainNav .navbar-default .navbar-toggle .icon-bar{
		background: #fff;
	}
	.MainNav .navbar-default .navbar-toggle:hover, .MainNav .navbar-default .navbar-toggle:focus{
		background: var(--primary-color);
		border-radius: 2px;
	}
	.MainNav .navbar-default .navbar-toggle:hover .icon-bar, .MainNav .navbar-default .navbar-toggle:focus .icon-bar{
		background: #fff;
	}
	.MainNav .navbar-nav > li{
		display: block;
		text-align: left;
		padding-bottom: 1px;
	}
}
.affix{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
}
.affix .MainNav .navbar{
	border-radius: 0px;
}
/* --- Slider --- */
.slider{
	position:relative;
	margin-bottom:70px;
	padding: 100px 0px;
	background-image: url('../images/top-banner-bg.jpg');
	background-size: cover;
	background-position: center;
}
.slider .sliderBox{
	background: #fff;
	padding: 15px;
}
@media (max-width:767px){
	.slider #bx-pager{
		display: none;
	}
	.slider .bx-wrapper .bx-pager{
		display: none;
	}
	.slider .bx-controls-direction{
		display: none;
	}
	.slider .sliderBox{
		padding: 5px;
	}
	.slider{
		padding: 50px 0px;
	}
}
/* --- Home About --- */
.homeAbout{
	padding-bottom: 70px;
}
.homeAbout h2{
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 15px;
	font-size: 28px;
}
.homeAbout h2:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 1px;
	background-color: var(--primary-color);
}
.homeAbout h2 i{
	color: var(--primary-color);
	position: absolute;
	bottom: -17px;
	left: 50%;
	transform: translateX(-50%);
}
.homeAbout .textBlock{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	min-height: 350px;
}
.homeAbout .textBlock p{
	line-height: 26px;
	width: 100%;
	max-width: 450px;
}
.homeAbout .pic{
	background-image: url('../images/combo-eats.jpg');
	background-size: cover;
	height: 350px;
}
.homeAbout .pic.pic2{
	background-image: url('../images/combo-eats-2.jpg');
}
.homeAbout .btnLink{
	padding-top: 15px;
}
.homeAbout .btnLink a{
	color: #fff;
	background-color: var(--color-black);
	display: inline-block;
	padding: 8px 15px;
	text-transform: uppercase;
	font-weight: 700;
	transition: background-color .3s;
}
.homeAbout .btnLink a:hover{
	background-color: var(--primary-color);
}
@media (max-width:991px){
	.homeAbout .textBlock{
		min-height: 1px;
		padding-bottom: 30px;
	}
	.homeAbout.secBlock .textBlock{
		padding-top: 30px;
	}
}
/* --- Three Box Home --- */
.HomeThreeBox{
	margin-bottom: 1px;
	background-image: url('../images/bg-row-img.jpg');
	background-size: cover;
	padding: 80px 0;
	position: relative;
}
.HomeThreeBox:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0,0,0,.7);
}
.HomeThreeBox li{
	padding-top: 15px;
	padding-bottom: 15px;
}
.mainBox a.link{
	background: var(--primary-color);
	text-align: center;
	display: block;
	border-radius: 5px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	line-height: 120px;
	margin: 0 auto 20px;
}
.mainBox a.link:hover{
	background: #ad3901;
}
.mainBox a.link img{
	width: 52px;
}
.mainBox h3{
	font-family: 'Orelega One', cursive;
	font-size: 24px;
	text-align: center;
}
.mainBox h3 a{
	color: var(--color-white);
	display: block;
}
.mainBox h3 a:hover{
	color: var(--primary-color);
}
/* --- Contact Info on Home Page --- */
.mapBox iframe{
	display: block;
}
/* --- Footer --- */
.footerOrderRow{
	background-color: var(--primary-color);
	padding: 40px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: var(--color-white);
	text-align: center;
}
.footerOrderRow h3{
	font-size: 24px;
	padding-bottom: 15px;
}
.footerOrderRow a{
	background-color: var(--color-white);
	font-size: 18px;
	font-family: 'Orelega One', cursive;
	padding: 8px 15px;
	border-radius: 3px;
}
.footerOrderRow a:hover{
	background-color: var(--color-black);
	color: var(--color-white);
}
#footer{
	clear: both;
	font-size: 14px;
	color: #fff;
}
.footerTop{
	background-color: #353b48;
	padding: 60px 0 20px;
}
.contactArea{
	padding-bottom: 50px;
}
.contactArea .logoBottom{
	padding-bottom: 25px;
}
.contactArea .logoBottom img{
	width: 100%;
	max-width: 200px;
	border-radius: 5px;
}
.contactArea ul{
	padding-left: 10px;
}
.contactArea ul li{
	position: relative;
	padding: 0px 0px 10px 25px;
}
.contactArea ul li:last-child{
	padding-bottom: 0;
}
.contactArea ul li:before{
	position: absolute;
	top: 2px;
	left: 0px;
	font-family: 'FontAwesome';
}
.contactArea ul li.loc:before{
	content: "\f041";
}
.contactArea ul li.pho:before{
	content: "\f095";
}
.contactArea ul li.mob:before{
	content: "\f10b";
}
.contactArea ul li.email:before{
	content: "\f0e0";
}
#footer .block{
	padding-bottom: 50px;
}
#footer .block ul.OpenDay{
	padding-bottom: 20px;
}
#footer .block ul.OpenDay li{
	padding-bottom: 10px;
	font-size: 15px;
}
#footer .block ul.OpenDay li span{
	color: #ffc107;
}
#footer .block h2{
	font-size: 24px;
	padding-bottom: 15px;
}
#footer .block ul.SocialFooter li{
	padding-right: 5px;
	float: left;
	text-align: center;
	font-size: 14px;
}
#footer .block ul.SocialFooter li a{
	background: var(--color-black);
	width: 32px;
	height: 32px;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .block ul.SocialFooter li a:hover{
	background: var(--primary-color);
}
#footer .block .fbBox{
	background: #fff;
	padding: 10px;
	text-align: center;
}
#footer .lastRow{
	background: var(--color-black);
	padding: 15px;
	text-align: center;
	color: #fff;
}
#footer .lastRow a{
	color: #999;
}
#footer .lastRow a:hover{
	color: var(--primary-color);
}
/* --- Inner Pages --- */
.leftSide{
	padding-bottom: 60px;
}
.leftSide h2{
	font-size: 24px;
	padding-bottom: 10px;
	color: var(--primary-color);
	padding-top: 10px;
}
.leftSide h3{
	font-size: 18px;
	padding-bottom: 10px;
	color: var(--primary-color);
	padding-top: 10px;
}
.leftSide > ul > li{
	padding: 0px 0px 10px 30px;
	position: relative;
}
.leftSide > ul > li a:hover{
	color: var(--primary-color);
	text-decoration: underline;
}
.leftSide > ul > li:before{
	content: "\f101";
	top: 0px;
	left: 10px;
	font-family: 'FontAwesome';
	position: absolute;
}
/* --- Left Side --- */
.leftSide p{
	line-height: 28px;
	padding-bottom: 15px;
}
.leftSide p a:hover{
	text-decoration: underline;
	color: var(--primary-color);
}
/* -- Right Side -- */
#rightSide{
	padding-bottom: 30px;
}
#rightSide .box{
	position:relative;
	margin-bottom:20px;
}
#rightSide .box a.link{
	background: #ffb142;
	display: block;
	text-align: center;
	border-radius: 5px;
	padding: 20px 20px 80px 20px;
}
#rightSide .box h3{
	position:absolute;
	bottom:15px;
	left: 50%;
	font-size:15px;
	transform: translateX(-50%);
}
#rightSide .box h3 a{
	color:#fff;
	padding: 10px 15px;
	background: var(--color-black);
	display:block;
	position:relative;
}
#rightSide .box h3 a:before{
	border-color: transparent transparent var(--color-black) transparent;
	border-style: solid;
	border-width: 5px 10px 15px 10px;
	content: " ";
	display: block;
	position: absolute;
	top: -20px;
	left:50%;
	margin-left:-10px;
}
#rightSide .box:hover h3 a{
	background: #fff;
	color: var(--color-black);
}
#rightSide .box:hover h3 a:before{
	border-color: transparent transparent #fff transparent;
}
#rightSide .box img{
	width: 100%;
	max-width: 120px;
}
/* --- Order Online Page --- */
.orderOnlinePage h2{
	font-size: 24px;
	text-align: center;
	color: #e67e22;
	padding-bottom: 20px;
}
.orderOnlinePage p{
	text-align: center;
	font-size: 18px;
}
.orderOnlinePage p img{
	width: 100%;
	max-width: 350px;
}
.orderOnlinePage p span{
	font-weight: bold;
	color: #c0392b;
}
/* --- Contact Page --- */
.leftSide .contactInfo{
	background: var(--primary-color);
	color: #fff;
	padding: 20px;
	margin-bottom: 50px;
}
.leftSide .contactInfo h3{
	font-size: 24px;
	padding-bottom: 20px;
	color: #fff;
	text-transform: uppercase;
}
.leftSide .contactInfo h4{
	font-size: 16px;
	padding-bottom: 10px;
	text-transform: uppercase;
}
.leftSide .contactInfo ul{
	padding-left: 10px;
}
.leftSide .contactInfo ul li{
	position: relative;
	padding: 0px 0px 10px 25px;
}
.leftSide .contactInfo ul li:before{
	position: absolute;
	top: 2px;
	left: 0px;
	font-family: 'FontAwesome';
}
.leftSide .contactInfo ul li.loc:before{
	content: "\f041";
}
.leftSide .contactInfo ul li.pho:before{
	content: "\f095";
}
.leftSide .contactInfo ul li.mob:before{
	content: "\f10b";
}
.leftSide .contactInfo ul li.email:before{
	content: "\f0e0";
}
.leftSide .contactInfo .form-control{
	border-radius: 2px;
	box-shadow: none;
}
.leftSide .conform  h2{
	text-transform: uppercase;
}
.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: #f3e6e6 none repeat scroll 0 0;
	border-color: #924949 #924949 #924949;
	border-style: solid solid solid none;
	border-width: 2px 2px 2px medium;
	display: block;
	max-width: 250px;
	min-width: 150px;
	color: #924949;
	font-size: 13px;
	font-weight: bold;
	padding: 5px;
}
#msg {
	background: transparent url('../images/msg_arrow.gif') no-repeat scroll left center;
	display: none;
	padding-left: 7px;
	position: absolute;
	z-index: 200;
}
.conform {
	margin-bottom: 15px;
}
.conform label {
	font-size: 13px;
}
.conform .form-control {
	border-radius: 2px;
	box-shadow: none;
}
.conform textarea.form-control {
	min-height: 100px;
}
.conform .btn {
	text-transform: uppercase;
	border-radius: 2px;
	border: none;
	width: auto;
	display: inline-block;
}
.conform .btn.btn-default {
	background: #c82f27;
	color: #fff;
	font-weight: bold;
	outline: none;
	transition: all linear 1s;
}
.conform .btn.btn-default[type="reset"] {
	background: #e4635c;
}
.conform .btn.btn-default:hover {
	background: #ffe20e;
	color: #000;
}
.conform .form-horizontal .control-label {
	text-align: left;
	padding-bottom: 5px;
}
/* --- Photo Gallery --- */
.galleryPage{
	padding-bottom: 60px;
}
.galleryPage li{
	float: left;
	padding: 0px 15px 30px 15px;
	width: 25%;
}
.galleryPage li img{
	width: 100%;
	transition: all linear 0.5s;
}
.galleryPage li img:hover{
	filter: grayscale(100%);
}
@media (max-width:991px){
	.galleryPage li{
		width: 33.3333%;
	}
}
@media (max-width:767px){
	.galleryPage li{
		width: 50%;
	}
}
@media (max-width:500px){
	.galleryPage li{
		width: 100%;
	}
}
/* --- Go To Top --- */
#back-top{
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9;
	text-align: center;
}
#back-top span{
	background: rgba(117, 117, 117, 0.5);
	display: block;
	width: 40px;
	height: 40px;
	color: #fff;
	padding-top: 9px;
	border-radius: 2px;
	cursor: pointer;
}
#back-top span:hover{
	background: #e4635c;
}
/* -- Menu Page -- */
.container.menu{
	padding-bottom: 20px;
}
.menuBlock{
	padding-bottom: 30px;
}
.menuBlock .mainCatInfo{
	padding-bottom: 20px;
}
.menuBlock .mainCatInfo .menuPic{
	padding-bottom: 15px;
}
.menuBlock .mainCatInfo .menuPic img{
	width: 100%;
	max-width: 450px;
}
.menuBlock .mainCatInfo h2{
	font-size: 24px;
	border-left: 3px solid var(--primary-color);
	padding: 0px 0 0 15px;
	margin-bottom: 10px;
	color: var(--primary-color);
}
.menuBlock .mainCatInfo h3{
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--primary-color);
}
.menuBlock .mainCatInfo p{
	font-size: 15px;
	color: #666;
	line-height: 24px;
}
.menuBlock ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.menuBlock ul li{
	width: calc(50% - 20px);
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
	position: relative;
}
.menuBlock ul li h3{
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding-right: 80px;
}
.menuBlock ul li .price{
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 700;
}
.menuBlock ul li p{
	padding-top: 8px;
	font-size: 15px;
	color: #666;
}
@media (max-width:767px){
	.menuBlock ul li{
		width: 100%;
	}
}
/* -- Title Banner -- */
.titleBanner{
	background-image: url('../images/top-banner-bg.jpg');
	text-align: center;
	padding: 120px 20px;
	background-size: cover;
	background-position: center;
}
.titleBanner h1{
	color: #fff;
	font-size: 44px;
	position: relative;
	padding-bottom: 10px;
}
.titleBanner h1:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-color);
	width: 100px;
	height: 2px;
}
@media (max-width:767px){
	.titleBanner{
		padding: 80px 15px;
	}
}



/* Form */

 
.form-input {
	margin-bottom: 15px;
}
  
.form-inner-cnt label {
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 5px;
	color: #333333;
	display: block;
}
  
  .form-inner-cnt input[type="text"],
  .form-inner-cnt input[type="email"],
  .form-inner-cnt textarea {
	outline: none;
	width: 100%;
	font-size: 16px;
	line-height: 25px;
	padding: 12px 20px;
	margin-bottom: 15px;
	color: #333;
	padding: 12px 20px;
	font-family: inherit;
	text-align: left;
	-webkit-appearance: none;
	background: rgba(255, 154, 66, 0.02);
	display: grid;
	grid-template-columns: .1fr 1fr;
	align-items: center;
	padding-left: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
  }
  
  .form-inner-cnt textarea {
	height: 125px;
	resize: none;
	padding: 12px 15px;
	background: rgba(255, 154, 66, 0.02);
	display: grid;
	grid-template-columns: .1fr 1fr;
	align-items: center;
	padding-left: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
  }
  
  .form-inner-cnt input[type="text"]:focus,
  .form-inner-cnt input[type="email"]:focus,
  .form-inner-cnt textarea:focus {
	border: 1px solid #fd5f00;
	background: #fff;
  }
  
  .btn {
	text-decoration: none;
	width: 100%;
	border: none;
	cursor: pointer;
	padding: 12px 20px;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	color: #fff;
	background: #fd5f00;
	display: inline-block;
	border-radius: 4px;
	transition: 0.3s ease;
  }
  
  .btn:hover {
	background: #ec5900;
	transition: 0.3s ease;
  }
  
  @media all and (max-width: 590px) {
	.form-inner-cnt h3 {
	  font-size: 30px;
	}
  }
  
  .status-msg{
	  font-size: 16px;
	padding: 6px;
	border: 2px dashed;
	background: #fff;
	margin-bottom: 10px;
  }
  .status-msg.error{
	  color: #EA4335;
  }
  .status-msg.success{
	  color: #34A853;
  }