@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,400i,500,500i,700|Nunito+Sans:400,400i,600,600i,700,700i&display=swap');

/* ------------------------------------------
	BASICS 
------------------------------------------ */

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

body {
	margin: 0;
	color: #2C3037;
	font-family: var(--font_text);
	font-weight: 400;
	line-height: 1.3;
}

a {
	color: #2C3037;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	transition-property: color, background;
}

.s--gallery.grid,
.s--events.grid,
.s--press.grid {
	gap: 20px;
}

.s--restaurants {
	gap: 40px;
}


/* ------------------------------------------
	DIVIDER
------------------------------------------ */

hr {
	display: block;
	height: 1px;
	width: 100%;
	margin: 20px auto;
	border: none;
	background-color: #E9EAEB;
}

.divider-custom {
	background-color: transparent;
	background-image: url(/img/divider-custom--black.png);
	height: 25px;
	background-repeat: no-repeat;
	background-position: center;
	margin: 20px 0 0 0;
}


/* Size */

.divider--small {
	margin: 15px auto;
	width: 40px;
}

.divider--big {
	height: 2px;
}


/* Style */

.divider--color {
	background-color: var(--color_primary);
}


/* ------------------------------------------
	TEXT
------------------------------------------ */

h1,
h2,
h3 {
	font-family: var(--font_title);
	hyphens: auto;
	word-break: break-word;
}

h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 20px;
}

h2 {
	font-size: 24px;
	letter-spacing: .04em;
	margin: 0 0 15px;
}

h3 {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 15px;
}

h4 {
	font-size: 14px;
	font-weight: 600;
	color: #ABACAF;
	margin: 0 0 5px;
}

.main-title {
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 1;
	margin: 0;
	background-color: #FFF;
	padding: 15px;
}

.subtitle {
	text-transform: uppercase;
	color: #ABACAF;
	margin: 0 0 10px;
}

p {
	margin: 10px 0;
}


/* ------------------------------------------
	BUTTONS
------------------------------------------ */


/* Shape */

.btn {
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	padding: 10px 15px;
	border: none;
	border-radius: 2px;
	transition: 0.2s ease-in-out;
	transition-property: color, background;
}

.btn-square,
.btn-circle {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	font-size: 18px;
	transition: 0.2s ease-in-out;
	transition-property: color, background;
}

.btn-square {
	border-radius: 2px;
}

.btn-circle {
	border-radius: 50%;
}

.btn-link {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: var(--color_primary);
	font-size: 14px;
	font-weight: 600;
	border-radius: 2px;
	transition: all 0.2s ease-in-out;
}

.btn-link:hover {
	color: var(--color_primary-darken);
}


/* Size */

.btn.btn--small {
	padding: 7px 15px;
}

.btn-square.btn--small,
.btn-circle.btn--small {
	font-size: 16px;
	width: 30px;
	height: 30px;
}


/* Style */

.btn--std {
	color: #FFF;
	background-color: var(--color_primary);
	box-shadow: 0 2px 8px var(--color_primary-40);
}

.btn--std:hover {
	background-color: var(--color_primary-darken);
}

.btn--light {
	color: var(--color_primary);
	border: 1px solid #E9EAEB;
}

.btn--light:hover {
	color: var(--color_primary);
	background-color: #F7F8F7;
}

.btn--white {
	color: var(--color_primary);
	background-color: #FFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn--white:hover {
	color: #FFF;
	background-color: var(--color_primary);
}

.btn--ghost {
	color: #56595f;
}

.btn--ghost:hover {
	color: #2C3037;
	background-color: #F8F8F9;
}


/* ------------------------------------------
	FORM
------------------------------------------ */

input,
textarea {
	font-family: var(--font_text);
	font-size: 14px;
	border: 1px solid #E9EAEB;
	border-radius: 2px;
}

input:focus,
textarea:focus {
	border-color: var(--color_primary-40);
}


/* ------------------------------------------
	NAVIGATION
------------------------------------------ */

.nav__item a {
	font-size: 14px;
	font-weight: 600;
	color: #2C3037;
}

.drodown-wrap--lang {
	color: #2C3037;
}

.dropdown-wrap i {
	color: var(--color_primary);
}

