/*** fonts **/
/*** https://fonts.google.com/ **/
@font-face {
	font-family: "Barlow Condensed";
	src: url(/style/font/BarlowCondensed-Regular.ttf);
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Barlow Condensed";
	src: url(/style/font/BarlowCondensed-Medium.ttf);
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "Barlow Condensed";
	src: url(/style/font/BarlowCondensed-SemiBold.ttf);
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Barlow Condensed";
	src: url(/style/font/BarlowCondensed-Bold.ttf);
	font-weight: 700;
	font-style: normal;
}

/*** default styles */
* {box-sizing : border-box;  padding: 0;margin: 0;}
select * {padding: 0 0.5em;}
ul, ol {list-style: none;}
a img, :link img, :visited img, object, fieldset {border: none;}
/*a:focus, a:hover {text-decoration: underline;}*/
a:active {outline: none;}
a {outline: none;}
address {font-style: normal;}
iframe {line-height : 1em; display: block;}
:link, :visited {text-decoration: none;}
legend {position: relative;left: -6px;/* ie */}
/*** font size : http://www.knacss.com/ */
html {font-size: 62.5%;}
body {background-color: #fff;color: #000;font-family: "Barlow Condensed", helvetica, arial, sans-serif;font-size: 1.8em; /* equiv 14px */line-height: 1.5em; /* adapt to your design */}
input, select, textarea {font-size: 100%;}
/*** Float containers (http://www.csscreator.com/attributes/containedfloat.php) */
.clearfix:after {content: ".";display: block;height: 0;font-size:0;clear: both;visibility: hidden;}
.clearfix{display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */
/*** Image Replacement */
.mir {letter-spacing : -1000em;}
/*\*/
* html .mir {text-indent: -999em;overflow: hidden;}
html>body .mir {letter-spacing: normal;text-indent: -999em;overflow: hidden;}/**/
/*** generic style */
.clear {clear: both;}
div.clear {height: 0;}
.no-wrap {white-space:nowrap;}
/*** error */
.errorOutput {font-weight: bold;padding: 0.5em 20px;border-top: 2px solid #eee;	border-bottom: 2px solid #eee;background: transparent url(/style/alert.gif) no-repeat left center;}
a:link, a:visited {color : #008cd9;}

body{ overflow-x: hidden; }

:root {
	--vert: #97c121;
	--jaune: #deb410;
	--orange: #d56706;
	--bleu: #1394d6;
	--vert-fonce: #103018;
	--gris-clair: #f2f2f2;
	--gris-fonce: #a8a8a8;
}

.page, .page_min {
	width : 100%;
	max-width : 1200px;
	margin : 0 auto;
}

.page_min {max-width : 800px;}

.col1-2,
.col1-3,
.col2-3,
.col3-4,
.col1-4,
.col1-5 {float : left;}

.col{width: 100%; }
.col3-4{width: 75%;}
.col1-2{width: 50%;}
.col1-3{width: 33.33%;}
.col2-3{width: 66.66%;}
.col1-4{width: 25%;}
.col1-5{width: 20%;}

.flexParent {
    display: flex;
    flex-wrap: wrap;
}

.flex,
.flex1-1,
.flex1-2,
.flex1-3,
.flex2-3,
.flex3-4,
.flex1-4 { 
    display: flex;
}

.flex1-1{width: 100%;}
.flex3-4{width: 75%;}
.flex1-2{width: 50%;}
.flex1-3{width: 33.33%;}
.flex2-3{width: 66.66%;}
.flex1-4{width: 25%;}


.flexColumn {
	flex-direction: column;
	display: flex;
}

.flex_between {
    justify-content: space-between;
}

.flex_start_center {
    justify-content: flex-start;
    align-items: center;
}

.flex_center_center {
    justify-content: center;
    align-items: center;
}

.flex_between_center {
    justify-content: space-between;
    align-items: center;
}

.flex_end_center {
    justify-content: flex-end;
    align-items: center;
}

.flex_end {
    justify-content: flex-end;
}

.align_start { align-items: flex-start; }

.column2 {
	-moz-column-gap: 20px;
	-moz-columns: 2 auto;
	-webkit-column-gap: 20px;
	-webkit-columns: 2 auto;
	columns: 2;
}

.column3 {
	-moz-column-gap: 20px;
	-moz-columns: 3 auto;
	-webkit-column-gap: 20px;
	-webkit-columns: 3 auto;
	columns: 3;
}

.padding_min{padding: 10px;}
.padding{padding: 20px;}
.padding_noTop{padding-top: 0px;}
.padding_noBottom{padding-bottom: 0px;}
.padding_noLeft{padding-left: 0px;}
.padding_noRight{padding-right: 0px;}

.position_relative { position: relative; }

/*gestion des couleurs et des fonds  */
 
.bg_vert {background-color : var(--vert); color : #fff;}
.bg_jaune {background-color: var(--jaune); color: #fff;}
.bg_orange {background-color: var(--orange); color: #fff;}
.bg_bleu {background-color: var(--bleu); color: #fff;}
.bg_vert_fonce {background-color: var(--vert-fonce); color: #fff;}
.bg_gris_fonce {background-color : var(--gris-fonce); color : #fff;}
.bg_gris_clair {background-color : var(--gris-clair); color : #000;}
.bg_blanc {background-color : #fff; color : #000;}


.bg_gris_clair a:link, .bg_gris_clair a:visited,
.bg_blanc a:link, .bg_blanc a:visited {color : #000;}

.bg_gris_fonce a:link, .bg_gris_fonce a:visited { color: #fff; } 

.vert { color: var(--vert) !important; }
.jaune { color: var(--jaune) !important; }
.orange { color: var(--orange) !important; }
.bleu { color: var(--bleu) !important; }
.vert_fonce { color: var(--vert-fonce) !important; }
.gris_clair { color: var(--gris-clair) !important; }
.gris_fonce { color: var(--gris-fonce) !important; }

.section {padding : 40px 0; position: relative;}

.margin_auto{margin: 0 auto;}
.noMargin{margin: 0 !important;}

.relative{position : relative;}

.float_right {float : right;}
.float_left {float : left;}

.align_center {text-align : center;}
.align_right {text-align : right;}

.maj { text-transform: uppercase; }
.italic { font-style: italic; }
.thin { font-weight: 100 !important; }
.light { font-weight: 300 !important; }
.normal { font-weight: 400 !important; }
.medium { font-weight: 500 !important; }
.semibold { font-weight: 600 !important; }
.bold { font-weight: 700 !important; }
.extrabold { font-weight: 900 !important; }
.big { font-size: 120%; }
.small { font-size: 80%; }

.cache { display: none; }

.tt_none { text-transform: none; }

.lien_cover {
	display: block;
	position: relative;
	overflow: hidden;
}
.lien_cover img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.lien_cover:hover img { transform: scale(1.2); }

.shadow { box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3); }

.fix {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 200%;
	z-index: 100;
	cursor: pointer;
	opacity: 0;
	transition: 0.5s;
}
.fix.scroll { opacity: 1; }


/*** animations ***********************************/

.zoomup { transition: 0.4s; }
.zoomup:hover {transform: scale(1.2);}

.zoomdown { transition: 0.4s; }
.zoomdown:hover {transform: scale(0.8);}

.zoomtourne { transition: 0.4s;}
.zoomtourne:hover {transform: rotate(15deg) scale(0.9);}

.zoominfini:hover {
	animation-duration: 0.8s;
	animation-name: zoominfini;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes zoominfini {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

.fade {
	opacity: 0;
	transition: 1s;
}

.fondu_top {
	opacity: 0;
	position: relative;
	margin-top: 200px;
	transition: all 1s, width 0s;
}

.fondu_left {
	opacity: 0;
	position: relative;
	left: -1000px;
	transition: all 1s, width 0s;
}

.fondu_right {
	opacity: 0;
	position: relative;
	left: 1000px;
	transition: all 1s, width 0s;
}

.fondu_revele {
	opacity: 1;
	top: 0;
	left: 0;
	z-index: 100;
	margin-top: 0;
}

.fondu_intro {
	opacity : 0;
	overflow : hidden; 
	-webkit-animation: anim-opa-grid 3s ease-in-out forwards; /* Safari 4+ */
	-moz-animation:    anim-opa-grid 3s ease-in-out forwards; /* Fx 5+ */
	-o-animation:      anim-opa-grid 3s ease-in-out forwards; /* Opera 12+ */
	animation:         anim-opa-grid 3s ease-in-out forwards; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes anim-opa-grid {
  from { opacity: 0; }
    to { opacity: 1; }
  
}
@-moz-keyframes anim-opa-grid {
   from { opacity: 0; }
    to { opacity: 1; }
}
@-o-keyframes anim-opa-grid {
   from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes anim-opa-grid {
  from { opacity: 0; }
    to { opacity: 1; }
}

.duree_transition1 { transition: 0.5s; }
.duree_transition2 { transition: 1s; }
.duree_transition3 { transition: 1.5s; }
.duree_transition4 { transition: 2s; }
.duree_transition5 { transition: 2.5s; }

.border_orange { border: 1px solid var(--orange); padding: 10px 20px; }
.bottom_orange {
	position: relative;
	text-align: center;
	line-height: 1.5;
	padding: 20px 20px 30px;
}
.bottom_orange p { margin-bottom: 0 !important; }
.bottom_orange:not(:last-child)::after {
	content: '';
	width: 80px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--orange);
}


/*** accueil ************************************/
#slider {
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
#accueil #slider {
	height: calc(100vh - 55px);
	position: relative;
	background-image: url(/style/video/golf-drome-provencale.jpg);
}
#a-propos #slider { background-image: url(/style/a-propos/a-propos-golf-drome-provencale.jpg); }
#golf #slider { background-image: url(/style/golf/golf-drome-provencale-int.jpg); }
#restauration #slider { background-image: url(/style/restauration/slide-restauration.jpg); }
#hebergement #slider { background-image: url(/style/hebergement/slide-hebergement.jpg); }
#actualites #slider { background-image: url(/style/actualites/slide-actualites.jpg); }
#contact #slider { background-image: url(/style/contact/slide-contact.jpg); }

.accueil_fiche {
	position: relative;
}
.accueil_fiche .btn_suite {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,50%);
	width: calc(100% - 40px);
}

/*** slider ****************************************/
#sliderVideo { position: relative; overflow : hidden;  width : 100%; height: calc(100vh - 55px); }

.masthead {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.masthead-content {
	position: absolute;
    top: 50%;
    left: 50%;
	transform : translate(-50%,-50%);
	z-index: 20;
	width: 100%;
}


/*** à propos ****************************************/

.frise {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.frise::before {
	content: '';
	background-color: var(--vert);
	height: 5px;
	width: calc(100% - 40px);
	left: 20px;
	top: 80px;
	position: absolute;
}
.frise .col1-5 {
	position: relative;
}
.frise .col1-5::before {
	content: '';
	background-color: var(--vert);
	height: 20px;
	width: 20px;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100%;
	position: absolute;
}
.frise p { padding: 10px 0; }

.frise_texte { transition: 0.5s; opacity: 0; /*max-height: 0;*/ }
.frise .col1-5:hover .frise_texte { opacity: 1; /*max-height: 500px;*/ }

.qui_img {
	padding-left: 0;
	padding-top: 0;
}

.qui_texte {
	padding-right: 0;
	padding-top: 0;
}


/*** golf ********************************************/

table.tarifs { width: 100%; text-transform: uppercase; margin-bottom: 40px; border-collapse: collapse; }
table.tarifs th, table.tarifs td { width: 33%; font-weight: 500; }
table.tarifs th { font-weight: 600; font-size: 160%; text-align:left; vertical-align: top; line-height: 3; }
table.tarifs td { padding: 5px; }
table.tarifs tr > :not(:first-child) { text-align: center; }
table.tarifs tr:nth-child(even) { background-color: var(--gris-clair); }

table.tarifs2 tr td:first-child { width: 80%; }
table.tarifs2 tr td:last-child { width: 20%; }

.golf_lien {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


/*** header  *****************************************/

	header {
		position: fixed;
		width: 100%;
		left: 0;
		z-index: 100;
		transition: 0.5s;
	}

	header.header-fix {
		height: 55px;
		box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
	}

	.header-fix .span_header { font-size: 0; display: none; }

	header a { padding: 0 10px; line-height: 1.6; display: flex; justify-content: center; align-items: center; }
	.header-fix a { flex-direction: column; }
	header a:first-child { border-right: 1px solid; }
	
/*** menu *****************************************/

	nav {
		position: sticky;
		top: 0;
		z-index: 101;
		padding: 0 20px;
	}

	nav ul { position: relative; }

	nav li { display : inline-block; }

	nav li a {
		text-transform: uppercase;
		font-weight: 500;
		display : block;
		font-size: 110%;
		padding : 10px 0;
	}

	.nav_barre {
		width: 100%;
		height: 8px;
		background-color: var(--gris-clair);
		position: relative;
	}

	.nav_barre .tiktik {
		position: absolute;
		height: 100%;
		background-color: var(--vert);
		width: 57px;
		left: 0;
		transition: 1s;
	}


	.sousmenu { text-align: center; }
	.sousmenu a { padding: 10px 30px; font-weight: 500; color: var(--gris-fonce) !important; }

/*** liste + paragrahe  *****************************************/
	ul.list{
		list-style-type : disc;
		margin-left : 15px;
	}

	ul.list_check {
		list-style-type : none;
		margin-bottom: 15px;
	}
	ul.list_check li {
		color: var(--vert-fonce);
		display: flex;
		font-weight: 500;
		margin-bottom: 5px;
	}
	ul.list_check li::before {
		content: '\f058';
		font-family: "Font Awesome 6 Free";
		font-weight: 700;
		margin-right: 5px;
	}
	ul.list_check li span { color: #000; }

	ul.inline li{
		display : inline-block;
		padding : 0 10px;
	}
	
	.section p { margin-bottom : 20px; /*font-weight: 500;*/ }
	
	.img_100 {
		max-width : 100%;
		display : block; 
		line-height : 1; 
		width : auto;
	}

	.img_cover {
		width: 100%;
		height: 100%;
		object-position: center;
		object-fit: cover;
	}


/*** footer  *****************************************/ 
	.nav-mentions li, .nav_rs li{
		display : inline-block;
	}

		.nav-mentions li a, .nav_rs li a{padding : 0 5px;}

		.nav-mentions li a {font-size : 75%; border-left : 1px solid; }

			.nav-mentions li:first-child a{
				border-left : none; 
			}
			
	.titre_footer {
		display :  block; 
		text-transform : uppercase; 
		font-size : 110%;
		font-weight : 600;
		margin-bottom : 5px;
	}

/*** titre *****************************************/
h1, .like_h1 {
	font-size : 220%;
	margin-bottom: 20px;
	line-height: 1.5;
}

h2, .like_h2 {
	font-size : 200%;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.5;
}

h3, .like_h3{
	font-size : 160%;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.5;
}

h4, .like_h4{
	font-size : 120%;
	margin-bottom: 20px;
	line-height: 1.5;
}

.surtitre {
	color: var(--gris-fonce);
	margin-bottom: 0 !important;
	text-transform: uppercase;
	font-weight: 400 !important;
}

/*** lien *****************************************/

.btn_suite {
	display : inline-block; 
	text-transform : uppercase;	
	padding : 8px 35px;
	color : #fff !important;
	font-weight: 500;
	font-size: 125%;
	transition: 0.5s;
	white-space: nowrap;
	text-align: center;
}
.btn_suite:hover {
	background-color: var(--vert) !important;
}

.btn_golf {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 400;
	padding-left: 40px;
	position: relative;
}
.btn_golf::before {
	content: '';
	background-image: url('/style/picto-balle-de-golf.gif');
	background-size: contain;
	background-repeat: no-repeat;
	width: 18px;
	height: 25px;
	position: absolute;
	left: 6px;
	bottom: 0px;
	z-index: 1;
	transform-origin: 75px bottom;
	transition-delay: 0.5s;
	transition: 0.5s;
}
.btn_golf::after {
	content: '';
	background-image: url('/style/picto-T.gif');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 10px;
	z-index: 2;
	position: absolute;
	left: 5px;
	bottom: 0px;
	pointer-events: none;
}
.btn_golf i {
	position: absolute;
	color: var(--vert);
	font-size: 0;
	bottom: 15px;
	left: 147px;
	z-index: 2;
	transition: 0.3s;
	transition-delay: 0s;
}
.btn_golf:hover::before {
	transform: rotate(160deg);
	pointer-events: none;
	transition-delay: 0s;
}
.btn_golf:hover i {
	font-size: 120%;
	transition-delay: 0.5s;
}


/*** restauration ****************************************/

.unMenu { position: relative; }
.unMenu:not(:last-child)::after {
	content: '';
	position: absolute;
	width: calc(100% - 40px);
	height: 1px;
	left: 20px;
	bottom: 10px;
	background-color: var(--gris-fonce);
}
	

/*** hébergement *****************************************/

.galerie a { display: block; position: relative; overflow: hidden; }
.galerie a:first-child::after {
	content: '\f002';
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	font-size: 300%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: rgba(255,255,255, 0.5);
}
.galerie a img { transition: 0.5s; }
.galerie a:hover img { transform: scale(1.2); }


/*** actualites  *****************************************/

	.imgActu {
		display : block;
		height : 150px;
		overflow : hidden;
		position : relative;
	}	

		.imgActu img {
			max-height : 100%;
			margin : 0 auto;	
			position : absolute; 
			top : 50%; 
			left : 50%; 
			transform : translate(-50%,-50%);
		}
		
		
			.imgActu span{
				position : absolute; 
				top : 50%; 
				left : 50%; 
				transform : translate(-50%,-50%);
				text-transform : uppercase; 
				color : rgba(146,143,143,0.5);
				font-weight : 300;
				text-align : center;
				font-size : 95%;
			}
			
			.imgActu span::before{
				content : '\f030';
				font-family : "Font Awesome 5 Free"; 
				font-weight: bold;
				display : block;
				font-size : 200%;
				color : rgba(146,143,143,0.5);
			}

		.video-responsive {
			overflow:hidden;
			padding-bottom:56.25%;
			position:relative;
			height:0;
		}

		.video-responsive iframe {
			left:0;
			top:0;
			height:100%;
			width:100%;
			position:absolute;
		}

/*** icone  *****************************************/

	.ico { display: flex; }

	.ico::before{
		font-family : 'Font Awesome 5 Free'; 
		font-size : 100%; 
		padding-right : 5px; 
	}
	
	 p.ico span{overflow : hidden; display : inline;}
	 p.ico::before{display : inline;}
	
	.ico-eye::before { content : "\f06e"; font-weight : bold;}
	.ico-map::before { content : "\f3c5"; font-weight : bold;}
	.ico-map-marker::before { content : "\f041"; font-weight : bold;}
	.ico-mobile::before { content : "\f3cd"; font-weight : bold;}
	.ico-phone::before { content : "\f095"; font-weight : bold;}
	.ico-web::before { content : "\f0ac"; font-weight : bold;}
	.ico-mail::before { content : "\f0e0"; font-weight : bold;}
	.ico-recherche::before { content : "\f002"; font-weight : bold;}
	.ico-compte::before { content : "\f2bd"; font-weight : bold;}
	.ico-pdf::before { content : "\f1c1"; font-weight : bold;}
	.ico-print::before { content : "\f02f"; font-weight : bold;}
	.ico-streetview::before {content : "\f21d"; font-weight : bold;}
	.ico-nav::before {content : "\f0c9"; font-weight : bold;}
	.ico-clock::before {content : "\f017"; font-weight : bold;}
	.ico-star::before {content : "\f005"; font-weight : bold; }
	.ico-laptop::before {content : "\f109"; font-weight : bold; }
	.ico-store::before {content : "\f54e"; font-weight : bold; }
	.ico-exchange::before {content : "\f362"; font-weight : bold; }
	.ico-desktop::before {content : "\f108"; font-weight : bold; }
	.ico-bottom::before {content : "\f0dd"; font-weight : bold; color: var(--jaune); }
	.ico-right::before {content : "\f0da"; font-weight : bold; color: var(--jaune); }
	.ico-resto::before {content : "\f2e7"; font-weight : bold; }
	.ico-handicap::before {content : "\f193"; font-weight : bold; }
	.ico-parking::before {content : "\f1b9"; font-weight : bold; }
	.ico-balai::before {content : "\f51a"; font-weight : bold; }
	.ico-animaux::before {content : "\f6d3"; font-weight : bold; }
	.ico-user::before {content : "\f007"; font-weight : bold; }
	.ico-lit::before {content : "\f236"; font-weight : bold; }
	.ico-surface::before {content : "\f047"; font-weight : bold; }

	.ico-orange::before { color: var(--orange); }
	.ico-bleu::before { color: var(--bleu); }

	.ico-2x::before { font-size: 200%; margin-bottom: 10px; }

/* magnific popup */
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}

/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
	display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
	float: left;
	width: 100%; 
	position: fixed;
	background: transparent;
	/*padding: 4px 0;*/
	/*min-height: 42px;*/
	z-index: 999999;
}

.mean-container a.meanmenu-reveal {
	padding : 12px 10px;
	position: absolute;
	top: 0px;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 100%;
	text-transform : uppercase;
	display: block;
	font-weight: 300;
	background : var(--vert);
	z-index: 800;
	text-align : center;
}

a.meanmenu-reveal::before {
	content : "\f0c9"; 
	font-family : "Font Awesome 5 Free"; 
	font-weight : bold;
	text-align : center;
	padding-right : 5px;
	font-size : 150%; 
}

.mean-container a.meanclose::before { display : none;}

.mean-container a.meanmenu-reveal span {
	background : var(--vert);
	position : relative;
	top : -5px;
}


.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: #E9E9E9;
	box-shadow: 0px 2px 2px rgb(0 0 0 / 50%);
}

.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}

.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 100%;
	box-sizing : border-box; 
	padding: 20px 80px;
	margin: 0;
	text-align: left;
	color: #000;
	border-top: 1px solid #383838;
	border-top: 1px solid rgba(255,255,255,0.5);
	text-decoration: none;
	text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	border-top: 1px solid #f1f1f1;
	border-top: 1px solid rgba(255,255,255,0.25);
	opacity: 0.75;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
	background: #252525;
	background: rgba(255,255,255,0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 1px;
	width: 26px;
	height: 32px;
	padding: 12px !important;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: rgba(255,255,255,0.1);
	border: none !important;
	border-left: 1px solid rgba(255,255,255,0.4) !important;
	border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
	background: rgba(0,0,0,0.9);
}

.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* popup gestion cookies */

body.cn-cookie-overlay {overflow: hidden; height: 100vh;}

.cn-cookie {
	display: block;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 99999;
	top : 0;
	left: 0;
	background : rgba(0,0,0,.5);
	
}

.cn-cookie-content {
   display: block;
   position: absolute;
   max-width: 500px;
   min-width: 320px;
   height: auto;
   z-index: 100000;
   font-size: 16px;
   line-height: 18px;
   top : 50%;
   left: 50%;
   padding : 20px; 
   color: #000;
   background : #fff;
   transform : translate(-50%,-50%);
}

.cn-cookie strong {font-size : 30px; display : block; padding-bottom : 20px;}

.cn-cookie p {padding-bottom : 20px;}
.cn-cookie a.btnDenyCookies {
	text-decoration: underline; 
	padding-bottom : 10px;	
	display: block;
	color : #8c8c8c!important;
  text-align: center;
}
.cn-cookie a.btnAcceptCookies,
.cn-cookie a.btnDetailsCookies { 
  display: block;
  width : 100%;
  margin-bottom : 10px;
  color: #fff; 
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  outline: none;
}
.cn-cookie a.btnAcceptCookies {
  background : #000;
  color : #fff!important; 
}

.cn-cookie a.btnDetailsCookies {
  border : 1px solid;
  color : #000!important; 
}


/*********************** responsive  ***************************************/

@media all and (max-width: 1350px) {

	nav { padding: 0; }

	.nav_barre { display: none; }

	#accueil #slider {
		height: 100vh;
	}

	#sliderVideo {
	    height: 100vh;
	}

	.column-1350 {
		flex-direction: column;
	}
}

@media all and (max-width: 1200px) {

	.w50-1200 { width: 50%; }
	.w33-1200 { width: 33%; }

	.frise::before { background: none; }
	.frise_texte { opacity: 1; }
}


@media all and (max-width: 1000px) {

	.w100-1000 { width: 100%; }
	.w50-1000 { width: 50%; }

	.c1-1000 {
		-moz-columns: 1 auto;
		-webkit-columns: 1 auto;
		columns: 1;
	}
	
	.cn-cookie a.btnAccept, .cn-cookie a.btnDeny {
		position : relative;
		top : inherit;
		display : block;
		right : inherit;
		margin : 10px auto 0 auto;
		max-width : 200px;
		transform : translateY(0);
	}
}


@media all and (max-width: 900px) {

	.w100-900 { width: 100%; }
	.w50-900 { width: 50%; }
	.w25-900 { width: 25%; }
	.center-900 { text-align: center; }
}


@media all and (max-width: 800px) {

	.w100-800 { width: 100%; }
	.w50-800 { width: 50%; }

}

@media all and (max-width: 700px) {

	.w100-700 { width: 100%; }

}


@media all and (max-width: 620px) {

	#slider {
		height: 400px !important;
		background-size: cover;
	}

	.qui_img { padding-top: 20px padding-right: 0; padding-bottom: 20px; padding-left: 0; }
	.qui_texte { padding-top: 20px padding-right: 0; padding-bottom: 0px; padding-left: 0; }

	.auto-620 { margin: auto; }
	
	.page {padding : 0;}

	.col1-2, .col1-3, .col2-3, .col1-4  , .col3-4 , .col1-5 {float : none; width : 100%; }
	
	.flex1-2, .flex1-3, .flex2-3, .flex1-4  , .flex3-4  {width : 100%;}
	
}

