body, html{
	height: 100%;
	width: 100%;
	text-rendering: optimizeLegibility;
}



/* Global */
img{
	max-width: 100%;
}

.nopadd{
	padding: 0;
}

.nomarg{
	margin: 0;
}

a:hover,a:active,a:focus{
	text-decoration: none;
	color: rgb(29, 29, 29);
}

/*
.fixedflow{
	overflow: hidden !important;
	position: fixed;
}
*/

p{
	font-family: "Times New Roman", serif;
	font-size: 1.20em;
	color: #59595b;
}

.iconleft{
	background-image: url(../img/icon-left.png);
	background-repeat: no-repeat;
	position: absolute;
	left: 10px;
	top: 50%;
	width: 200px;
	height: 189px;
	background-position: center;
}

.iconright{
	background-image: url(../img/icon-right.png);
	background-repeat: no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	width: 119px;
	height: 189px;
	background-position: center;
}

.ease *{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

footer{
	text-align: center;
	margin-top: 80px;
	margin-bottom: 20px;
	font-size: 13px !important;
}

footer p{
	font-size: 13px !important;
}

footer a{
	font-weight: bold;
	color: #58585a;
}

/* Header */

header{
	border-bottom: 1px solid rgba(89, 89, 91, 0.35);
	padding: 10px 0;
	margin-bottom: 30px;
}

header .logo{
	margin: 0 auto;
	display: block;
}

/* Nav Icon */
#nav-icon {
	width: 55px;
	height: 45px;
	position: absolute;
	top: 40px;
	right: 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 9;
}

#nav-icon span{
	display: block;
	position: absolute;
	height: 4px;
	width: 70%;
	border-radius: 10px;
	background: #d1d1d1;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0px;
}

#nav-icon span:nth-child(2) {
	top: 14px;
}

#nav-icon span:nth-child(3) {
	top: 28px;
}

#nav-icon.open span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

#nav-icon.open span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}


