/*** fonts **/
/*** https://fonts.google.com/ 
 * télécharger la version complète variable 
 * **/
@font-face {
	font-family: "Raleway";
	src: url(/style/font/Raleway-VariableFont_wght.ttf);
}

@font-face {
	font-family: "Merriweather";
	src: url(/style/font/Merriweather-Regular.ttf);
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Merriweather";
	src: url(/style/font/Merriweather-Light.ttf);
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Merriweather";
	src: url(/style/font/Merriweather-Bold.ttf);
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Merriweather";
	src: url(/style/font/Merriweather-Black.ttf);
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/*** 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: helvetica, arial, sans-serif;font-size: 1.6em; /* equiv 14px */line-height: 1.6em; /* 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 : var(--bleu);}

body{ 
	overflow-x: hidden; 
	font-family: 'Raleway', sans-serif;
}

:root {
	--padding : 30px;
	--bleu : #0080af;
	--marron : #64554d;
	--beige : #f5f4f0;
}

.page, .page_min {
	width : 100%;
	max-width : 1300px;
	margin : 0 auto;
}
.page, .page_min {
	width : 100%;
	max-width : 1300px;
	margin : 0 auto;
} 

.page_demi {
	max-width : 650px;
}

.page_min {max-width : 800px;}

.col1-2,
.col1-3,
.col2-3,
.col3-4,
.col1-5,
.col2-5,
.col1-4 {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%;}
.col2-5{width: 40%;}

.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_around_center {
    justify-content: space-around;
    align-items: center;
}

.column2 {
	-moz-column-gap: var(--padding);
	-moz-columns: 2 auto;
	-webkit-column-gap:var(--padding);
	-webkit-columns: 2 auto;
	columns: 2;
	column-gap: var(--padding);
}

.column3 {
	-moz-column-gap: var(--padding);
	-moz-columns: 3 auto;
	-webkit-column-gap: var(--padding);
	-webkit-columns: 3 auto;
	columns: 3;
	column-gap: var(--padding);
}

.padding{ padding: var(--padding); }
.paddingLR{ 
	padding-left: var(--padding);
	padding-right: var(--padding);
}
.paddingTB{ 
	padding-top: var(--padding);
	padding-bottom: var(--padding);
}

.paddingNoBottom{ 
	padding-bottom: 0;
}

.marginNoBottom {
	margin-bottom: 0!important;
}

.position_relative { position: relative; }

/*gestion des couleurs et des fonds  */
 
.bg_gris_fonce {background-color : #58585a; color : #fff;}
.bg_gris_clair {background-color : #CDCDCD; color : #000;}
.bg_blanc_transparent {background-color : rgba(255,255,255,.8); color : var(--marron);}
.bg_blanc {background-color : #fff; color : #000;}
.bg_beige {background-color : var(--beige); color : var(--marron);}
.bg_bleu {background-color : var(--bleu); color : var(--marron);}
.bg_bleu_transparent {background-color : rgba(0,128,175,0.1); color : var(--marron);}

.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;} 
.bg_beige a:link, .bg_beige a:visited {color : var(--marron);} 
 a.color_beige:link, a.color_beige:visited {color : var(--beige);} 

.section {padding : 60px 0; position: relative;}
.sectionBig {padding :120px 0; position: relative;}
.sectionNoPaddingBottom {padding-bottom: 0 }
.margin_auto{margin: 0 auto;}

.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; }
.noItalic { font-style: normal; }

.thin { font-weight: 100; }
.extralight { font-weight: 200; }
.light { font-weight: 300; }
.normal { font-weight: 400; }
.medium { font-weight: 500; }
.semibold { font-weight: 600; }
.bold { font-weight: 700; }
.extrabold { font-weight: 800; }
.black { font-weight: 900; }

.big { font-size: 120%; }
.extrabig { font-size: 140%; }
.small { font-size: 80%; }
.extrasmall { font-size: 60%; }

.block { display: block; }

/*** animations ***********************************/

.zoom_container {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.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; }


/*** header  *****************************************/
	header {
		/*position: fixed; 
		width : 100%; 
		z-index : 10; 
		top : 0; 
		left : 0;*/

	}

	a#logo {padding-top : 50px; display : block;}
	a#logo .img_100{
		display : block;
		max-width: 250px;
	}

	#accueil a#logo .img_100 {max-width: inherit}
	
	#slider {padding : 50px; }



/*** accueil  *****************************************/

	.bg_img {
		background : transparent url(/style/accueil/fond-rendez-vous.jpg) no-repeat center center; 
		background-size: cover;
	}
	#lithotherapie .bg_img {
		background : transparent url(/style/activites/fond-lithotherapie.jpg) no-repeat center center; 
		background-size: cover;
	}
	#sylvotherapie .bg_img {
		background : transparent url(/style/activites/fond-sylvotherapie.jpg) no-repeat center center; 
		background-size: cover;
	}
	#coupeur_de_feu .bg_img {
		background : transparent url(/style/activites/fond-coupeur-feu.jpg) no-repeat center center; 
		background-size: cover;
		position: relative;
	}


	#coupeur_de_feu .bg_img .page {
		position : relative;
		z-index: 20;
	}
	/*#coupeur_de_feu .bg_img::after {
		background : rgba(0,0,0,0.4);
		content : '';
		position : absolute;
		top : 0;
		left : 0;
		right : 0;
		bottom : 0;
		z-index : 10;
	}*/

	.mains_couleurs {
		opacity: 0;
		transition: 0.5s;
		transition-delay: 2s;
	}

	.animation_arbre {
		display: block;
		position: relative;
		padding: 220px 0;
	}

	.animation_arbre span { min-height: 50px; display: block; margin-top : 5px;}
	.pastille {
		text-align: center;
		position: absolute;
		text-transform: uppercase;
		font-weight: 600;
		font-size: 120%;
		display: block;
		opacity: 0;
		transition-duration: 0.5s;
		transition-delay: 2s;
		cursor: pointer;
	}

	.pastille1 { top: 0; left: 50%; transform: translateX(-50%); transition-delay: 2s;}
	.pastille2 { top: 50%; right: calc(50% + 320px); transform: translateY(-75%); transition-delay: 2.5s;}
	.pastille3 { top: 50%; left: calc(50% + 320px); transform: translateY(-75%); transition-delay: 3s;}
	.pastille4 { bottom: 0; right: calc(50% + 150px); transition-delay: 3.5s;}
	.pastille5 { bottom: 0; left: calc(50% + 150px); transition-delay: 4s;}

	.pastille .img_off { transition: 0.5s; }
	.pastille .img_on {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		opacity: 0;
		z-index: 1;
		transition: 0.5s;
	}

	.main_gauche, .main_droite {
		position: absolute;
		top: 0;
		height: 100%;
		opacity: 1;
		transition-duration: 2s, 2s, 0.5s;
		transition-delay: 0s, 0s, 2s;
		transition-property: left, right, opacity;
	}
	.main_gauche { left: -300px; }
	.main_droite { right: -300px; }

	.animation_arbre.on .main_gauche { left: 50%; opacity: 0; }
	.animation_arbre.on .main_droite { right: 50%; opacity: 0; }
	.animation_arbre.on .mains_couleurs,
	.animation_arbre.on .pastille, .pastille:hover .img_on { opacity: 1; }
	.pastille:hover .img_on { transform: translate(-50%,-50%) scale(1.2); }
	.pastille:hover .img_off { opacity: 0; }