.nav-inside .dropdown-wrap .dropdown {
	border-radius: 2px;
	padding: 5px;
	box-shadow: 0 2px 16px 0 rgba(44, 48, 55, 0.08);
}

.nav-inside .dropdown-wrap .dropdown a:hover {
	background-color: #F8F8F9;
}


/* ------------------------------------------
	NAVIGATION • BURGER BUTTON
------------------------------------------ */

.burger-button__item,
.burger-button__item.show:before,
.burger-button__item.show:after {
	background-color: #2C3037;
}

.burger-button:hover {
	background-color: #F8F8F9;
}


/* ------------------------------------------
	NAVIGATION • BURGER MENU
  ------------------------------------------ */

.burger-menu {
	top: 0;
	padding-top: 80px;
}

.burger-menu__item a {
	font-size: 14px;
	font-weight: 600;
	color: #2C3037;
}

.burger-menu__item a:hover,
.burger-menu .dropdown-wrap span:hover,
.burger-menu .dropdown {
	background-color: #F8F8F9;
}


/* ------------------------------------------
	LAYOUT 
------------------------------------------ */

body {
	background: #f8f8f9 0 0 repeat;
	padding: 60px 0;
	min-height: calc(100vh - 44px);
}

.content {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 60px;
	width: 100%;
	max-width: 970px;
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 2px 40px rgba(0, 0, 0, .1);
}

section {
	margin-top: 40px;
	width: 100%;
}

.section--border {
	border: 1px solid #E9EAEB
}

.section--border>div {
	padding: 40px;
}

.section--border>div:last-child {
	background-color: #F8F8F9;
}

.section--border>div:first-child {
	background-color: #FFF;
}

.section--w-side {
	width: 70%;
	padding: 0;
	background-color: transparent;
}

.hero-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 3/1;
}

.hero-picture {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.side.sticky {
	position: sticky;
	top: 20px;
}

.side--infos {
	border-top: none;
	padding: 0;
}

.side__item {
	margin: 10px auto;
	padding: 20px;
	border-top: 4px solid var(--color_primary);
	background-color: #F8F8F9;
}

.side__item h3 {
	font-size: 16px;
}

.ezuWKhCkiZZ {
	width: 100px
}

/* ------------------------------------------
	FOOTER
------------------------------------------ */

.contact-wrap h3 {
	margin: 0;
}

.buttons-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 10px -5px;
}

.buttons-wrap .btn {
	margin: 5px;
	width: calc(50% - 10px);
}

@media (max-width: 768px) {
	.buttons-wrap .btn {
		width: calc(100% - 10px);
	}
}

body .footer-basic {
	background-color: transparent;
	padding: 15px 0 0;
	max-width: 970px;
	margin: auto;
}


/* ------------------------------------------
	PAGE • HOME
------------------------------------------ */

.about__picture {
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	min-height: 350px;
	height: 100%;
}

.about__descr {
	word-break: break-word;
}

.about__descr p:last-child {
	margin-bottom: 0;
}

.s--useful-infos,
.s--address,
.s--newsletter,
.s--access {
	text-align: center;
	font-size: 14px;
}

.useful-infos__item {
	margin: 0 0 20px;
}

.useful-infos__item:last-child,
.access__item:last-child,
.useful-infos__item p,
.access__item p {
	margin: 0;
}

.day-wrap {
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dotted #E9EAEB;
}

.day-wrap:first-child {
	padding-top: 0;
}

.day-wrap .day,
.day-wrap .hours {
	margin: 5px 0;
}

.bookings_only {
	font-size: 14px;
	color: #ABACAF;
	margin: 10px 0 0 0;
}