/* Home */
body.home{
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	overflow-y:hidden;
	position: fixed;


    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgimghook{
	background-image: url(../img/bg.jpg);
	display: none;
}

.home .wrapper ul{
	font-family: 'Lobster', cursive;
	list-style-type: none;
	text-align: center;
	font-size: 1.6em;
	color: #c5c5c5;
	line-height: 2;
	padding: 0;
}

.home .wrapper ul li{
	width   : 200px;
	height  : 60px;
	margin: 0 auto;
	position: relative;
	z-index : 1;
}

.home .wrapper ul li:after{
	content: "";
	position: absolute;
	left: 90px;
	bottom: 5px;
	height: 1px;
	width: 20px;
	border-bottom: 2px solid #cbc9ca;
}

.home .wrapper ul li:last-child:after{
	border: none;
}

.logomain{
	display: block;
	margin: 0 auto;
	position: relative !important;
}



/* Sidebar */
aside{
	position: fixed;
	right: -320px;
	background-color: rgba(60, 60, 60, 0.78);
	height: 100%;
	width: 320px;
	color: #d9d7d8;
	font-family: "Times New Roman", serif;
	z-index: 8;
	-webkit-transform: translateZ(0);
}


aside ul{
	text-transform: uppercase;
	text-align: center;
	list-style-type: none;

	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

aside ul li{
	position: relative;
}

aside ul li:after{
	content: "";
	position: absolute;
	left: 144px;
	bottom: 0px;
	height: 1px;
	width: 20px;
	border-bottom: 3px solid #808080;
}

aside ul li:last-child:after{
	border: none;
}

aside ul li a{
	padding: 15px 0px;
	display: block;
	font-size: 1.65em;
	font-weight: bold;
	color: #dbdbdb;
	letter-spacing: 6px;
}

aside.slide-in{
	right: -320px;
	animation: slide-in 0.5s forwards;
}

aside.slide-out{
	right: 0px;
	animation: slide-out 0.5s forwards;
}




/* About */


/* Gallery */
body.pg-gallery{

}

.gallery .image{
	width: 19.40%;
	float: left;
	margin: 0.3%;
	overflow: hidden;
	cursor: pointer;
}

.gallery .image img{
	width: 100%;
	object-fit: cover;
}

.gallery .image:hover img,.gallery .image:focus img{
	transform: scale(1.2);
}

/* Menu */

body.menu{
	font-family: "Times New Roman", serif;
}

body.menu .left{
	/*padding-left: 0;*/
	padding-right: 50px;
}

body.menu .right{
	padding-right: 0;
	padding-left: 50px;
}

body.menu h1{
	text-align: center;
	color: #808285;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-size: 2.5em;
	font-weight: 100;
}

body.menu h1:before,body.menu h1:after{
	content: "";
	height: 16px;
	width: 57px;
	margin: 0 20px;
	background-image: url(../img/menu-header-elem.png);
	background-repeat: no-repeat;
	display: inline-block;
	margin: 0;
	background-position: center;
}

body.menu h1:after {
	background-position-x: 4px;
}

body.menu .item{
	margin-bottom: 30px;
	color: #808285;
}

body.menu p{
	font-size: 12px;
}

h2.wrap{
	position: relative;
	margin-bottom: 30px;
}

body.menu span.name, body.menu span.time{
	background-color: white;
	z-index: 2;
	position: inherit;
	font-family: 'Lobster', cursive;
	font-weight: 300;
}

body.menu span.time{
	padding-right: 10px;
}

body.menu span.size{
	position: absolute;
	top: 0;
	left: 0;
	top: 100%;
	font-size: 12px;
}

body.menu span.line{
	display: inline;
	background-color: rgba(109, 110, 113, 0.75);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	z-index: 0;
}

body.menu ul.price{
	font-size: 15px;
	list-style-type: none;
	text-align: right;
	position: absolute;
	right: 0;
	top: 20%;
	background-color: white;
	padding: 0 0 0 20px;
	margin: 0;
}

body.menu ul li span{
	font-weight: 100;
}


body.menu .products .col-lg-6 img{
	display: block;
	margin: 0 auto;
	margin-bottom: 50px;
}

body.menu .item .tax{
	float: right;

}

/* Contact */
.contact address{
	font-style: normal;
	font-family: "Times New Roman", serif;
	text-transform: uppercase;
	font-size: 1.2em;
	color: #6e6e70;
	letter-spacing: 4px;
}

.contact #map{
	display: block;
	width: 100%;
	height: 350px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.contact .social{
	width: 70px;
	display: block;
	float: right;
}

.contact .social a{
	height: 64px;
	width: 64px;
	opacity: 0.6;
	display: block;
	background-size: 52px;
	background-repeat: no-repeat;
	background-position: center;
}

.contact .social a:hover{
	opacity: 1;
}

.contact .social .facebook{
	background-image: url(../img/icon_fb.png);
}

.contact .social .insta{
	background-image: url(../img/icon_insta.png);
}












.image-source-link {
	color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}







































/* Animations */
@keyframes slide-in{
	100% {
		right: 0;
	}
}

@keyframes slide-out{
	100% {
		right: -320px;
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 20%, 0);
		transform: translate3d(0, 20%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}


/* Mobile Breakpoints */
@media only screen and (max-width : 456px){
	.hidden-m{
		display: none;
	}
	aside{
		background-color: rgba(60, 60, 60, 0.92);
	}
	.contact .social{
		width: 128px;
		display: flex;
		margin: 20px 0;
		float: none;
	}
	.contact .social a{
		float: left;
	}
	.gallery .image{
		width: 100%;
	}
	body.menu h1{
		font-size: 18px;
		margin-bottom: 40px;
	}
	body.menu h1:before,body.menu h1:after{
		background-size: 60%;
	}
	body.menu .left{
		padding-left: 15px;
		padding-right: 15px;
	}

	body.menu .right{
		padding-left: 15px;
		padding-right: 15px;
	}
	body.menu span.name, body.menu span.time{
		font-size: 17px;
	}

}

@media only screen and (max-width : 1200px){
	body.menu .right{
		/*padding-left: 0px;*/
	}
}
.square_btn {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #808285;
    border: solid 2px #808285;
    border-radius: 3px;
    transition: .4s;
}

.square_btn:hover {
    border-radius: 10px;
    color: #bebfc1;
    border: solid 2px #bebfc1;
}