/*** magentiseur  *****************************************/

	.number {position: relative;}

	.number::before {
		float: left; 
		z-index: 1;
		display: block;
		font-size : 300%;
		font-weight : 600;
		padding-top : 5px;
	}
	.number1::before { content: "1";}
	.number2::before { content: "2";}
	.number3::before { content: "3";}
	.number4::before { content: "4";}
	.number span {display: block; overflow : hidden; padding-left : 10px;}

	.lesArbres div.col:nth-child(even) {
		background: var(--beige);
	}

/*** menu *****************************************/
	nav {
		position : fixed; 
		top : 0; 
		left : 0; 
		width : 100%;
		z-index : 20;
	}

	nav li {
		display : inline-block; 
		border-top : 5px solid transparent; 
		padding : 10px 0; 
		position: relative;
	}
		nav li a, nav li span {
			line-height: 1;
			display : block; 
			font-weight: 300;
			padding : 0 10px;
			color : var(--marron)!important;
			text-transform: uppercase;
			transition: all 0.5s;
			border-left : 1px solid #000;
		}
		
		nav li:focus, nav li:hover,
		nav .subNav li a:focus, nav .subNav li a:hover, 
		#contact nav li#nav-contact , 
		.activites nav li#nav-activites, 
		#actualites nav li#nav-actualites, 
		#edmond_bourny nav li#nav-a_propos, 
		#magnetiseur nav li#nav-magnetiseur a, 
		#energeticien nav li#nav-energeticien a, 
		#coupeur_de_feu nav li#nav-coupeur_de_feu a, 
		#geobiologie nav li#nav-geobiologie a, 
		#lithotherapie nav li#nav-lithotherapie a, 
		#sylvotherapie nav li#nav-sylvotherapie a, 
		#formations nav li#nav-formations a, 
		#accueil nav li#nav-accueil  {
			border-color: var(--bleu);
		}
			

		nav li:first-child a{border : none;}

