:root {
	--color-blue-main: #003D67;

	--radius-circle: 50%;
	--radius-round: 9999px;

	--transition-regular: all .2s;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
	scroll-padding-top: 0;
}
body {
	font-family: 'Poppins', sans-serif;
	background: #FAF6EE;
	color: var(--color-blue-main);
	overflow-x: hidden !important;
}
header {
  padding-top: 0;
  padding-bottom: 0;

  display: flex;
  flex-direction: column;
}

/* Nav */
.gz-c-Nav {
	--gap: 30px;
	display: flex;
	justify-content: center;
	padding: 0 var(--gap);
	margin-top: auto;
	z-index: 3;
}
.gz-c-Nav-inner {
	max-width: 1320px;
	width: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: var(--gap);
	padding: 0;
}
.gz-c-Nav ul li {
	list-style-type: none;
	width: calc(100% / 3 - var(--gap) * 2 / 3);
}
.gz-c-Nav ul li a {
	transition: var(--transition-regular);
}
.gz-c-Nav ul li a div.btn {
	position: relative;
	padding: 11px 0 !important;
}
.gz-c-Nav ul li a div.btn::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 1.5px;
	/*border-radius: var(--radius-round);*/
	bottom: 9px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;

	background: transparent;

	transition: var(--transition-regular);
}
.gz-c-Nav ul li a.is-active div.btn::after {
	background: var(--color-blue-main);
}
@media(hover: hover) {
	.gz-c-Nav ul li a:hover span {
		background-size: 107.5%;
	}
}
.gz-c-Nav ul li a div {
	width: 100%;
	background: white;
}
.gz-c-Nav ul li a span {
	position: relative;

	background-color: var(--color-blue-main);
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	display: block;
	margin-top: 15px;

	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;

	transition: var(--transition-regular);
}
.gz-c-Nav ul li a span::after {
	content: '';
	position: absolute;
	/*border-radius: var(--radius-circle);*/
	inset: 0;

	opacity: 0;

	transition: var(--transition-regular);
}
.gz-c-Nav ul li a.is-active span::after {
	/*opacity: 1;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FAF6EE 100%);*/
}
.gz-c-Nav ul li a span[data-hotel] {
	background-image: image-set(
		url('../img/CAN/CN-2.jpg') 1x,
		url('../img/CAN/CN-2.jpg') 2x);
}
.gz-c-Nav ul li a span[data-cafe] {
	background-image: image-set(
		url('../img/CAN/CA-1.jpg') 1x,
		url('../img/CAN/CA-1.jpg') 2x);
}
.gz-c-Nav ul li a span[data-priv] {
	background-image: image-set(
		url('../img/CAN/CN-8.jpg') 1x,
		url('../img/CAN/CN-8.jpg') 2x);
}
.gz-c-TabContainer {
	position: relative;
}
.gz-c-Tab {
	display: none;
}
.gz-c-Tab.is-active {
	display: block;
}
/* Menu */
.gz-c-Menu {
	color: white;
	list-style-type: none;

	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 40px;

	padding: 0;
	margin: 0;
}
.gz-c-Menu ul,
.gz-c-Menu li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.gz-c-Menu-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.gz-c-Menu-item a {
	color: white;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
}
.gz-c-Menu-item.level-1 > a {
	font-size: 40px;
	margin-right: 10px;
}
.gz-c-Menu-item.level-2 > a {
	font-size: 20px;
}
.gz-c-Menu-sub {
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
    justify-content: center;

	transition: var(--transition-regular);

	max-height: 0;
	visibility: hidden;
	opacity: 0;
}
.gz-c-Menu-sub.is-active {
	margin-top: 20px !important;
	max-height: 250px;
	visibility: visible;
	opacity: 1;
}
.gz-c-Menu-btn {
	position: relative;
	appearance: none;
	border: 0;
	background: transparent;
	/* Debug */
	/*background: red;*/
	font-size: 0;
	padding: 16px;
}
.gz-c-Menu-btn::before,
.gz-c-Menu-btn::after {
	content: '';
    position: absolute;
    top: calc(50% - 1px);
    width: 10px;
    height: 2px;
    background: white;
    transition: var(--transition-regular);

}
.gz-c-Menu-btn::before {
	left: calc(50% - 5px - 3px);
    transform: rotate(45deg);
}
.gz-c-Menu-btn::after {
	left: calc(50% - 5px + 3px);
    transform: rotate(-45deg);
}
.gz-c-Menu-btn.is-active::before {
	transform: rotate(-45deg);
}
.gz-c-Menu-btn.is-active::after {
	transform: rotate(45deg);
}
.gz-c-Menu-more ul,
.gz-c-Menu-more li {
	list-style-type: none;
}

