@import url('https://fonts.googleapis.com/css?family=Quicksand:300,500,600');

*:focus {
	outline: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5;
}

button {
	cursor: pointer;
}

a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

.btn {
	padding: 10px;
	width: 125px;
	line-height: normal;
	text-align: center;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 11px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn--circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 16px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn--std {
	color: #141825;
	background: #f8f8f9;
	border: 1px solid #f8f8f9;
}

.btn--std:hover {
	background: #141825;
	border: 1px solid #141825;
	color: #f8f8f9;
}

.btn--std.btn--secondary {
	background: #141825;
	color: #f8f8f9;
}

.btn--std.btn--secondary:hover {
	color: #141825;
	background: #f8f8f9;
}

.btn--light {
	background: transparent;
	border: 1px solid #f8f8f9;
	color: #f8f8f9;
}

.btn--light:hover {
	background: #f8f8f9;
	color: #141825;
}

.btn--light.btn--secondary {
	background: transparent;
	border: 1px solid #141825;
	color: #141825;
}

.btn--light.btn--secondary:hover {
	background: #141825;
	color: #f8f8f9;
}

nav {
	position: sticky;
	z-index: 50;
	top: 0;
	left: 0;
	display: none;
	margin: 0;
	width: 100%;
	min-height: 50px;
	padding: 4px 0;
	background-color: #FFF;
}

@media (max-width: 500px) {
	nav {
		display: flex;
	}
}

nav:after,
nav:before {
	position: absolute;
	z-index: 10;
	top: 0;
	content: '';
	width: 24px;
	height: 100%;
	background: rgba(255, 255, 255, 1);
}

nav:before {
	left: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .8) 10px, rgba(255, 255, 255, 0) 100%);
}

nav:after {
	right: 0;
	background: linear-gradient(-90deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .8) 10px, rgba(255, 255, 255, 0) 100%);
}

.nav__space {
	width: 16px;
	height: 1px;
	flex-shrink: 0;
}

.nav__items {
	display: flex;
	align-items: center;
	overflow-x: auto;
	margin: auto;
	transition: all 0.2s ease-in-out;
}

.nav__item {
	position: relative;
	font-size: .75rem;
	font-weight: 500;
	line-height: 1.5rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin: 0 16px;
	padding: 8px 0;
	flex-shrink: 0;
	color: #141825;
}

.nav__item.active {
	color: #c69962;
}

div.wrap-restaurant {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100vh;
}

section.restaurant {
	position: relative;
	display: flex;
	flex-basis: 50%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 60px;
	color: #fff;
	overflow: hidden;
}

img.restaurant__logo {
	width: 100%;
	max-width: 100px;
	height: auto;
}

h2 {
	margin: 15px 0 0 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.2em;
	font-size: 14px;
}

img.restaurant__picture {
	width: 100%;
	max-width: 450px;
	height: auto;
	margin: 25px 0;
}

p.restaurant__description {
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin: 0 0 40px;
	line-height: 1.6;
	z-index: 10;
	letter-spacing: 0.05em;
}

div.restaurant__btns {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

div.restaurant__btns .btn {
	margin: 10px;
}

div.restaurant__links {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	z-index: 20;
	background-color: #fff;
	padding: 10px 15px;
	border-radius: 2px;
	box-shadow: 0 2px 16px rgba(4, 48, 55, 0.15);
}

section.restaurant-1 {
	background-color: #141825;
}

section.restaurant-1 h2 {
	color: #f8f8f9;
}

section.restaurant-1 p.restaurant__description {
	color: #f8f8f9;
}

section.restaurant-2 {
	background-color: #f8f8f9;
}

section.restaurant-2 h2 {
	color: #141825;
}

section.restaurant-2 p.restaurant__description {
	color: #474d68;
}

@media (max-width: 900px) {
	body {
		height: auto;
	}

	section.restaurant {
		padding: 60px 20px;
		flex-basis: 100%;
	}

	section.restaurant-2 {
		padding-bottom: 110px;
	}
}

@media (max-width: 900px) and (max-height: 900px) {

	body,
	div.wrap-restaurant,
	body.fancybox-active {
		height: auto;
	}
}

@media (max-width: 500px) {

	div.restaurant__btns,
	div.restaurant__btns .btn {
		width: 100%;
	}
}

@media (max-height: 450px) {

	body,
	div.wrap-restaurant,
	body.fancybox-active {
		height: auto;
	}

	section.restaurant {
		padding: 60px 20px;
	}
}

.fancybox-active {
	height: 100vh;
}

body .fancybox-slide--iframe .fancybox-content {
	width: 600px !important;
	max-width: calc(100vw - 30px);
	height: 100%;
	max-height: 570px;
	border-radius: 4px;
	overflow: hidden;
}

.iframe-wrapper {
	width: 100%;
	height: 100%;
	min-height: 400px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 500px) {
	body .fancybox-slide--iframe .fancybox-content {
		width: 100% !important;
		height: 100% !important;
		max-width: 100%;
		max-height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 0;
		margin: 0;
		border-radius: 0;
	}
}