
/**** NORMALIZE ************************************************************************************/

html, body{
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	background: #ffffff;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	position: relative;

	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}
*{
	outline: none;
}
img {
	border: 0;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
	display: inline;
	margin: 0;
	font-weight: normal;
	font-size: 14px;
}

/**** FIN NORMALIZE ********************************************************************************/

html, body{
	color: #444444;
	font-family: "Source Sans Pro";
	font-size: 18px;
}

a{
	color: #42a2dd;
}

@media (max-width: 768px) {

	html, body{
		font-size: 16px;
		margin-bottom: 0;
	}

}

/**** HEADER ***************************************************************************************/

.header{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	float: left;
	width: 100%;
	height: 100px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background: rgba(255,255,255,0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .3s ease-in-out
}
.header.opaque,
body:not([data-name="accueil"]) .header{
	background-color: #fff;
}
	.header_left{
		display: flex;
		flex-direction: row;
		align-items: center;
		float: left;
		height: 100%;
		position: relative;
		z-index: 2;
	}
		.header_logo{
			height: 100%;
		}
			.header_logo img{
				height: calc(100% - 20px);
				padding: 10px 0 10px 20px;
			}
		.header_menu-trigger{
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			float: left;
			width: 100px;
			height: 100%;
			/*border-right: 1px solid #bbbbbb;*/
			cursor: pointer;
			transition: all .3s ease-in-out;
			background-color: var(--color-1);
		}
            .header_menu-trigger-icon{
				float: left;
				width: 50px;
				height: 40px;
				position: relative;
				transition: 0.2s;
            }
            .header_menu-trigger:hover .header_menu-trigger-icon{
            	height: 30px;
            }
				.header_menu-trigger-icon span{
					height: 2px;
					background: #ffffff;
				}
                .header_menu-trigger-icon > span{
                	float: left;
					width: 100%;
					position: absolute;
					transition: background .2s ease-in-out,
								transform .2s ease-in-out,
								opacity .2s ease-in-out;
					transform-origin: center center;
                }
                .header_menu-trigger.active .header_menu-trigger-icon > span{
                	background-color: #ffffff;
                }
                .header_menu-trigger-icon > span:nth-child(1){
					top: 0;
					/*transition: 0.2s;*/
					transform-origin: center center;
                }
                .header_menu-trigger-icon > span:nth-child(2){
					top: calc(50% - 1px);
                }
                .header_menu-trigger-icon > span:nth-child(3){
                	bottom: 0;
                	/*transition: 0.2s;*/
                	transform-origin: center center;
                }
                .header_menu-trigger:hover .header_menu-trigger-icon > span:nth-child(1),
                .header_menu-trigger:hover .header_menu-trigger-icon > span:nth-child(3){
                	transform: scaleY(2) scaleX(0.75);
                }
                .header_menu-trigger.active .header_menu-trigger-icon > span:nth-child(1){
					top: calc(50% - 1px);
					transform: rotate(45deg);
                }
                .header_menu-trigger.active .header_menu-trigger-icon > span:nth-child(2){
					opacity: 0;
                }
                .header_menu-trigger.active .header_menu-trigger-icon > span:nth-child(3){
					bottom: calc(50% - 1px);
					transform: rotate(-45deg);
                }
        .header_locales{
			width: 100px;
			/*border-right: 1px solid #bbbbbb;*/
			transition: all .3s ease-in-out;
        }
		.header_locales:hover,
		.header_locales.active{
			border-color: transparent;
		}
	.header_center{
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-right: auto;
		float: left;
		height: 100%;
		max-width: 100%;
		opacity: 0.910;
		position: relative;
		z-index: 1;
	}
		.header_sitename{
			display: flex;
			flex-direction: row;
			justify-content: flex-start;
			align-items: center;
			float: left;
			height: 100%;
			text-align: left;
			font-family: "Kumbh Sans";
			padding: 0px 40px;
		}
			.header_sitename-logo{
				margin-right: 50px;
				width: 180px;
			}
				.header_sitename-logo img{
					width: 100%;
				}
			.header_sitename-title{
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: flex-start;
				float: left;
				text-align: left;
				line-height: 30px;
				color: #000;
			}
				.header_sitename-title-headline{
				    float: left;
				    font-size: 30px;
				    font-weight: 400;
				    display: block;
				}
					.header_sitename-title-headline .iconCommon-star{
						font-size: 11px;
						letter-spacing: 0px;
					}
				.header_sitename-title-baseline{
					float: left;
					font-size: 18px;
				}
	.header_right{
		display: flex;
		flex-direction: row;
		align-items: center;
		float: left;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
		font-size: 14px;
	}
		.header_map,
		.header_phone{
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			float: left;
			height: 100%;
			padding: 0px 20px 0px 20px;
			color: var(--color-brown);
			cursor: pointer;
		}
			.header_map-icon,
			.header_phone-icon{
				float: left;
				font-size: 26px;
				transition: all .3s ease-in-out;
				color:#3e3e3e;
			}



			.header_map-label {
				font-size: 14px;
				line-height: 20px;
				text-transform: uppercase;
				color: #000000;
				font-weight: 600;
				margin-top:7px;
				text-align: center;
				
			}

			.header_phone-label{
				font-size: 14px;
				line-height: 24px;
				margin-top:3px;
				text-transform: uppercase;
				color: #000000;
				font-weight: 600;
				text-align: center;
			}


			.header_map:hover .header_map-icon,
			.header_phone:hover .header_phone-icon{
				color: #000000;
			}
		.header_booking{
			float: left;
			height: 100px;
			width: 100px;
			cursor: pointer;
			transition: all .3s ease-in-out;
			margin-left: 10px;
			position: relative;
			background: #9f834d;
			color: #fff;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			transition: all .2s ease-in-out;
		}
		.header_booking:hover{
			background: #d5a600;
		}
			.header_booking_open,
			.header_booking_close{
				position: absolute;
				left: 0px;
				top: 0px;
				height: 100%;
				width: 100%;
				background: var(--color-brown);
				color: #ffffff;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				overflow: hidden;
				transition: .2s;
			}
			.header_booking_open:not(.active),
			.header_booking_close:not(.active){
				left: 100%;
			}
			.header_booking_open:hover,
			.header_booking_close:hover{
				background-color: #fff;
				color: var(--color-brown);
			}
			.header_booking-label{
				font-size: 13px;
				font-weight: bold;
				text-transform: uppercase;
			}
			.header_booking-icon{
				float: left;
				font-size: 26px;
				transition: .2s;
			}

@media(max-width: 1200px){
	.header_map,
	.header_phone{
		padding-bottom: 0px;
		justify-content: center;

	}
		
}
@media(max-width:768px){
	.header{
		height: 60px;
	}
	.header_right{
		height: 60px;
	}
	.header_sitename-logo{
		margin-right: 20px;
		margin-top:10px;
	}
	.header_sitename-title{
		line-height: 22px;
	}
	.header_sitename-title-headline{
		font-size: 20px;
		margin-top:10px;
	}
	.header_sitename-title-baseline{
		font-size: 16px;
		
	}

	.header_booking-label,
		.header_map-label,
		.header_phone-label{
			display: none;
		}

	.header_logo img{
		width: auto;
		height: calc(100% - 20px);
		padding: 10px 0;
	}
}

@media(max-width:768px){
	.header{
		display: flex;
		flex-direction: column-reverse;
	}
		.header_right{
			display: none;
		}
		.header_left{
			flex-direction: row-reverse;
			width: 165px;
			justify-content: center;
		}
		.header_sitename-logo {
			width: 90px;
		}
	.header_sitename {
		padding: 0px 20px;
	}
}
@media(max-width:500px){

	.header_menu-trigger{
		width: 60px;
	}
		.header_menu-trigger-icon{
			width: 40px;
			height: 30px;
		}
}

/**** FIN HEADER ***********************************************************************************/
/**** HEADER MOBILE***************************************************************************************/

.headerMobile{
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
	float: left;
	width: 100%;
	height: 50px;
	background:#3d3427;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 7;
}
	.headerMobile_button{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		float: left;
		/* width: 50px;
		height: 40px; */
		padding: 11px 0px 9px 0px;
		transition: color .3s ease-in-out;
		background: #d5a600;
	}
	.headerMobile_button.booking{
		width: auto;
		height: auto;
		background: #d5a600;
		padding: 11px 10px 9px 10px;
		/*border-radius: 5px;*/
	}
		.headerMobile_button-icon{
			font-size: 16px;
			color: #ffffff
		}
		.headerMobile_button-label{
			color: #ffffff;
			font-size: 13px;
			font-weight: bold;
			text-transform: uppercase;
		}

@media (max-width: 768px) {

	.headerMobile{
		display: flex;
	}
	body{
		padding-bottom: 50px;
	}

}

@media (max-width: 768px) {

	.headerMobile_button{
		width: 40px;
	}

}
/*****ICON***************************************************************************/
@font-face {
	font-family: 'icons-networks';
	src:  url('/fonts/icons-networks/icons-networks.eot?cjr4cp');
	src:  url('/fonts/icons-networks/icons-networks.eot?cjr4cp#iefix') format('embedded-opentype'),
	  url('/fonts/icons-networks/icons-networks.ttf?cjr4cp') format('truetype'),
	  url('/fonts/icons-networks/icons-networks.woff?cjr4cp') format('woff'),
	  url('/fonts/icons-networks/icons-networks.svg?cjr4cp#icons-networks') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
  [class^="iconNetworks-"], [class*=" iconNetworks-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons-networks' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .iconNetworks-youtube-thin:before {
	content: "\e90b";
  }
  .iconNetworks-youtube:before {
	content: "\e90c";
  }
  .iconNetworks-facebook-thin:before {
	content: "\e91e";
  }
  .iconNetworks-share:before {
	content: "\e91f";
  }
  .iconNetworks-facebook1:before {
	content: "\e921";
  }
  .iconNetworks-instagram1:before {
	content: "\e922";
  }
  .iconNetworks-linkedin:before {
	content: "\e923";
  }
  .iconNetworks-pinterest:before {
	content: "\e924";
  }
  .iconNetworks-twitter-thin:before {
	content: "\e926";
  }
  .iconNetworks-instagram-thin:before {
	content: "\e927";
  }
  .iconNetworks-share-thin:before {
	content: "\e928";
  }
  .iconNetworks-twitter:before {
	content: "\e92a";
  }
  .iconNetworks-tripadvisor:before {
	content: "\e92c";
  }
  .iconNetworks-linkedin-thin:before {
	content: "\e931";
  }
  .iconNetworks-facebook:before {
	content: "\e900";
	color: #fff;
  }
  .iconNetworks-instagram:before {
	content: "\e901";
	color: #fff;
  }
  @font-face {
	font-family: 'icons-common';
	src:  url('/fonts/icons-common/icons-common.eot?2ek90r');
	src:  url('/fonts/icons-common/icons-common.eot?2ek90r#iefix') format('embedded-opentype'),
	  url('/fonts/icons-common/icons-common.ttf?2ek90r') format('truetype'),
	  url('/fonts/icons-common/icons-common.woff?2ek90r') format('woff'),
	  url('/fonts/icons-common/icons-common.svg?2ek90r#icons-common') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
  [class^="iconCommon-"], [class*=" iconCommon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons-common' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .iconCommon-arrow-full-down:before {
	content: "\e000";
  }
  .iconCommon-arrow-full-left:before {
	content: "\e001";
  }
  .iconCommon-arrow-full-right:before {
	content: "\e002";
  }
  .iconCommon-arrow-full-up:before {
	content: "\e003";
  }
  .iconCommon-plus1:before {
	content: "\e200";
  }
  .iconCommon-close:before {
	content: "\e201";
  }
  .iconCommon-reviews:before {
	content: "\e207";
  }
  .iconCommon-minus:before {
	content: "\e900";
  }
  .iconCommon-minus-thin:before {
	content: "\e901";
  }
  .iconCommon-acces-footer:before {
	content: "\e902";
  }
  .iconCommon-acces-header:before {
	content: "\e903";
  }
  .iconCommon-resa:before {
	content: "\e904";
  }
  .iconCommon-tel-header:before {
	content: "\e905";
  }
  .iconCommon-close-thin:before {
	content: "\e909";
  }
  .iconCommon-arrow-up:before {
	content: "\e90b";
  }
  .iconCommon-arrow-right:before {
	content: "\e90c";
  }
  .iconCommon-arrow-down:before {
	content: "\e90d";
  }
  .iconCommon-enlarge-thin:before {
	content: "\e90f";
  }
  .iconCommon-arrow-left:before {
	content: "\e910";
  }
  .iconCommon-arrow-body-up:before {
	content: "\e912";
  }
  .iconCommon-telephone-thin:before {
	content: "\e914";
  }
  .iconCommon-map-thin:before {
	content: "\e915";
  }
  .iconCommon-mail-thin:before {
	content: "\e916";
  }
  .iconCommon-contact-thin:before {
	content: "\e917";
  }
  .iconCommon-photos-thin:before {
	content: "\e918";
  }
  .iconCommon-telephone:before {
	content: "\e919";
  }
  .iconCommon-map:before {
	content: "\e91a";
  }
  .iconCommon-mail:before {
	content: "\e91b";
  }
  .iconCommon-contact:before {
	content: "\e91c";
  }
  .iconCommon-reviews-thin:before {
	content: "\e91d";
  }
  .iconCommon-star:before {
	content: "\e91e";
  }
  .iconCommon-photos:before {
	content: "\e920";
  }
  .iconCommon-star-big:before {
	content: "\e921";
  }
  .iconCommon-download:before {
	content: "\e925";
  }
  .iconCommon-media:before {
	content: "\e929";
  }
  .iconCommon-information:before {
	content: "\e92a";
  }
  .iconCommon-arrow-body-right:before {
	content: "\e92b";
  }
  .iconCommon-download-thin:before {
	content: "\e92c";
  }
  .iconCommon-arrow-body-down:before {
	content: "\e92d";
  }
  .iconCommon-arrow-body-left:before {
	content: "\e92e";
  }
  .iconCommon-picture:before {
	content: "\e92f";
  }
  .iconCommon-enlarge:before {
	content: "\e2011";
  }
  .iconCommon-plus-thin:before {
	content: "\e9905";
  }
  .iconCommon-feuille-grise:before {
	content: "\e906";
	color: #8a8e93;
  }
  .iconCommon-feuille-or:before {
	content: "\e907";
	color: #9f834d;
  }
  .iconCommon-fld:before {
	content: "\e908";
	color: #fff;
  }
  .iconCommon-flg:before {
	content: "\e90a";
	color: #fff;
  }
  .iconCommon-logo-header:before {
	content: "\e90e";
	color: #3e3e3e;
  }
  .iconCommon-plus .path1:before {
	content: "\e911";
	color: rgb(159, 131, 77);
  }
  .iconCommon-plus .path2:before {
	content: "\e913";
	margin-left: -0.9248046875em;
	color: rgb(159, 131, 77);
  }
  .iconCommon-plus .path3:before {
	content: "\e91f";
	margin-left: -0.9248046875em;
	color: rgb(159, 131, 77);
  }
  .iconCommon-plus .path4:before {
	content: "\e922";
	margin-left: -0.9248046875em;
	color: rgb(255, 255, 255);
  }
  @font-face {
	font-family: 'icons-networks';
	src:  url('/fonts/icons-networks/icons-networks.eot?cjr4cp');
	src:  url('/fonts/icons-networks/icons-networks.eot?cjr4cp#iefix') format('embedded-opentype'),
	  url('/fonts/icons-networks/icons-networks.ttf?cjr4cp') format('truetype'),
	  url('/fonts/icons-networks/icons-networks.woff?cjr4cp') format('woff'),
	  url('/fonts/icons-networks/icons-networks.svg?cjr4cp#icons-networks') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
  [class^="iconNetworks-"], [class*=" iconNetworks-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons-networks' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .iconNetworks-share:before {
	content: "\e91f";
  }
  .iconNetworks-facebook:before {
	content: "\e921";
  }
  .iconNetworks-messenger:before {
	content: "\e903";
  }
  .iconNetworks-twitter:before {
	content: "\e92a";
  }
  .iconNetworks-x:before {
	content: "\e902";
  }
  .iconNetworks-instagram:before {
	content: "\e922";
  }
  .iconNetworks-linkedin:before {
	content: "\e923";
  }
  .iconNetworks-whatsapp:before {
	content: "\e901";
  }
  .iconNetworks-tiktok:before {
	content: "\e900";
  }
  .iconNetworks-pinterest:before {
	content: "\e924";
  }
  .iconNetworks-youtube:before {
	content: "\e90c";
  }
  .iconNetworks-tripadvisor:before {
	content: "\e92c";
  }
  .iconNetworks-gmail:before {
	content: "\e904";
  }
  .iconNetworks-outlook:before {
	content: "\e905";
  }
  .iconNetworks-share-thin:before {
	content: "\e928";
  }
  .iconNetworks-facebook-thin:before {
	content: "\e91e";
  }
  .iconNetworks-twitter-thin:before {
	content: "\e926";
  }
  .iconNetworks-instagram-thin:before {
	content: "\e927";
  }
  .iconNetworks-linkedin-thin:before {
	content: "\e931";
  }
  .iconNetworks-youtube-thin:before {
	content: "\e90b";
  }
  
  
  
  /**** FIN ICON ***********************************************************************************/

/**** PRECONTENT ***********************************************************************************/

.precontent{
	float: left;
	width: 100%;
	height: 700px;
	position: relative;
	z-index: 1;
}
	.precontent_diaporama{
		float: left;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
		.precontent_diaporama-slide{
			float: left;
			width: 100%;
			height: 100%;
			background: no-repeat center center;
			background-size: cover;
		}
		.precontent_diaporama-pager{
			position: absolute;
			bottom: 40px;
			right: 80px;
			z-index: 101;
		}
			.precontent_diaporama-pager-item{
				float: left;
				height: 15px;
				width: 15px;
				margin-right: 10px;
				border: 1px solid #ffffff;
				border-radius: 50%;
				box-sizing: border-box;
				transition: all .3s ease-in-out;
				cursor: pointer;
			}
			.precontent_diaporama-pager-item:last-child{
				margin-right: 0;
			}
			.precontent_diaporama-pager-item.cycle-pager-active{
				background: #ffffff;
			}

@media (max-width: 1024px) {

	.precontent{
		height: 400px;
	}

}

@media (max-width: 768px) {

	.precontent{
		margin-top: 60px;
		height: 250px;
	}

}

@media (max-width: 425px) {

	.precontent{
		height: 200px;
	}

}

/**** FIN PRECONTENT *******************************************************************************/


/**** SIDEBAR **************************************************************************************/

.sidebar{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 46px;
	height: 400px;
	position: fixed;
	right: 0;
	top: 100px;
	z-index: 11;
}
.sidebar.accueil{
	height: 500px;
}
	.sidebar_item{
		float: left;
		width: 300px;
		height: 36px;
		margin: 5px 0;
		box-sizing: border-box;
		cursor: pointer;
		transition: all .3s ease-in-out;
	}
	.sidebar_item:hover{
		margin-left: -264px;
	}
		.sidebar_item-icon{
			float: left;
			width: 36px;
			height: 36px;
			padding: 8px;
			box-sizing: border-box;
			background: linear-gradient(180deg,rgba(215, 166, 0, 1) 25%, rgba(161, 120, 22, 1) 100%);
		}
		.sidebar_item-label{
			float: left;
			width: 264px;
			height: 36px;
			line-height: 36px;
			padding: 0 10px;
			box-sizing: border-box;
			background: #666666;
			color: #ffffff;
			font-size: 16px;
			opacity: 0;
			transition: all .3s ease-in-out;
		}
		.sidebar_item:hover .sidebar_item-label{
			opacity: 1;
		}

@media (max-width: 1024px) {

	.sidebar{
		height: 300px;
	}

}

@media (max-width: 768px) {

	.sidebar{
		flex-direction: row;
		width: 100%;
		height: auto;
		padding: 20px;
		margin-top: 100px;
		border-bottom: 1px solid rgba(0,0,0,0.3);
		box-sizing: border-box;
		position: relative;
		top: auto;
		z-index: 9;
	}
	.sidebar_item{
		width: auto;
		margin: 0 10px;
	}
	.sidebar_item:hover{
		margin: 0 10px;
	}
	.sidebar_item-label{
		display: none;
	}

}

/**** FIN SIDEBAR **********************************************************************************/


/**** CONTENT **************************************************************************************/

.content{
	display: flex;
	flex-direction: row;
	align-items: center;
	float: left;
	width: 100%;
	padding: 40px 60px;
	box-sizing: border-box;
	background: #ffffff;
	position: relative;
	z-index: 5;
}
.contents{
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	float: left;
	width: 100%;
	padding: 40px 60px;
	box-sizing: border-box;
	background: #ffffff;
	position: relative;
	z-index: 5;
}
.content2{
	display: flex;
	flex-direction: row;
	align-items: center;
	float: left;
	width: 100%;
	padding: 40px 60px;
	box-sizing: border-box;
	background: #ffffff;
	position: relative;
	z-index: 5;
}
	.content_images{
		align-items:start;
		max-width: 700px;
		padding: 0px 60px;
	}
	.content_center{
		display: flex;
		flex-direction: column;
		align-items: start;
		float: left;
		width: 100%;
		max-width: 900px;
	}
	.content_centers{
		display: flex;
		flex-direction: column;
		align-items: start;
		float: left;
		width: 100%;
		margin-left:60px;
		max-width: 1120px;
	}
		.content_title{
			float: left;
			font-size: 28px;
			text-align: start;
			
		}
		.content_titles{
			float: left;
			font-size: 34px;
			text-align: center;
			font-family: "Kumbh Sans";
			width: 100%;
		}
		.content_subtitle{
			float: left;
			font-size: 24px;
			text-align: start;
			font-family: "Kumbh Sans";
		}
		.content_subtitles{
			float: left;
			font-size: 24px;
			text-align: start;
			font-family: "Kumbh Sans";
		}
		.content_text{
			display: flex;
			flex-direction: column;
			align-items: start;
			float: left;
			width: 100%;
		}
			.content_docs{
				display: flex;
				flex-direction: column;
				margin-top: 40px;
				padding-top: 20px;
				width: 100%;
				max-width: 600px;
				gap: 10px;
				position: relative;
			}
			.content_docs:before{
				position: absolute;
				top: 0px;
				left: calc(50% - 100px);
				width: 200px;
				height: 1px;
				content: '';
				background-color: #ccc;
			}
				.content_docs-intro{  
					font-size: 20px;
					font-family: "Kumbh Sans";
					margin-bottom: 10px;
				}
				.content_doc{
					display: flex;
				}
					.content_doc span{
						position: relative;
						color: #3c3c3c;
						display: flex;
						align-items: center;
					}
					.content_doc span:after{
						content: '';
						position: relative;
						flex-grow: 1;
						background-color: #ccc;
						height: 1px;
						margin: 0px 20px;
						transition: .2s;
					}
					.content_doc:hover span:after{
						margin: 0px 0px 0px 10px;
					}
					.content_doc-title{
						flex-grow: 1;
					}
					.content_doc-icon{
						width: 30px;
						height: 30px;
						color: #fff;
						background-color: #b9a256;
						display: flex;
						align-items: center;
						justify-content: center;
						transition: .2s;
					}
					.content_doc:hover .content_doc-icon{
						background-color: #9f968c;
					}
		.contents_text{
			display: flex;
			flex-direction: column;
			align-items: center;
			float: left;
			width: 100%;
		}
			.content_text-centers{
				float: left;
				width: 100%;
				max-width: 1000px;
				margin-top: 30px;
				/* margin-left:20px; */
				text-align: center;
				font-size: 18px;
			}
			.content_text-center{
				float: left;
				width: 100%;
				max-width: 768px;
				margin-top: 30px;
				text-align: start;
			}
			.content_text-splitted{
				display: flex;
				flex-direction: row;
				float: left;
				width: 100%;
				margin-top: 30px;
			}
				.content_text-left{
					float: left;
					width: 48%;
					margin-right: 4%;
				}
				.content_text-right{
					float: left;
					width: 48%;
				}
					.content_text-title{
						display: inline-block;
						font-size: 24px;
						margin: 10px;
						font-weight: bold;
					}
		
@media (max-width: 1200px) {
	.content2{
		flex-direction: column-reverse;
	}
	.content{
		flex-direction:column;
	}
	.content_images{
		margin-top:10px;
		max-width:600px;
	}
	.content_subtitle{
			margin-left:70px;
		}
		.content_subtitles{
			margin-left:150px;
		}
	.content_text{
		margin-left:0px;
		align-items:center;
	}
	.content_center{
	margin-left:25px;
	margin-top:20px;
	}
	.content_centers{
	margin-left:0px;
	margin-top:20px;
	}

}
@media (max-width: 768px) {

	.content{
		padding: 30px;
	}
	.content_title{
		font-size: 22px;
	}
	.content_subtitle{
		font-size: 20px;
		margin-left:0px;
	}
	.content_subtitles{
		font-size: 20px;
		margin-left:0px;
	}
	.content_images{
		max-width:450px;
		padding: 0 20px;
	}
	.content_centers{
	margin-left:-10px;
	}
}
@media (max-width: 576px) {
	.content_images{
		width:300px;
	}
}


/**** FIN CONTENT **********************************************************************************/


/**** ADDRESS **************************************************************************************/

.address{
	display: flex;
	flex-direction: column;
	justify-content: center;
	float: left;
	height: 100px;
	line-height: 16px;
	padding: 20px;
	border-left: 1px solid rgba(0,0,0,0.3);
	box-sizing: border-box;
	background: #ffffff;
	text-align: center;
	font-size: 14px;
	position: fixed;
	right: 150px;
	top: 0;
	z-index: 11;
}
.address.nobooking{
	right: 0;
}
	.address_name{
		float: left;
		font-weight: 600;
	}
	.address_place{
		float: left;
	}
	.address_telephone{
		float: left;
		margin-top: 10px;
		color: inherit;
		font-size: 18px;
		font-weight: bold;
	}

@media (max-width: 1024px) {

	.address{
		width: 100%;
		height: auto;
		border: 0;
		border-top: 1px solid rgba(0,0,0,0.3);
		position: relative;
		top: auto;
		right: auto;
		z-index: 5;
	}

}

/**** FIN ADDRESS **********************************************************************************/
/**** PREFOOTER ************************************************************************************/
.info{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	float: left;
	width: 100%;
	position: relative;
	z-index: 3;
	background-color: #3d3427;
	margin-top: 40px;
	
}
	.info_narrow{
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: center;
		float: left;
		width: 100%;
		height:auto;
		position: relative;
	}
		.info_left{
			/*background-color: #3e3e3e;*/
			flex-grow: 1;
			display: flex;
			justify-content: center;
			align-items: center;
			padding: 20px 50px;
			height:auto;
			width:25%;
			padding-right: 0;
			/* margin-top:10px; */
			/* border-right: 2px solid rgb(255, 255, 255); */
			
		}
			.info_contact{
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				text-align: left;
				/* padding: 15px 0px; */
				/* max-width: 240px; */
				margin: 0px 40px;
				line-height: 24px;
			}
				.info_contact-titles{
					color: var(--color-2);
					font-size: 18px;
					text-transform: uppercase;
					font-family: "Bodoni Moda";
					margin-top: 10px;
					font-weight: 300;
					color: #fff;
				}
				.info_contact-title{
					color: var(--color-2);
					font-size: 18px;
					text-transform: uppercase;
					font-family: "Bodoni Moda";
					margin-top: 5px;
					font-weight: bold;
					color: #fff;
				}
				.info_contact-address{
					font-size: 16px;
					color: #fff;
					margin-bottom: 20px;
					/*font-family: "Raleway";*/
				}
				.info_contact-telephone{
					font-size: 16px;
					color: #fff;
				}
				.info_logo {
					/* width: 100px; */
					height: 150px;
					filter: drop-shadow(3.886px 3.147px 5px #000000);
					background-color:#fff;
					align-items: center;
					display: flex;
					padding: 10px;
					/* margin-top: 25px !important;
					margin-bottom:5px;
					margin-right: 20px; */
					
				}
				.info_logo img {
					/* width: 100%; */
					height: 100%;
					/* margin-left:20px; */
					
				}
		.info_center{
			flex-grow: 0;
			display: flex;
			flex-direction: column;
		}
			.info_buttons{
				display: flex;
				flex-direction: column;
				flex-grow: 1;
				background-color: #c3a55f;
			}
				.info_button {
					width: 100px;
					background-color: #c3a55f;
					color: #fff;
					flex-grow: 1;
					display: flex;
					justify-content: center;
					align-items: center;
				};
				
				.info_button:hover{
					background-color: #fff;
					color: #c3a55f;
				}
				.info_button:not(:last-child){
					border-bottom: 1px solid #fff;
				}

				.info_button-icon {
					font-size: 20px;
				}
		.info_right{
			flex-grow: 1;
			display: flex;
			flex-direction:row;
			align-items: center;
			justify-content: center;
			padding: 0px 60px;
			height:150px;
			margin-top:10px;
			/*background-color: #d5c592;*/
		}
		.logo_partenaire{
			
			display: flex;
			flex-direction:row;
			justify-content: center;
			align-items: center;
			width:500px;
			
			margin-bottom:20px;
			margin-top:10px;
			
		}
			.info_logos_partenaires{
				display: flex;
				margin-left:20px;
				margin-top:20px;
				height:125px;
			}
			.partenaire_titre{
				display: flex;
				margin-bottom:7px;
				font-size:18px;
				font-weight: bold;
				/*font-family: "Kumbh Sans";*/
				color:#fff;
				margin-top:10px;
				
			}
				.info_logos_partenaire{
					background-color: #fff;
					padding: 10px;
					margin: 0px 15px;
				}
				.info_logos_partenaire img{
					max-height: 200px;
				}

@media(max-width: 1480px){
	.info_narrow{
		height:5%;
	}
	.info_right,
	.info_left{
		padding: 0 20px;
		height:4%;
	}
	.info_contact,
	.info_logo{
		margin: 0px 20px;
	}
	
	
}
@media(max-width: 1200px){
	.info_narrow{
		flex-wrap: wrap;
	}
		.info_left,
		.info_center,
		.info_right{
			width: 100%;
		}
		.info_left{
			justify-content: center;
			border-right: none;
		}
		.info_right{
			padding: 20px 0px;
			flex-direction:column;
		}
			.info_contact{
				padding: 20px 0;
			}
			.info_buttons{
				flex-direction: row;
				justify-content: center;
				height: 100px;
			}
				.info_button{
					border-bottom: 0px !important;
					border-right: 1px solid #fff;
					width: 100px;
					flex-grow: 0;
				}
				.info_button:first-child{
					border-left: 1px solid #fff;
				}
}

@media (max-width: 576px) {
	.info_left{
		flex-direction: column;
		align-items: center;
	}
		.info_contact{
			text-align: center;
			align-items: center;
		}

		.info_logo {
			filter: none;
			width: 60%;
		}

		.info_logo img{
			width: 100%;
			margin-left:0px;
		}
		.logo_partenaire{
		width:300px;
		justify-content: center;
		align-items:center;
		}

		.info_logos_partenaire{
			margin: 0px 5px;
			width:150px;
		}
			.info_logos_partenaire img{
				max-width: 90%;
			}
}


/**** FOOTER ***************************************************************************************/

.footer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	float: left;
	width: 100%;
	padding: 15px 20px;
	background: #444444;
	box-sizing: border-box;
	position: relative;
	z-index: 6;
}
	.footer_link{
		float: left;
		line-height: 20px;
		color: #ffffff;
		margin-right: 20px;
		font-size: 14px;
	}
	.footer_juliana{
		float: left;
		line-height: 20px;
		color: #ffffff;
		font-size: 14px;
	}
		.footer_juliana a {
			color: inherit;
		}

@media (max-width: 768px) {

	.footer{
		position: relative;
		justify-content: center;
	}

}

/**** FIN FOOTER ***********************************************************************************/
.customZenchefButtons{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.customZenchefButton{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    background: #000000;
    height: 20px;
    padding: 10px;
    margin-top:20px;
    cursor: pointer;
   
    transition: all .3s ease-in-out;
}
.customZenchefButton:hover{
    border-color: transparent;
    background: #9f968c;
}
    .customZenchefButton_icon{
        float: left;
        margin-right: 10px;
        color: #ffffff;
        font-size: 16px;
        transition: all .3s ease-in-out;
    }
    .customZenchefButton_label{
        float: left;
        color: #ffffff;
        text-transform: uppercase;
        /*font-weight:bold;*/
        font-size: 14px;
        letter-spacing: 1px;
        transition: all .3s ease-in-out;
    }