.footerInfos h4 {
	margin: 0 !important;
}
.footerInfos * {
	text-transform: uppercase;
}
.sectionIcons {
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.25rem;
	margin-bottom: .25rem;
}
.sectionIcons-inner {
	padding: 1rem 2rem;
	border-right: 1px solid var(--color-blue-main);
}
.sectionIcons > div:last-of-type {
	border-right: none !important;
}
.sectionIcons-inner-big {
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 8px;
}
.sectionIcons-inner-small {
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
}
.icn-xs {
	width: 16px;
	height: 16px;
}
.gz-c-HeaderContent {
	z-index: 2;
	margin-top: 30px;
}
.gz-c-HeaderBg {
	position: relative;
	background-color: var(--color-blue-main);
	/*background-image: url('../img/bg.jpg');*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 100vh;
}
.gz-c-HeaderBg-bg {
	position: absolute;
	inset: 0;
}
.gz-c-HeaderBg-bg div {
	position: absolute;
	inset: 0;

	opacity: 0;
	visibility: hidden;
	transition: var(--transition-regular);
}
.gz-c-HeaderBg-bg div::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
}
.gz-c-HeaderBg-bg div img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gz-c-HeaderBg-bg div:nth-of-type(1)::after {
	background: transparent;
}
.gz-c-HeaderBg-bg div:nth-of-type(2)::after {
	background: rgba(0,0,0,.4);
}
.gz-c-HeaderBg-bg div:nth-of-type(3)::after {
	background: rgba(0,0,0,.4);
}
.gz-c-HeaderBg-bg[data-bg="hotel"] div:nth-of-type(1) {
	opacity: 1;
	visibility: visible;
}
.gz-c-HeaderBg-bg[data-bg="cafe"] div:nth-of-type(2) {
	opacity: 1;
	visibility: visible;
}
.gz-c-HeaderBg-bg[data-bg="priv"] div:nth-of-type(3) {
	opacity: 1;
	visibility: visible;
}
.gz-c-HeaderCta > * {
	display: none;
}
.gz-c-HeaderCta[data-bg="hotel"] *:nth-of-type(1) {
	display: inline-block;
}
.gz-c-HeaderCta[data-bg="cafe"] *:nth-of-type(2) {
	display: inline-block;
}
.gz-c-HeaderCta[data-bg="priv"] *:nth-of-type(3) {
	display: inline-block;
}
.btn-light {
	background: #FFFFFF;
	color: var(--color-blue-main);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 400;
	font-size: 16px;
	border-radius: 0;
	padding: 11px 58px;
}
/*@media (hover: hover) {
	.btn-light:hover:not(:focus) {
		background: var(--color-blue-main);
		color: #FFF;
		border-color: var(--color-blue-main);
	}
}
.btn-dark {
	background: var(--color-blue-main);
	color: #FFF;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 400;
	font-size: 16px;
	border-radius: 0;
	padding: 11px 58px;
}*/
.h2 {
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	display:block;
	line-height: 1.35;
}
.h3 {
	font-weight: 500;
	font-size: 16px;
	display:block;
}
h1, h2, h3 {
	display: inline;
	font-size: 14px;
	margin-top: unset;
	margin-bottom: unset;
	font-weight: inherit;
	line-height: unset;
}	
p.lead, div.lead {
	font-weight: 300;
	font-size: 14px;
}
.btn-visit {
  padding: 11px 24px;
}
.chambres-2 {
	position: absolute;
	text-align: left;
	width: 100%;
}
img.chambres-2-img {
  display:none;
}
img.chambres-2b-img {
  width: 50%;
  margin-left: 10px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.chambres-2 .btn {
  display: inline-block;
  top: 0;
  position: relative;
  left: calc(50% + 10px);
}
img.maison-2-img {
	  position: absolute;
	  top: -50px;
	  left: 50%;
	  transform: translateX(-50%);
}
.fs-14 {
	font-size: 14px;
}
a {
	color: var(--color-blue-main);
}
.table-div {
	position: relative;
}
.table-1 {
	max-width: 66%;
}
.table-2 {
	position: absolute;
	bottom: -30px;
	right: 20%;
	z-index: 2;
}
.table-3 {
	position: absolute;
	bottom: -20%;
	left: 50px;
	z-index: 3;
}
.btn-degust {
  position: relative;
  border: 0;
}
.table-1, .table-2, .table-3 {
		display:none;
	}
.btn-degust {
	display: none;
}
.table-1b {
 position: relative;
  width: 66%;
  right: 0;
  z-index:1;
}
.table-2b {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index:2;
}
.table-3b {
  width: 38%;
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 0;
}
.btn-degust2 {
	position: absolute;
	bottom: 22px;
	left: 0px;
}
.icon-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.icon-link img {
	position: relative;
	top: -1px;
}
.events-1-img {
	display:none;
}
.esprit-2-img {
	display:none;
}
.bg-footer {
	background:#003D67;
	color: #fff;
}
footer h4 {
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
}
footer p {
	font-weight: 300;
	font-size: 12px;
}
footer p a {
	color: #fff;
	text-decoration: none;
}
.copyright a {
	font-weight: 300;
	font-size: 10px;
	text-decoration: none;
	display: block;
}
.justify-end {
	justify-content: end !important;
}
.navbar-toggler {
	margin-right: 1rem !important;
}
.navbar-dark .navbar-toggler {
  border-color: transparent;
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("../img/hamb.svg");
}
.navbar-toggler-icon {
  width: 2.5em;
  height: 2.5em;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
#navbarResponsive {
	background: var(--color-blue-main);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 25px;
}
.bg-open {
	background: var(--color-blue-main);
}
.navbar-dark.bg-open .navbar-toggler-icon {
  background-image: url("../img/croix.svg");
}
#mainNav a.nav-link {
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
	color: #FFFFFF;
}
#mainNavX {
	min-height: 100vh;
}
#mainNav.bg-open {
	position: fixed;
}
#scrolling {
	z-index: -1;
	overflow: hidden;
	position: fixed;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition-regular);
	background: var(--color-blue-main);

	display: flex;
	flex-direction: column;
	justify-content: center;

	/* Debug */
	/*visibility: visible;
	opacity: 1;*/
}
#scrolling.is-active {
	visibility: visible;
	opacity: 1;
}
 /* Hide scrollbar for Chrome, Safari and Opera */
