@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: #FFF;
	font-family: var(--font_text);
	font-weight: 400;
	line-height: 1.3;
	background-position: center;
	background-attachment: fixed;
}

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


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

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

.divider-custom {
	background-color: transparent;
	background-image: url(/img/divider-custom--white.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: 24px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin: 0 0 20px;
}

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

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 {
	font-size: 34px;
	letter-spacing: .08em;
	color: #FFF;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
	margin: 0 20px 20px;
}

.subtitle {
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	color: #ABACAF;
	margin-bottom: 20px;
}

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 #000;
}

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

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

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

.btn--ghost {
	color: #ABACAF;
}

.btn--ghost:hover {
	color: #FFF;
	background-color: #242429;
}


/* Wrap */

.buttons-wrap {
	margin: 30px auto 0;
}

.buttons-wrap .btn {
	/* width: calc(50% - 15px); */
	margin: 0 5px;
}


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

input,
textarea {
	font-family: var(--font_text);
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	color: #FFF;
}

input::placeholder,
textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

input:focus,
textarea:focus {
	border-color: rgba(255, 255, 255, 1);
}


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

.nav {
	min-height: 75px;
	background-color: #0f0f12;
	box-shadow: 0 0 40px 0 rgba(44, 48, 55, 0.16);
	padding: 15px;
}

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

.drodown-wrap--lang {
	color: #FFF;
}

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

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

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


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

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

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


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

.burger-menu {
	top: 75px;
	background-color: #0f0f12;
}

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

.burger-menu__item a:not(.burger-menu__dropdown-link),
.burger-menu .dropdown-wrap span {
	border-bottom: 1px solid #3f3f41;
}

.language-list {
	border-color: #3f3f41;
}

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


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

.content {
	margin-top: 75px;
	padding: 40px 0;
	min-height: calc(100vh - 114px);
}

.wrapper {
	display: grid;
	gap: 20px;
	max-width: 970px;
	width: calc(100% - 20px);
	margin: 0 auto;
}

.wrapper--small {
	max-width: 768px;
}

.wrapper>.grid-2-col,
.wrapper>.grid-3-col,
.wrapper>section {
	gap: 15px;
}

section {
	border-top: 4px solid var(--color_primary);
	background-color: rgba(7, 8, 13, .9);
	padding: 25px;
}

.section--full {
	grid-column: 1 / 3;
}

.section--small {
	font-size: 14px;
	text-align: center;
}

.section--widget {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.section--video {
	padding: 0;
}

.ezuWKhCkiZZ {
	width: 100px
}

.side {
	border-top: 4px solid var(--color_primary);
	background-color: rgba(7, 8, 13, .9);
	padding: 25px;
}

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


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

.current-page-home section {
	text-align: center;
}

.s--about h1 {
	margin-bottom: 5px;
}

.s--about h1:after {
	display: none;
}

.current-page-home h4 {
	margin: 0 0 5px;
}

.about__content {
	word-break: break-word;
	border: 1px solid #3f3f41;
	padding: 30px;
}

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

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

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

.opening-hours.flex-row-wrap .day-wrap {
	border-color: #3f3f41;
}

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

.address-details a:not(.btn) {
	color: #FFF;
	-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;
}

section.social-btns {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}

section.social-btns a {
	font-size: 18px;
	padding: 0 8px;
	margin-bottom: 0;
}

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

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


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

.menu-nav {
	top: 70px;
	margin: 0 -10px;
	width: calc(100% + 20px);
	background-color: rgba(7, 8, 13, .9);
}

.menu-nav__item {
	padding: 10px 15px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

.menu-nav__item:hover,
.menu-nav__item.active {
	background-color: #242429;
}

.menu-wrap {
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #3f3f41;
}

.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;
	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: 2px dotted #3f3f41;
}


/* Dish */

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

.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: #FFF;
	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 #3f3f41;
}

.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: #FFF;
	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 #3f3f41;
	margin-bottom: 20px;
}

.restaurant-group:nth-child(even) {
	flex-direction: row-reverse;
}

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

.restaurant-group__infos {
	padding: 40px;
}

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

.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 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
------------------------------------------ */

.s--reviews {
	grid-column: 1/3;
}

.reviews-wrap {
	border-top: 4px solid var(--color_primary);
	background-color: rgba(7, 8, 13, .9);
	padding: 25px;
}

.reviews__verified {
	margin-top: 20px;
}

.s--tripadvisor {
	grid-column: 1/3;
}


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

.contact__form h2 {
	text-align: center;
}

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


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

@media (max-width: 480px) {

	/* Footer  */
	footer .footer__links a {
		display: block;
		margin: 10px;
	}
}

@media (max-width: 768px) {

	/* Layout */
	.content {
		padding: 10px 0;
	}

	.wrapper,
	.grid-w-sidebar {
		/* grid-template-columns: 100%; */
		gap: 10px;
	}

	.section--full {
		grid-column: 1;
	}

	/* 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__infos>div {
		max-height: 400px;
	}

	.restaurant-group .map-wrap {
		height: auto;
		padding-bottom: 0;
	}
}

@media (max-width: 992px) {

	/* Menus page */
	.current-page-menus .content {
		padding: 0 0 10px 0;
	}

	.side.sticky {
		position: initial;
	}

	.grid-w-sidebar,
	.s--reviews {
		grid-template-areas: "sidebar""content";
		grid-template-columns: 100%;
	}

	.side .side__tabs {
		display: flex;
		align-items: center;
		border: none;
		overflow-x: auto;
	}

	.side .side__tabs li {
		flex-shrink: 0;
		border: none;
	}

	.side .side__tabs li a {
		text-align: center;
	}

	.current-page-menus .side {
		position: sticky;
		margin: 0;
		top: 70px;
		padding: 8px;
		width: 100%;
		box-shadow: 0 0px 8px rgba(0, 0, 0, .1);
		border: none;
	}
}

@media (min-width: 993px) {
	.menu-nav {
		top: 90px;
		border-top: 4px solid var(--color_primary);
		background-color: rgba(7, 8, 13, .9);
		padding: 25px;
		margin: 0;
		width: 100%;
	}

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

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

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