@media all and (min-width: 620px) {

		nav .subNav {
			background : #fff;
			position : absolute;
			top:53px;
			left : 0;
			z-index: 500;
			text-align: left;
			transition : height 5s;
			overflow: hidden;
			max-height: 0;
			width : 180%;
    		transition: max-height 0.45s ease-out;
			box-shadow : 0px 6px 5px 0px rgba(0,0,0,0.2)
		}	


		nav li:focus .subNav, nav li:hover .subNav  {
		   max-height: 1000px; 
		   transition: max-height 0.55s ease-in;
		}

		nav .subNav li {
			display: block;
			border-top : none; 
			padding : 10px 10px 10px 10px;
		}
		nav .subNav li a {
			padding : 2px 0;
			display: block;
			border-bottom : 1px solid transparent; 
			border-left : none;
		}
 }
		
/*** liste + paragrahe  *****************************************/
	ul.list{
		list-style-type : disc;
		margin-left : 15px;
	}

	ul.inline li{
		display : inline-block;
		padding : 0 10px;
	}
	
	.section p {margin-bottom : 20px;}
	.section p a{color : var(--bleu)!important; font-weight: 700}
	
	.section p.noMarginBottom {margin-bottom : 0px;}
	.img_100 {
		max-width : 100%;
		display : block; 
		line-height : 1; 
		width : auto;
	}

	.img_cover {
		width: 100%;
		height: 100%;
		object-position: center;
		object-fit: cover;
	}

	p.big, .intro {
		font-family: 'Merriweather', serif;
		font-weight: 700;
		font-size: 140%;
		line-height: 1.4em;
	}

	.citation {
		font-family: 'Merriweather', serif;
		font-size: 180%; 
		line-height: 1.6em;
		font-weight: 400;
		font-style: italic;
	}

	.after_trait {
		position: relative;
	}


	.after_trait::after {
		position : absolute;
		bottom : -40px;
		left : 50%; 
		transform : translate(-50%,0);
		display: block;
		content : ""; 
		height : 80px;
		width : 5px;
		background: var(--marron);
		z-index : 20;
	}

/*** 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 *****************************************/
.section h1 + p {
	margin-top : 20px;
} 

.like_h3 + p, h3 + p {margin-top : 10px;}

h2, .like_h2 {
	font-size : 200%;
	font-family: 'Merriweather', serif;
	color : var(--marron);
	margin-bottom: 20px;
	line-height: 1.3em;
	font-weight: 700;
}
strong.like_h2 {display: block;}

h3, .like_h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 140%;
  color : #000;
  line-height: 1.4em;

}

h3.ico::before, .like_h3.ico::before {
	font-size: 90%;
	width: 25px;
	display: inline-block;
	text-align: right;
}

h4, .like_h4 {
	font-size : 120%;
}

.like_h3.ico + p {padding-left : 30px;}


/*** lien *****************************************/


a.btn_suite {
	display: inline-block;
	text-transform: uppercase;
	padding: 0 5px;
	line-height : 1;
	position : relative;
	color : var(--bleu)!important; 
	border-left: 1px solid var(--bleu);
	border-right: 1px solid var(--bleu);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.6s;
}

	.btn_suite:hover, .btn_suite:hover {
		color : #fff!important;
		background : var(--bleu)!important; 
	}


	a.btn_action, input.btn_action{
		margin-top: 20px;
		display: inline-block;
		text-transform: uppercase;
		padding: 10px 20px;
		border-radius : 50px;
		line-height : 1;
		position : relative;
		color : #fff!important; 
		background: var(--bleu);
		text-decoration: none;
		font-weight: 500;
		cursor : pointer;
		transition: all 0.6s;
		border : 1px solid transparent;
	}


	.btn_action:hover, .btn_action:hover {
		color : var(--bleu)!important;
		background : transparent!important; 
		border-color: var(--bleu);
	}