#scrolling::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#scrolling {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 
.bg-open .navbar-toggler {
	position: absolute;
	top: 0;
	right: 0;
}
a.book {
  color: var(--color-blue-main) !important;
}
a.book:hover {
  color: var(--color-blue-main);
  text-decoration: none;
}
a.book:after {
  content: ' ';
	background-image: url(../img/arrow.svg);
	width: 72px;
	height: 9px;
	position: relative;
	display: inline-block;
	left: 20px;
	top: 0px;
}
.fancybox-bg {
  background: #fff;
  opacity: 1 !important;

}
.fancybox-caption {
  background: none;
}
.vcenter {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.fancybox-button {
  background: var(--color-blue-main) !important;
}
.navbar-toggler span {
    transition: all 0.35s ease-out;
    transform-origin: center left;
}
/*.bg-open .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(90deg);
}*/
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg) ;
}


/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
.toggleLanguageOuter {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
	pointer-events: none;
}
a.toggleLanguage {
	font-weight: 300;
	font-size: 18px;
	line-height: 105.47%;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	text-decoration: none;
	margin-right: 110px;
    margin-top: 37px;
	pointer-events: all;
}
a.toggleLanguage:hover {
	/*color: var(--color-blue-main);*/
	text-decoration: underline;
}
.absolute-top {
	position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}

/* img lazyloading + aspect ratio */
/*.img-fluid {
	display: block;
}
@keyframes placeholder {
	0% {
		background: #dfdbd3;
	}
	50% {
		background: #c7c3ba;
	}
	100% {
		background: #dfdbd3;
	}
}*/
/*.img-lazy-outer {
	position: relative;
	font-size: 0;
}
.img-lazy-bg {
	background: #dfdbd3;
    position: absolute;
    inset: 0;
	left:calc(var(--bs-gutter-x) * 0.5);
	right:calc(var(--bs-gutter-x) * 0.5);
    z-index: -3;
	animation: placeholder ease-in-out 1.42s infinite;
}
img.lazy.loaded + .img-lazy-bg {
	animation-play-state: none !important;
	background: none !important;
}
.img-1 {
	aspect-ratio: 727 / 627;
}*/

