/*** fonts **/
/*** https://fonts.google.com/ 
 * télécharger la version complète variable 
 * **/
@font-face {
	font-family: "Rubik";
	src: url(/style/font/Rubik-VariableFont_wght.ttf);
}

/*** 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.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;}

:root {
	--padding : 50px;
	--beige : #e8e4d9;	
	--vert: #abd186;	
	--bleu : #86d2ce;	
	--orange : #f37255;	
	--jaune : #ebc766;	
	--marron : #676361;	
}

body{ 
	overflow-x: hidden;  
	font-family: 'Rubik', sans-serif; 
	font-weight: 400;
	color : var(--marron);
}

.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-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%;}

.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;
}

.column2 {
	-moz-column-gap: var(--padding);
	-moz-columns: 2 auto;
	-webkit-column-gap:var(--padding);
	-webkit-columns: 2 auto;
	columns: 2;
}

.column3 {
	-moz-column-gap: var(--padding);
	-moz-columns: 3 auto;
	-webkit-column-gap: var(--padding);
	-webkit-columns: 3 auto;
	columns: 3;
}

.padding{ padding: var(--padding); }
.paddingSmall{ padding: calc( var(--padding) / 2); }
.paddingLR{ 
	padding-left: var(--padding);
	padding-right: var(--padding);
}
.paddingTB{ 
	padding-top: var(--padding);
	padding-bottom: var(--padding);
}

.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 : var(--marron);}
.bg_blanc {background-color : #fff; color : var(--marron);}

.bg_beige { background-color : var(--beige); color : var(--marron);}
.bg_vert { background-color : var(--vert); color : var(--marron)}
.bg_bleu { background-color : var(--bleu); color : #fff}
.bg_orange { background-color : var(--orange); color : #fff}
.bg_jaune { background-color : var(--jaune); color : #fff}
.bg_marron { background-color : var(--marron); color : var(--marron);}

.bg_gris_clair a:link, .bg_gris_clair a:visited, 
.bg_beige a:link, .bg_beige a:visited, 
.bg_blanc a:link, .bg_blanc a:visited {color : var(--marron);} 


.bg_vert a:link, .bg_vert a:visited, 
.bg_bleu a:link, .bg_bleu a:visited, 
.bg_orange a:link, .bg_orange a:visited, 
.bg_jaune a:link, .bg_jaune a:visited, 
.bg_gris_fonce a:link, .bg_gris_fonce a:visited {color : #fff;} 

.color_beige, a.color_beige:link, a.color_beige:visited { color : var(--beige); }
.color_vert, a.color_vert:link, a.color_vert:visited { color : var(--vert); }
.color_bleu, a.color_bleu:link, a.color_bleu:visited { color : var(--bleu); }
.color_orange, a.color_orange:link, a.color_orange:visited { color : var(--orange); }
.color_jaune, a.color_jaune:link, a.color_jaune:visited { color : var(--jaune); }
.color_marron, a.color_marron:link, a.color_marron:visited { color : var(--marron); }

.section {padding : 60px 0; position: relative;}
.sectionSmall {padding : 30px 0;}
.sectionNoPadding {padding : 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; }

.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%; line-height: 1.5em;}
.extrabig { font-size: 140%; }
.small { font-size: 80%; }
.extrasmall { font-size: 60%; }

/*** 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: 0.7s;
}

.fondu_top {
	opacity: 0;
	position: relative;
	margin-top: 200px;
	transition: all 0.7s, width 0s;
}

.fondu_left {
	opacity: 0;
	position: relative;
	left: -1000px;
	transition: all 0.7s, width 0s;
}

.fondu_right {
	opacity: 0;
	position: relative;
	left: 1000px;
	transition: all 0.7s, 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 1.5s ease-in-out forwards; /* Safari 4+ */
	-moz-animation:    anim-opa-grid 1.5s ease-in-out forwards; /* Fx 5+ */
	-o-animation:      anim-opa-grid 1.5s ease-in-out forwards; /* Opera 12+ */
	animation:         anim-opa-grid 1.5s 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 : 500; 
		top : 0; 
		left : 0;
		background : transparent url(/style/fond/forme-triangle-top.png) no-repeat center bottom;
		padding : 20px;
		min-height: 220px;
		background-size: cover;
		transition: all 0.5s;
	}

	header.header-fix {
		transform: translateY(-100%);
	}

	a#logo .img_100{
		display : block;
		transition: all 0.5s;
	}

	.caption {
		font-size : 550%;
		color : #fff; 
		font-weight: 800;
		line-height : 1.2em;
		text-transform: uppercase;
	}

		.slideDefaut {
			background : transparent url('/style/gites/slide-casa-location01.jpg') no-repeat center top;
			background-size: cover;
			min-height : 650px;
		}

		#slider {transition : all 0.5s;}


