section, article, header, footer, nav, aside
{
    display: block;
}

html, head, body
{
	min-height: 100%;
}

:root {
  --content-width: 1024px;
  --color-red: #9c1006;
}

body
{
	margin: 0;
	padding: 0;
	
	color: #47535b;
	font-size: 20px;
	font-family: 'Jura', Verdana, sans-serif;
	line-height: 1.7;
	
	background-color: #fff;
}
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
    body {
        background-position: 50.001% 0;
    }
}
*/

*
{
	box-sizing: border-box;
}

a, a:hover
{
	color: inherit;
}

a.link-hoverline, .link-hoverline a
{
	text-decoration: none;
}

a.link-hoverline:hover, .link-hoverline a:hover
{
	text-decoration: underline;
}

.text-uppercase
{
	text-transform: uppercase;
}

.text-center
{
	text-align: center;
}

.c, .clear
{
	clear: both;
}

.show-on-print
{
	display: none;
}

.no-select, .no-select *
{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.hide
{
	display: none !important;
}

h1
{
	font-family: 'PT Serif', serif;
	font-size: 2em;
	text-transform: uppercase;
	position: relative;
	margin: 0;
	color: var(--color-red);
}

h2
{
	font-family: 'PT Serif', serif;
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: normal;
}

h2, h3, h4, h5, h6
{
	margin-top: 1em;
	margin-bottom: 0.5em;
}



.wrap
{
	max-width: var(--content-width);
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}

#mobile-content
{
	overflow: hidden;
}


#mobile-navigation-selection,
#mobile-navigation,
#mobile-menu-btn
{
	display: none;
}

#mobile-navigation-overlay-label
{
	margin: 0;
	display: inline;
}

.asset
{
	position: absolute;
	pointer-events: none;
}

.asset.top-right 
{
	right: 0;
	top: 0;
	width: 686px;
	height: 816px;
	z-index: 2;
	background: url(../images/asset-top-right.png) no-repeat transparent;
}

.asset.middle-left
{
	left: 0;
	top: 870px;
	width: 418px;
	height: 586px;
	z-index: -1;
	background: url(../images/asset-middle-left.png) no-repeat transparent;
}

#head
{
	margin-bottom: 50px;
}

#service-menu-container
{
	background-color: #fff;
	padding: 20px;
	display: inline-block;
	font-size: 13px;
	border-radius: 15px;
	margin-top: 130px;
	width: 100%;
	text-align: right;
	z-index: 3;
	margin-bottom: 50px;
	position: relative;
}

#service-menu-container .separator
{
	margin: 0 5px;
}

#logo-container
{
	position: absolute;
	left: 0;
	top: 50px;
	z-index: 4;
}

#menu-container
{
	width: calc((100% - var(--content-width)) / 2 + var(--content-width));
	height: 100px;
	background: linear-gradient(to right, #e8dee3 0%,#d6dbe2 100%);
	border-radius: 0 15px 15px 0;
	margin-bottom: 25px;
	font-family: 'PT Serif', serif;
	text-transform: uppercase;
}

#menu-container > div
{
	width: var(--content-width);
	margin: 0 0 0 auto;
}

#menu-container .fa
{
	margin: 0;
	float: left;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#menu-container ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

#menu-container li
{
	height: 50px;
	display: flex;
	align-items: center;
	float: left;
	margin-left: 24px;
}

#menu-container li a.active
{
	font-weight: bold;
}

#menu-container ul ul
{
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
}

#menu-container ul li.many ul
{
	background-color: #d6dbe2;
	border-radius: 15px;
	z-index: 15;
	box-shadow: 0 3px 3px 0px rgba(0, 0, 0, 0.2);
}

#menu-container li.active ul
{
	display: block;
}

#menu-container:hover li.active ul
{
	display: none;
}

#menu-container:focus-within ul li.active ul 
{
	display: none;
}

#menu-container ul li:hover ul
{
	display: block !important;
}

#menu-container ul li:focus-within ul 
{
	display: block !important;
}


#menu-container .has-childs::after
{
	content: "+";
}

#stage-container
{
	position: relative;
	background-color: #fff;
}

#stage-container ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	
	position: relative;
	height: 480px;
}

#stage-container ul.stage li
{
	list-style: none;
	margin: 0;
	padding: 0;
	
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	background-position: center center;
	background-size: cover;
	border-radius: 35px;
}

#stage-pages
{
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 10;
	text-align: center;
}

#stage-pages span
{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background-color: rgba(71, 83, 91, 0.5);
	margin: 0 4px;
	border: 2px solid rgba(71, 83, 91, 0.75);
	cursor: pointer;
}

#stage-pages span.current
{
	background-color: rgba(255, 255, 255, 0.5);
}

#breadcrumb
{
	margin: 8px 0 16px;
	font-size: 14px;
	text-transform: uppercase;
	text-align: right;
}

#breadcrumb i
{
	color: var(--color-red);
	margin: 0 5px;
}

#header-arrow
{
	position: absolute;
	right: 76px;
	top: -54px;
	z-index: 10;
	width: 57px;
	height: 211px;
	background: url(../images/header-arrow.png) no-repeat center center transparent;
}


#online-booking-top .image
{
	position: absolute;
	right: 0;
	top: 153px;
	z-index: 10;
	margin-right: 28px;
	width: 198px;
	height: 158px;
	background: url(../images/booking-btn.png) no-repeat center center transparent;
}

#online-booking-top .dot
{
	position: absolute;
	z-index: 10;
	left: 45px;
	top: 0px;
	width: 150px;
	height: 150px;
	border-radius: 100%;
}


#online-recipe-top .image
{
	position: absolute;
	right: 0;
	top: 310px;
	z-index: 10;
	margin-right: 24px;
	width: 198px;
	height: 158px;
	background: url(../images/recipe-btn.png) no-repeat center center transparent;
}

#online-recipe-top .dot
{
	position: absolute;
	z-index: 10;
	left: 3px;
	top: 0;
	width: 150px;
	height: 150px;
	border-radius: 100%;
}

#content-container
{
	margin-bottom: 50px;
}

.content-container table
{
	border-spacing: 0;
	border-collapse: collapse;
}

.content-container table td
{
	padding: 0 10px 0 0;
}

.content-container table p
{
	margin: 0;
}

#footer-container
{
	background: linear-gradient(to bottom, #5b6e8c 0%,#a67b8e 100%);
	color: #fff;
	border-radius: 50px 0 0 50px;
	width: calc((100% - var(--content-width)) / 2 + var(--content-width));
	padding: 50px 10px;
	margin: 0 0 0 auto;
}

#footer-container h1
{
	color: #fff;
	font-family: Jura, sans-serif;
	font-size: 22px;
	text-transform: none;
	margin-top: 24px;
}

#footer-container .contact
{
	text-align: center;
	font-size: 21px;
	width: var(--content-width);
}

#footer-container .contact p
{
	margin: 0;
	line-height: 2em;
}

#footer-container .contact span
{
	white-space: nowrap;
}

#footer-container .contact .separator
{
	margin: 0 15px;
}

#footer-menu
{
	background-color: #47535b;
	color: #fff;
	border-radius: 0 50px 50px 0;
	width: calc((100% - var(--content-width)) / 2 + var(--content-width));
	font-family: 'PT Sans Narrow';
	font-size: 17px;
	margin: 50px 0;
}

#footer-menu .inner
{
	margin: 0 0 0 auto;
	width: var(--content-width);
	padding: 50px 0;
}

#footer-menu .col
{
	float: left;
	width: calc(100% / 7);
	padding-left: 10px;
	padding-right: 10px;
}


#footer-menu .col > ul > li > a
{
	text-transform: uppercase;
}

#footer-menu .col > ul > li > a
{
	display: block;
	min-height: 3.4em;
	margin-bottom: 1em;
}

#footer-menu .col ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer-logos .wrap
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

#footer-logos a
{
	background-color: #f0f3f8;
	border-radius: 50px;
	padding: 25px;
	display: flex;
	box-shadow: 2px 2px 6px rgba(0,0,0, 0.4);
	height: 130px;
	justify-content: center;
	align-items: center;
}