@media (max-width: 767px) {
	.gz-c-Nav {
		margin-bottom: var(--gap);
	}
	.gz-c-Nav-inner {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.gz-c-Nav ul li {
		width: 100%;
	}
	.gz-c-Nav ul li a span {
		display: none;
	}
	.gz-c-HeaderLogo {
		max-width: 200px !important;
	}
	.gz-c-Menu {
		gap: 20px;
	}
	.gz-c-Menu-item.level-1 > a {
		font-size: 30px;
	}
	.gz-c-Menu-item.level-2 > a {
		font-size: 18px;
	}
	.tower {
		max-width: 60px !important;
	}
	a.toggleLanguage {
		margin-right: 43px;
    	margin-top: 85px;
	}
}

@media (min-width: 576px) {
	.chambres-2 {
		position: relative;
		margin-bottom: 50px;
	}
	img.chambres-2-img {
	  display:none;
	}
	img.chambres-2b-img {
		position: absolute;
		left: 10px;
		top: -105px;
		width: 290px;
	}
	.chambres-2 .btn {
		transform: translateX(50%);
	}
	.table-1b {
	 position: relative;
	  width: 66%;
	  right: 0;
	  z-index:1;
	}
	.table-2b {
	  position: absolute;
	  width: 50%;
	  left: 50%;
	  transform: translateX(-50%);
	  z-index:2;
	}
	.table-3b {
	  width: 38%;
	  position: absolute;
	  bottom: 70px;
	  left: 0;
	  z-index: 0;
	}
	.btn-degust2 {
		position: absolute;
		bottom: 22px;
		left: 26px;
	}
}
@media (min-width: 768px) {
	.chambres-2 {
		position: relative;
		margin-bottom: 100px;
	}
	img.chambres-2-img {
	  display:none;
	}
	img.chambres-2b-img {
		position: absolute;
		left: 10px;
		top: -145px;
		width: 400px;
	}
	.chambres-2 .btn {
		margin-left: 16px;
		transform: translateX(50%);
	}
	.table-2 {
		width: 154px;
	}
	.table-3 {
		width: 154px;
	}
	.table-1b {
	 position: relative;
	  width: 66%;
	  right: 0;
	  z-index:1;
	}
	.table-2b {
	  position: absolute;
	  width: 50%;
	  left: 50%;
	  transform: translateX(-50%);
	  z-index:2;
	}
	.table-3b {
	  width: 38%;
	  position: absolute;
	  bottom: 70px;
	  left: 0;
	  z-index: 0;
	}
	.btn-degust2 {
		position: absolute;
		bottom: 22px;
		left: 87px;
	}
	.contactNudge {
		margin-top: 1rem;
	}
}

@media (min-width: 992px) {
	.chambres-2 {
		position: relative;
		margin-bottom: 50px;
	}
	img.chambres-2-img {
	  position: absolute;
	  left: 10px;
	  top: -110px;
	  width: 260px;
	  display: block;
	}
	img.chambres-2b-img {
		display:none;
	}
	.chambres-2 .btn {
		margin-left: -19px;
		transform: translateX(50%);
	}
	.table-2 {
		width: 200px;
	}
	.table-3 {
		width: 200px;
	}
	.btn-degust {
	  left: 99px;
	  top: 30px;
	  display: inline-block;
	}
	.btn-degust2 {
		display: none;
	}
	.table-1b, .table-2b, .table-3b {
		display:none;
	}
	.table-1, .table-2, .table-3 {
		display:block;
	}
	.events-1-img {
		display:block;
	}
	.events-1b-img {
		display:none;
	}
	.esprit-2-img {
		display:block;
	}
	.esprit-2b-img {
		display:none;
	}
}

@media (min-width: 1200px) {
	.chambres-2 {
		position: relative;
		margin-bottom: 50px;
	}
	img.chambres-2-img {
	  position: absolute;
	  left: 38px;
	  top: -170px;
	  width: 362px;
	}
	.chambres-2 .btn {
		margin-left: 66px;
		transform: translateX(50%);
	}
	.table-2 {
		width: 200px;
	}
	.table-3 {
		width: 200px;
	}
	.btn-degust {
	  left: 54px;
	  top: 30px;
	}
}

@media (min-width: 1400px) {
	.chambres-2 {
		position: relative;
		margin-bottom: 50px;
	}
	img.chambres-2-img {
	  position: absolute;
	  left: 130px;
	  top: -170px;
	}
	.chambres-2 .btn {
		margin-left: 5px;
		transform: translateX(50%);
	}
	.table-2 {
		width: auto;
	}
	.table-3 {
		width: auto;
	}
	.btn-degust {
	  left: 62px;
	  top: 30px;
	}
}
.footerSep {
	background: none;
	border: none;
	position: relative;
	opacity: 1;
	margin: 0;
	margin-bottom: 1rem;
	pointer-events: none;
}
.footerSep::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 1px;
	display: block;
	background: #FFF;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.hotel-stars {
	font-size: 0;
}

.hotel-stars-big {
	margin-bottom: -5px;
}

.hotel-stars > img {
	margin: 0 5px;
}

.hotel-stars-big > img {
	width: 20px;
	height: 20px;
}

.hotel-stars-small > img {
	width: 16px;
	height: 16px;
}