/*** menu *****************************************/
	/*nav li {display : inline-block; }
		nav li a{display : block; padding : 10px; }
		
		nav li a:focus, nav li a:hover,
		#contact nav li#nav-contact a, 
		#accueil nav li#nav-accueil a {
			text-decoration : underline;
		}
	*/		

header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: rgba(255, 255, 255,0.8);
}
	header li  {border-bottom: 1px solid rgba(
		,1)}
	
		header li a {
		  display: block;
		  padding: 20px 20px;
		 /*border-right: 1px solid rgba(244,244,244,0.5);*/
		  text-decoration: none;
		  text-transform: uppercase;
		  color : #000!important;
		  font-weight : 500;
		}


		header .menu {
			clear: both;
			max-height: 0;
			transition: max-height .2s ease-out;
			float: right;
			width: 100%;
			max-width: 400px;
			position: absolute;
			right: 0;
			top: 70px;
		}

		/* menu icon */


		header .menu-icon {
		  cursor: pointer;
		  display: flex;
		  float: right;
		  padding: 28px 20px;
		  user-select: none;
		  align-items: center;
		  text-transform: uppercase;
		  font-size : 120%;
		  position: absolute;
			top: 0;
			right: 150px;
		}

		header .menu-icon .navicon {
		  background: var(--marron);
		  display: block;
		  height: 2px;
		  position: relative;
		  transition: background .2s ease-out;
		  width: 20px;
		  margin-left: 5px;
		}

		header .menu-icon .navicon:before,
		header .menu-icon .navicon:after {
		  background: var(--marron);
		  content: '';
		  display: block;
		  height: 100%;
		  position: absolute;
		  transition: all .2s ease-out;
		  width: 100%;
		  float: left;
		}

		header .menu-icon .navicon:before {
		  top: 6px;
		}

		header .menu-icon .navicon:after {
		  top: -6px;
		}

		/* menu btn */

		header .menu-btn {
		  display: none;
		}

		header .menu-btn:checked ~ .menu {
			max-height: 1000px;
			transition: max-height 0.55s ease-in;
		}

		header .menu-btn:checked ~ .menu-icon .navicon {
		  background: transparent;
		}

		header .menu-btn:checked ~ .menu-icon .navicon:before {
		  transform: rotate(-45deg);
		}

		header .menu-btn:checked ~ .menu-icon .navicon:after {
		  transform: rotate(45deg);
		}

		header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
		header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
		  top: 0;
		}





/*** accueil *****************************************/

.rond {
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	font-size: 150%;
	padding : 60px 20px;
	line-height: 1.3em;
}

.rond .extrabig {font-size : 120%; line-height : 1.4em;}

.nav-gites li {
	display : inline-block;
	padding : 0 40px;
}