/*** actualites  *****************************************/

	.imgActu {
		display : block;
		height : 280px;
		overflow : hidden;
		position : relative;
		margin-bottom: 20px;
	}	

		.imgActu img.img_100 {
			width : 100%;
			height : 100%;
			object-fit: cover;
			object-position: center;
		}
		
		
			.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;
			margin : 10px 0;
		}

		.video-responsive iframe {
			left:0;
			top:0;
			height:100%;
			width:100%;
			position:absolute;
		}

/*** icone  *****************************************/


	.ico::before{
		font-family : 'Font Awesome 5 Free'; 
		font-size : 120%; 
		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-euro::before {content : "\f153"; 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-calendar::before {content : "\f073"; font-weight : bold; }


/*** masonry ****************/

.masonry {
	column-gap: 0px;
	column-count: 3;
}

.masonry > .item {
	display: block;
  	break-inside: avoid-column;
	transition : all 0.5s;
	/* margin: 0 0 1em;*/
}

/* Masonry-css on medium-sized screens */
@media only screen and (max-width: 1000px) {
	.masonry {
		column-count: 2;
	}
}

/* Masonry-css on medium-sized screens */
@media only screen and (max-width: 800px) {
	.masonry {
		column-count: 1;
	}
}


/* 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: 5px 0;
	/*min-height: 42px;*/
	z-index: 999999;
}

.mean-container a.meanmenu-reveal {
	padding : 8px 10px;
	position: absolute;
	top: 0px;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 60%;
	text-transform : uppercase;
	display: block;
	font-weight: 300;
	background : var(--bleu);
	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 : 250%; 
}

.mean-container a.meanclose::before { display : none;}

.mean-container a.meanmenu-reveal span {
	position : relative;
	top : -5px;
}


.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: #E9E9E9;
	/*margin-top: 44px;*/
}

.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%;
	border-top: none;
}


.mean-container .mean-nav ul li:hover a {background : var(--bleu);color:var(--beige)!important;}

.mean-container .mean-nav ul li a, 
.mean-container .mean-nav ul li span {
	display: block;
	float: left;
	width: 100%;
	box-sizing : border-box; 
	padding: 20px 5%;
	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.mean-expand {
	margin-top: 1px;
	width: 57px;
	height: 56px;
	padding: 7px 12px !important;
	text-align: center;
	position: absolute;
	right: 0px;
	top:0px;
	z-index: 2;
	font-weight: 700;
	background: rgba(255,255,255,0.1);
	border: none !important;
	font-size : 200%;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
	background: var(--bleu);
}

.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;
}


/*********************** responsive  ***************************************/

@media all and (max-width: 1000px) {
	
	.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);
	}

	.t50 { width : 50%;}
	
}

@media all and (max-width: 620px) {

	html, body { overflow-x: hidden; }

	.col1-2, .col1-3, .col2-3, .col1-4, .col3-4, .col1-5, .col2-5  {float : none; width : 100%; }
	
	.s-50 {float : left; width : 50%;}

	.flex1-2, .flex1-3, .flex2-3, .flex1-4, .flex3-4  {width : 100%;}	
	
	.titreArbre.align_right {text-align: left;}

	.column2, .column3 {
		-moz-columns: 1 auto;
		-webkit-columns: 1 auto;
		columns: 1;
	}
	.lesArbres .col {padding : 5px 0;}

	.lesArbres .padding{
		padding : 5px;
	}

	.lesArbres .bfArbre::before{
		content : "Les bienfaits";
	}

	.citation { font-size : 120%; }
	.ico-mobile.float_right {
		float : left;
		padding-left : 20px;
	}
	.mean-container .mean-nav { padding : 10px 0;}

	header.section {padding-bottom: 0}
	nav li span, nav li a {border-left : none}
	nav li  {padding : 0}
	.animation_arbre{padding : 150px 0 30px; margin-top : 50px}
	.pastille .img_off, .pastille .img_on {max-width: 100px;}
	.pastille1 { top: 0; left: 50%; transform: translateX(-50%); transition-delay: 2s;}
	.pastille2 { top: 50%; right: calc(50% + 50px); transform: translateY(-75%); transition-delay: 2.5s;}
	.pastille3 { top: 50%; left: calc(50% + 50px); transform: translateY(-75%); transition-delay: 3s;}
	.pastille4 { bottom: inherit; top : 60%; right: calc(50% + 50px); transition-delay: 3.5s;}
	.pastille5 { bottom: inherit; top : 60%; left: calc(50% + 50px); transition-delay: 4s;}
	.animation_arbre span {font-size : 70%;}
	.bg_img  .page {padding : 0 var(--padding);}
	#accueil a#logo .img_100 {
	  max-width: 80%;
	}
}