.address-details a:not(.btn) {
	color: #2C3037;
	-webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-ms-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.address-details a {
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
}

.address-details .address-details a:last-child {
	margin-bottom: 0;
}

.s--address .social-btns {
	margin-top: 15px;
}

.s--address .social-btns a {
	display: inline-block;
	font-size: 18px;
	font-weight: initial;
	padding-right: 10px;
	margin-bottom: 0;
}

.s--address .social-btns a:last-child {
	padding-right: 0;
}

.newsletter__caption {
	font-size: 12px;
	color: #ABACAF;
}

.newsletter-wrap .buttons-wrap {
	margin: 0 auto;
}


/* ------------------------------------------
	PAGE • MENU
------------------------------------------ */

.menu-nav {
	top: 0;
}

.menu-nav__item {
	padding: 10px 15px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.menu-nav__item:hover {
	background-color: #F8F8F9;
}

.menu-wrap {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #F8F8F9;
}

.menu-wrap:last-child {
	margin-bottom: 0;
}

.menu-title-wrap {
	text-align: center;
}

.menu__title {
	color: var(--color_primary);
}

.menu__descr {
	margin: 10px 0;
}

.menu__descr,
.menu-category__descr,
.menu-subcategory__descr,
.dish__descr {
	font-size: 14px;
	color: #ABACAF;
}

.menu__price {
	font-size: 18px;
	font-weight: 600;
	color: var(--color_primary);
}


/* Category */

.menu-category {
	color: var(--color_primary);
	margin: 25px 0;
}

.menu-category__title {
	color: var(--color_primary);
	text-transform: none;
	margin-bottom: 0;
}

.menu-category__price {
	font-size: 16px;
}


/* Subcategory */

.menu-subcategory {
	margin: 15px 0;
	padding-bottom: 15px;
	border-bottom: 1px dotted #D5D6D7;
}


/* Dish */

.dish-no-image,
.dish-w-image {
	margin: 15px 0;
	padding-bottom: 15px;
	border-bottom: 1px dotted #D5D6D7;
}

.dish-w-image .dish-title-wrap {
	margin: 0 10px;
}

.dish-no-image .dish-title-wrap {
	margin-right: 10px;
}

.menu-subcategory__title {
	text-transform: uppercase;
	margin-bottom: 0;
}

.dish__title {
	color: #56595F;
	margin-bottom: 0;
}

.dish__descr,
.menu-category__descr,
.menu-subcategory__descr {
	margin: 5px 0 0 0;
}

.dish-quant {
	font-size: 14px;
	margin-right: 15px;
}

.dish__weight {
	color: #ABACAF;
}


/* Note */

.menu__note {
	color: #ABACAF;
}


/* ------------------------------------------
	PAGE • GALLERY
------------------------------------------ */

.album__title,
.current-page-gallery h2 {
	text-align: center;
	margin: 0 0 20px;
}


/* ------------------------------------------
	PAGE • EVENTS
------------------------------------------ */

.event,
.press {
	display: flex;
	padding: 0;
	border: 1px solid #E9EAEB;
}

.event {
	flex-flow: row nowrap;
	padding: 20px;
}

.event__img-wrap {
	flex-shrink: 0;
	width: 200px;
	margin-right: 20px;
}

.event__title {
	margin-bottom: 5px;
}

.event__date,
.event__price {
	color: #ABACAF;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
}

.event__price {
	display: inline-block;
	padding: 6px 8px;
	background: #F3F3F3;
	border-radius: 2px;
}

.event__descr {
	color: #2C3037;
	font-size: 14px;
}

.event__descr:last-child {
	margin-bottom: 0;
}

.event__links-wrap,
.press__links-wrap {
	margin: 0 20px 20px 20px;
}


/* ------------------------------------------
	PAGE • PRESS
------------------------------------------ */

.press {
	flex-flow: column nowrap;
	text-align: center;
}

.press__img {
	display: block;
	width: 100%;
	padding-top: 66.66%;
	background-size: cover;
	background-position: center;
}

.press__infos {
	padding: 20px;
	font-size: 14px;
}

.press__date {
	color: #ABACAF;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
}

.press__descr {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.press__descr:last-child {
	margin-bottom: 0;
}

.press__link {
	width: 100%;
}

.press__link+.press__link {
	margin-top: 10px;
}


/***********************************************
*	RESTAURANTS PAGE *
***********************************************/

.restaurant-group {
	border: 1px solid #E9EAEB;
}

.restaurant-group__infos {
	padding: 40px;
}

.restaurant-group__name {
	margin: 0;
	color: var(--color_primary);
}

.restaurant-group__ambiances {
	margin: 5px 0;
	text-align: left;
}

.restaurant-group__address {
	display: block;
	font-weight: 600;
	margin: 5px 0 20px 0;
}

.restaurant-group__descr p:last-child {
	margin-bottom: 0;
}

.restaurant-group__descr p em {
	font-style: normal;
}

.restaurant-group .btn {
	margin-top: 30px;
}


/* ------------------------------------------
	PAGE • CUSTOM
------------------------------------------ */

.custom-text {
	max-width: 600px;
	width: 100%;
	margin: auto;
}

.custom-text a {
	color: var(--color_primary);
}

blockquote {
	font-style: italic;
	text-align: center;
	margin: 10px auto;
	width: 70%;
}

blockquote p:first-child {
	margin-top: 0;
}

.album--custom {
	margin-top: 40px;
}


/* ------------------------------------------
	PAGE • REVIEWS
------------------------------------------ */

.reviews__verified {
	margin-top: 20px;
}


/* ------------------------------------------
	PAGE • CONTACT
------------------------------------------ */

.contact__form h2 {
	text-align: center;
}

.current-page-contact .map-wrap {
	margin-top: 20px;
}

.s--access .info {
	max-width: 360px;
	margin: auto;
}

.access__item {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding: 15px 0;
}

.access__item:not(:last-child) {
	border-bottom: 1px dotted #E9EAEB;
}

.access__item h4 {
	margin: 0;
}


/* ------------------------------------------
	MEDIA QUERIES
------------------------------------------ */

@media (max-width: 480px) {

	/* Layout */
	body .content {
		padding: 20px;
	}

	section {
		margin-top: 20px;
	}

	.hero-wrap {
		aspect-ratio: 4/2;
	}

	.s--restaurants {
		gap: 20px;
	}

	.section--border>div,
	.restaurant-group__infos {
		padding: 30px;
	}
}

@media (max-width: 768px) {

	/* Layout */
	.side.sticky {
		height: auto;
		width: 100%;
	}

	.side.sticky {
		position: initial;
		margin-left: 0;
		margin-top: 40px;
	}

	.s--menus,
	.s--reviews {
		grid-template-areas: "sidebar""content";
	}

	/* Menus page */
	.dish-no-image,
	.dish-w-image,
	.menu-category,
	.menu-subcategory {
		flex-direction: column;
	}

	.dish-title-wrap,
	.menu-category,
	.menu-subcategory-title-wrap {
		text-align: center;
	}

	.allergens-wrap,
	.three-dishes-wrap {
		justify-content: center;
	}

	.dish-w-image .dish-title-wrap,
	.dish-no-image .dish-title-wrap {
		margin: 0;
	}

	.dish-image-wrap {
		margin-bottom: 10px;
	}

	.dish__descr,
	.dish-price-wrap,
	.menu-category__descr,
	.menu-category__price,
	.menu-subcategory__descr,
	.menu-subcategory__price {
		margin-top: 10px;
	}

	/* Events page */
	.event {
		flex-direction: column;
		padding: 0;
	}

	.event__img-wrap {
		width: 100%;
		margin-right: 0;
	}

	.event__infos {
		padding: 20px;
	}
}

@media (min-width: 768px) {

	/* Restaurants page */
	.restaurant-group .map-wrap {
		height: auto;
		padding-bottom: 0;
	}
}

@media (max-width: 992px) {

	/* Layout */
	body {
		padding: 0 0 15px 0;
	}

	.btns-container .btn {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.content,
	body footer {
		margin: 10px;
		width: auto;
	}

	.content {
		padding: 40px;
	}

	/* Home */
	.scroll-gradient-vertical>div {
		max-height: initial;
	}
}

@media (min-width: 768px) {
	.menu-nav {
		top: 20px;
		background-color: #FFF;
		padding: 0;
		margin: 0;
	}

	.menu-nav__items {
		flex-direction: column;
		align-items: inherit;
		border: 1px solid #E9EAEB;
		border-bottom: none;
		height: auto;
		width: 100%;
	}

	.menu-nav__items:before,
	.menu-nav__items:after {
		display: none;
	}

	.menu-nav__item {
		display: block;
		width: 100%;
		border-bottom: 1px solid #E9EAEB;
	}

	.scroll-gradient-horizontal:before,
	.scroll-gradient-horizontal:after {
		display: none;
	}
}