.nav-gites li a {
	transition: all 0.5s;
	text-transform: uppercase;
	font-weight : 800;
	font-size : 140%;
	border-top : 15px solid; 
	padding-top : 0px;
	display: block;
}

	.nav-gites li.border_bleu a {border-color : var(--bleu);}
	.nav-gites li.border_bleu a:hover {color : var(--bleu);}

	.nav-gites li.border_orange a {border-color : var(--orange);}
	.nav-gites li.border_orange a:hover {color : var(--orange);}

	.nav-gites li.border_jaune a {border-color : var(--jaune);}
	.nav-gites li.border_jaune a:hover { color : var(--jaune);}

	.before_triangle {position: relative;}

	.before_triangle_bleu::after {
		background : transparent url(/style/fond/triangle-bleu.png) no-repeat center left;
	}
	.before_triangle_orange::after {
		background : transparent url(/style/fond/triangle-orange.png) no-repeat center left;
	}
	.before_triangle_jaune::after {
		background : transparent url(/style/fond/triangle-jaune.png) no-repeat center left;
	}

	.before_triangle::after {
		position: absolute;
		top:  0;
		left : 0;
		content : "";
		display: block;
		height : 100%;
		width : 105px;
		background-size: auto 100%;
		z-index : 200;
	}

	.tarifs {
		position : relative;
		padding-left: 100px;
		margin-top : 100px;
	}

	.tarifs::after {
		content : "";
		background: var(--bleu);
		width : 90px;
		height : 10px; 
		display: block;
		position : absolute;
		left : 0;
		top: 10px;
	}

	.tarifs_bleu::after {background: var(--bleu);}
	.tarifs_orange::after {background: var(--orange);}
	.tarifs_jaune::after {background: var(--jaune);}

	.tarifs a.ico, .tarifs span {
		display: block;
		margin-bottom: 12px;
	}
	.tarifs .tarif{
		font-weight: 700;
		font-size: 170%;
	}

	.tarifs .ico {
		margin: 15px 0;
		line-height : 1.2em;
		font-weight: 600;
		font-size: 180%;
	}

	.border_top_bottom {
		border-top : 1px solid #c0bab4;
		border-bottom : 1px solid #c0bab4;
		padding : 5px 0;
		font-style: italic;
	}

	.galerie {width: 100%;}
	.galerie li {height: 100%;}
	.galerie img.img {width: 100%;}
	.loupe {
		position: absolute;
		display: block;
		left: 50%;
		top : 50%; 
		transform: translate(-50%,-50%);
		color : rgba(255,255,255,1)!important;
		z-index: 200;
		font-size : 300%;
		pointer-events: none;
	}
/*** liste + paragrahe  *****************************************/
	.section  ul.list  {margin-bottom : 20px;}
	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.noMargin {margin-bottom : 0px;}
	
	.img_100 {
		max-width : 100%;
		display : block; 
		line-height : 1; 
		width : auto;
		height : auto;
	}

	.img_cover {
		width: 100%;
		height: 100%;
		object-position: center;
		object-fit: cover;
	}


	.rond_picto {
		aspect-ratio: 1;
		border-radius: 50%;
		padding : 20px;
		display: flex;
		flex-direction: column;
		margin-bottom : 20px;
		transition: all 1s;
		font-size : 170%; 
		line-height: 1.1em;
		font-weight: 700;
		text-align: center;
		color : var(--beige);
		justify-content: center;
	}

	.bloc_gites .col1-3 {
		text-align: center;
	}

	/*.col1-2 .rond_picto img {max-width: 100px; max-height: 100px;}*/




/*** footer  *****************************************/


	footer {
		font-size: 125%;
	line-height: 1.3em;
	} 
	.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 *****************************************/

h2, .like_h2 {
	font-size : 160%;
	font-weight: 300;
	text-transform: uppercase;
	line-height : 1.1em;
}

h2 strong, .like_h2 strong{font-weight : 600;}

h3, .like_h3 {
	font-size : 190%;
	font-weight : 700;
	text-transform: none;
	line-height : 1.1em;
	margin-bottom: 20px;
}

h4, .like_h4 {
	font-size : 120%;
}



/*** lien *****************************************/

