/* -------------- Core Styles --------------- */
body {
	color: #7c7a76;
    font-family: 'Open Sans', sans-serif;
	font-size: 14px/24px;
	line-height: 1.36364;
	-webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
}
a {
	text-decoration: none;
}
ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
	color: #4e2b1f;
}
p {
	font-size: 14px;
	line-height: 24px;
}
.button {
	border: 2px solid #c39b6d;
	background-color: rgba(0, 0, 0, 0);
	font-size: 12px;
	padding: 8px 25px;
	line-height: 18px;
	display: inline-block;
	border-radius: 4px;
	width: auto;
	font-family: 'Righteous', cursive;
	font-weight: 600;
	white-space: inherit;
	cursor: pointer;
	color: #c39b6d;
	transition: 300ms ease all;
	text-transform: uppercase;
	outline: 0;
}
.button:hover {
	background-color: #c39b6d;
	color: #FFF;
}
.img {
	max-width: 100%;
}


/* Utilities */
.info-alert {
	text-align: right;
	margin-top: 32px;
}

/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	background: #000;
	padding: 24px 0;
	box-shadow: 0px 0px 5px #000;
}
#header nav {
	font-size: 0;
}
#header ul {
	text-align: center;
}
#header ul li {
	display: inline-block;
	margin-left: 24px;
	font-size: 16px;
}
@media (max-width: 32em) {
	#header ul li {
		margin-left: 12px;
		font-size: 14px;
	}
}
#header ul li a {
	font-family: 'Righteous';
	transition: 333ms ease all;
	cursor: pointer;
	color: #FFF;
}
#header ul li a:hover {
	color: #c39b6d;
	transition: 333ms ease all;
}
#header ul li:first-child {
	margin-left: 0;
}




/* -------------- About Section | Desktop --------------- */
#about {
	padding: 90px 0;
}
#about .content .title {
	font-weight: 500;
	color: #4e2b1f;
	margin-bottom: 24px;
	line-height: 40px;
	font-size: 35px;
}
#about .content .headline {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 16px;
	color: #707070;
}
#about .content .desc {
	margin-bottom: 22px;
	font-size: 14px;
    line-height: 24px;
}
#about .img {
	display: block;
	max-width: 550px;
	width: 100%;
}
@media (max-width: 64em) {
	#about .img {
		margin: auto;
	}
}
/* -------------- About Section | Mobile --------------- */
@media (max-width: 64em) {
	#about {
		text-align: center;
		padding: 40px 0;
	}
	#about .content .title {
		margin: 24px 0;
	}
}






/* -------------- Services Section | Desktop --------------- */
#services {
	padding: 90px 0;
	border-top: 1px solid #ececec;
}
#services .feature-box {
	text-align: center
}
#services .feature-box .desc {
	max-width: 350px;
	margin: auto;
}
#services .feature-box .title {
	font-size: 20px;
	line-height: 24px;
	margin: 16px auto 8px;
}
/* -------------- Services Section | Mobile --------------- */
@media (max-width: 64em) {
	#services {
		padding: 40px 0;
	}
	#services .feature-box {
		margin-bottom: 32px;
	}
	#services .columns.large-4:last-child .feature-box {
		margin-bottom: 0;
	}
}





/* -------------- Testimonials Section | Desktop --------------- */
#testimonials {
	padding: 90px 0;
	text-align: center;
	background-color: #000;
}
#testimonials .item .title {
	font-weight: 500;
	color: #FFF;
	margin-bottom: 24px;
	line-height: 40px;
	font-size: 35px;
	margin: 12px 0;
}
#testimonials .item .desc {
	width: 60%;
	margin: 24px auto;
	color: rgba(255, 255, 255, 0.8);
}
#testimonials .item .fa {
	color: #c39b6d;
	font-size: 60px;
}
#testimonials .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #c39b6d;
}
#testimonials .owl-theme .owl-dots .owl-dot span {
	background: #333;
}
/* -------------- Testimonials Section | Mobile --------------- */
@media (max-width: 64em) {
	#testimonials {
		padding: 40px 0;
	}
}



/* -------------- Map Section | Desktop --------------- */
#map {
	width: 100%;
	height: 500px;
}




/* -------------- Footer Section | Desktop --------------- */
#footer {
	background: #000;
	padding: 90px 0;
}
#footer .content-box {
	text-align: center;
}
#footer .content-box .title {
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 20px;
	color: #FFF;
}
#footer .content-box .desc {
	color: #FFF;
}
#footer .content-box .img {
	max-width: 100%;
	display: block;
	margin: auto;
}
#footer .social-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
#footer .social-list li {
	margin-left: 8px;
}
#footer .social-list li:first-child {
	margin-left: 0;
}
#footer .social-list a {
	border: 0;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin: 0 2px;
    background: #FFF;
    color: #c39b6d;
    border-radius: 50%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    font-size: 20px;
}
#footer .copyrights {
	color: #FFF;
	margin-top: 90px;
	text-align: center;
}
/* -------------- Footer Section | Mobile --------------- */
@media (max-width: 64em) {
	#footer {
		padding: 40px 0;
	}
	#footer .content-box {
		margin-bottom: 44px;
	}
	#footer .columns.large-4:last-child .content-box {
		margin-bottom: 0;
	}
	#footer .copyrights {
		margin-top: 40px;
	}
}