.btn_suite {
	display : inline-block; 
	text-transform : uppercase;	
	padding : 10px 20px;
	background : var(--vert);
	color : #fff!important;
	font-weight: 400;
	font-size: 120%;
	cursor: pointer;
	font-family: "Rubik";
	border: none;
	appearance:none;
	border : 1px solid transparent;
	-moz-appearance:none; /* Firefox */
	-webkit-appearance:none; /* Safari and Chrome */
	transition: all 0.5s;
}

	
	.btn_suite:hover,		
	.btn_suite:focus {		
		background : transparent;
		color : var(--marron)!important;
		border-color : var(--vert);
	}
	
	.btn_nevasport {
		  display: inline-block;
		  text-transform: uppercase;
		  padding: 7px 20px;
		  background: #ee2f2b;
		  color: #fff !important;
		  font-weight: 500;
		  border: 1px solid transparent;
		  border-radius: 50px;
		  transition: all 0.5s;
		  cursor: pointer;
		}

		.bg_bleu .loupePlus, 
		.bg_orange .loupePlus, 
		.bg_jaune .loupePlus {
			display : inline-block; 
			text-transform : uppercase;	
			padding : 5px 10px;
			background : var(--beige);
			color : #fff!important;
			font-weight: 400;
			cursor: pointer;
			font-family: "Rubik";
			border: none;
			appearance:none;
			border : 1px solid transparent;
			-moz-appearance:none; /* Firefox */
			-webkit-appearance:none; /* Safari and Chrome */
			transition: all 0.5s;
		}


		.bg_bleu .loupePlus { color : var(--bleu)!important;} 
		.bg_orange .loupePlus {color : var(--orange)!important;} 
		.bg_jaune .loupePlus { color : var(--jaune)!important;}

/*** 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::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-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-loupe::before {content : "\f083"; 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: 4px 0;*/
	/*min-height: 42px;*/
	z-index: 999999;
}

.mean-container a.meanmenu-reveal {
	padding : 6px 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 : #71b9d6;
	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 {
	background : pink;
	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%;
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 100%;
	box-sizing : border-box; 
	padding: 1em 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: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; line-height: 1.2em;}

.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; 
}


.lsOneSlide span {
	position: absolute;
	bottom : 20%; 
	left : 20%;
	font-size : 450%;
	color : #fff; 
	font-weight: 800;
	line-height : 1.2em;
	text-transform: uppercase;
	display: block;
}
/*********************** responsive  ***************************************/

@media all and (max-width: 1020px) {
	
	.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);
	}
	
	header {min-height: 180px}

	header .menu-icon {right : 20px;}
	
	#logo img.img_100 {max-width : 150px;}
	
	#slider {padding-top : 130px;}
	.paddingNoRS {padding : 10px}

	.rond_picto {font-size: 110%;}

	.bloc_gites .big {font-size : 100%;}

	.bloc_gites .col1-3 {
		float : left;
		width: 50%;
	}
	
}

@media all and (max-width: 900px) {
	.nav-gites li {
	  padding: 15px 10px;
	}

	.col1-3.bloc_picto {
		width : 50%; 
		float : left;
	}

	.rond_picto {padding: 10px;}
	.bloc_gites .big {font-size : 100%;}

.lsOneSlide span {
	font-size : 250%;
	bottom : 50px;
	left: 50px;
}

@media all and (max-width: 800px) {

	html, body { overflow-x: hidden; }

	.col1-2, .col1-3, .col2-3, .col1-4, .col3-4  {float : none; width : 100%; }
	
	.flex1-2, .flex1-3, .flex2-3, .flex1-4, .flex3-4  {width : 100%;}	
	
	header .img_100.margin_auto {margin : 0 0 0 20px;}
	#slider {padding-top : 150px;}
	.caption {padding-left : 20px;}
	.padding{padding : 20px}
	.paddingNoRS {padding : 0}
	.before_triangle::after {display: none;}
	.section { padding: 30px 0; }

	.like_h2 + .like_h3 {padding-top :10px; }
	.col1-3.bloc_picto {
		width : 50%; 
		float : left;
	}

	.bloc_gites .col1-3 {
		float : left;
		width: 33.33%;
	}

	.bloc_gites .big {font-size : 70%;}
	.rond_picto {padding: 10px; font-size : 90%;}
	.tarifs::after {width : 45px;}
	.tarifs {padding-left : 55px}
	.tarifs .btn_suite {font-size : 90%}
	.rond {font-size: 130%;}
}