/* -------------- Menu Section | Desktop --------------- */
#menu .dishes-header.bar {
	background: url('../img/balentines.jpg');
	background-size: cover;
    background-position: 50% 50%;
}
#menu .dishes-header {
	padding: 100px 50px;
	text-align: center;
	background: url('../img/kitchen.jpg');
	background-size: cover;
	position: relative;
	color: rgba(255, 255, 255, 0.8);
	background-position: 50% 50%;
}
#menu .dishes-header .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
}
#menu .dishes-header .content {
	position: relative;
    display: flex;
	max-width: 780px;
    margin: auto;
}
@media(max-width: 32em) {
	#menu .dishes-header .content {
		flex-direction: column;
	}
}
#menu .dishes-header .content .title {
	font-size: 60px;
    color: #FFF;
    margin-bottom: 12px;
    width: 35%;
    text-align: right;
}
#menu .dishes-header .content .desc {
	max-width: 380px;
    margin: auto;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    border-left: 5px solid #ffffff6b;
    padding-left: 30px;
    margin-left: 44px;
    padding: 64px 0 16px 44px;
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
}
@media (max-width: 32em) {
	#menu .dishes-header .content .desc {
		padding: 44px 0 16px 24px;
		font-size: 16px;
		line-height: 24px;
	}
}
#menu .item {
	margin-bottom: 24px;
}
@media (max-width: 64em) {
	#menu .menu-block .columns.large-6:last-child {
		margin-top: 24px;
	}
}
#menu .menu-block .columns.large-6 .item:last-child {
	margin-bottom: 0;
}
#menu .mprm-item-title-wrap {
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
#menu .mprm-item-title {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding-right: 10px;
	margin: 0;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	color: #4e2b1f;
	text-transform: uppercase;
}
#menu .mprm-item-title .text {
	padding-right: 5px;
}
#menu .mprm-item-title::after {
	content: '';
	position: absolute;
	border-bottom: 1px solid #ebebeb;
	width: 10000px;
	bottom: 5px;
	padding-left: 20px;
}
#menu .mprm-price {
	padding-left: 5px;
	white-space: nowrap;
	color: #c39b6d;
	font-family: 'Righteous', cursive;
}
#menu .menu-block-wrapper {
	position: relative;
}
#menu .menu-block-hidden {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
}
#menu .menu-dishes,
#menu .menu-bar {
	padding: 90px 0;
}
#menu .dishes-navbar,
#menu .bar-navbar {
	margin-bottom: 60px;
}
#menu .dishes-navbar .button,
#menu .bar-navbar .button {
	margin-bottom: 6px;
}
#menu .dishes-navbar .button.active,
#menu .bar-navbar .button.active {
	background: #c39b6d;
	color: #FFF;
}
#menu .menu-block {
	transition: all 333ms ease;
}
#menu .menu-block-hidden {
	transform: translateX(-100px);
	opacity: 0;
}
#menu .item-poped-out {
	transform: translateX(-100px);
	opacity: 0;
	position: absolute;
}
#menu .items-nested .item {
	padding-left: 15px;
	position: relative;
}
#menu .items-nested .item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #ebebeb;
	display: block;
}
#menu .items-nested .mprm-item-title .text,
#menu .items-nested .mprm-price  {
	font-size: 14px;
}
/* -------------- Menu Section | Mobile --------------- */
@media(max-width: 64em) {
	#menu .menu-dishes {
		padding: 40px 0;
	}
}














/* -------------- Intro Section | Desktop --------------- */
#intro {
	height: 850px;
	background: #333;
	position: relative;
	background: url('../images/hero_bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#intro .intro-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#intro .intro-content .title {
	font-size: 30px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 24px;
}
#intro .intro-content .desc {
	color: #FFF;
	font-style: italic;
}
#intro .intro-content .logo {
	max-width: 320px;
	margin: auto;
}
@media (max-width: 32em) {
	#intro .intro-content .logo {
		max-width: 180px;
	}
}
/* -------------- Intro Section | Mobile --------------- */
@media (max-width: 64em) {
	#intro {
		height: 80vh;
	}
}





/* Galeria */
#gallery {
	padding: 90px 0;
}
#gallery .wrapper {
	max-width: 960px;
	margin: auto;
}
#gallery .wrapper .title {
	font-weight: 500;
	color: #4e2b1f;
	margin-bottom: 24px;
	line-height: 40px;
	font-size: 35px;
	text-align: center;
}

#zamow .wrapper .title {
	font-weight: 500;
	color: #4e2b1f;
	margin-bottom: 24px;
	padding-top: 20px;
	line-height: 40px;
	font-size: 35px;
	text-align: center;
}


#gallery .button-group {
	margin-bottom: 24px;
}
#gallery .button-group .button.active {
	background: #c39b6d;
	color: #FFF;
}
.grid-wrapper {
	padding: 0 32px;
}
.grid:after {
	content: '';
	display: block;
	clear: both;
}
.grid-sizer,
.grid-item {
	width: 33%;
}
.grid-item {
	float: left;
	margin-bottom: 0.5%;
}
.grid-item inner{
	position: relative;
	height: 0;
}

.gutter-sizer {
	width: 0.5%;
}
.grid-item img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.button-group{
	text-align: center;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	#gallery {
		padding: 40px 0;
	}
	.grid-sizer,
	.grid-item {
		width: 49.5%;
	}
	.grid-item {
		margin-bottom: 1%;
	}
	.gutter-sizer {
		width: 1%;
	}
}


.pswp {
	z-index: 99999999999 !important;
}