/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

html {
	scroll-behavior: smooth;
}

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	*padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	*padding:0 10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* MAIN LAYOUT */
body {
    margin: 0;
	background: #ebebeb;
	*background-image: url('../images/html-background.jpg');
	*background-size: cover;
	*background-position: center top;
	*background-repeat: no-repeat;
	*-webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
.header .inner {
	box-shadow: none !important;
}
.footer .inner {
	box-shadow: none !important;
}
.content {
	*background: #F0E1C2;
	background-image: url('../images/html-background.jpg');
	background-size: 100%;
	*background-position: center 795px;
	*background-repeat: no-repeat;
	-webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    *background: #fff;
	    *padding: 40px 0 60px;
	    min-height: 300px;
	}
	.inner {
	    max-width: 1350px;
	    margin: 0 auto;
		*padding: 0 30px;
		box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
		width:100%; /* makes content container full width when there is no sidebar */
		
		*background-image: url('../images/old-paper.jpg');
		*background-size: contain;
		*background-position: top;
		*background-repeat: no-repeat;
	}
	.sidebar { /* this is the sidebar element */
	    margin-top: 12px;
	}
	.no-sidebar .sidebar {
		display: none;
	}

	#scroll-to-top {
		display: none;
		position: fixed;
		*background: rgba(255,61,1,.8) url('../images/scroll-to-top.png') top left  no-repeat;
		background: rgba(159, 192, 67,1) url('../images/scroll-to-top.png') top left  no-repeat;
		cursor: pointer;
		width:65px;
		height: 65px;
		right: 25px;
		bottom: 25px;
		z-index: 13;
		border-radius: 50%;
		background-size: cover;
		filter: drop-shadow(0 3px 8px rgba(136, 136, 136, .75));
		-webkit-filter: drop-shadow(0 3px 8px rgba(136, 136, 136, .75));
		-moz-filter: drop-shadow(0 3px 8px rgba(136, 136, 136, .75));
	}

	.stick {
		position:fixed;
		width: auto;
		right: 0px;
		left:0px;
		z-index: 13;
	}

	#MemberLoginForm_LoginForm {
		margin: 0 auto;
		margin-top: 150px;
	}

	.mask-mobile {
		display: none;
		background: rgba(159, 192, 67,1);
		background-size: contain;
		z-index: 9998;
		position: absolute;
		width: 100%;
		height: 1000%;
		overflow: hidden;
		text-align: center;
	}
	.mask-mobile img {
		width: 350px;
		height: auto;
		*background-color: rgba(255,255,255,.85);
		*border-radius: 15px;
		*-webkit-filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, .9));
		*border: solid 1px #fff;
		/* z-index: 9999; */
		position: absolute;
		margin: 0 auto;
		left: 0;
		right: 0;
		/* text-align: center; */
		margin-top: 50px;
	}

	.mask-mobile p {
		font-size: 28px;
		font-family: sans-serif;
		color: #fff;
		font-weight: lighter;
		/* font-stretch: normal; */
		line-height: 1em;
	}

/* HEADER */
.header {
	*background: rgba(46,43,39,.85);
}

	.header .inner {
	    *padding-top: 45px;
	    position: relative;
	    min-height: 72px;
	}

	/* Brand */
	header .brand, header .brand:hover {
	    float: left;
	    color: #fff;
	    display: inline-block;
	}
		.brand h1 {
		    margin: 0;
		    padding: 0;
		    font-size: 48px;
		    font-family: "HelveticaNeueLTPro-Bd", "Helvetica Neue LT Pro Bold", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue LT Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		    color: #fff;
		    font-weight: 600;
		    font-stretch: normal; /* default value. No font stretching */
		    line-height: 1em;
		}
		.brand p {
		    color: #888;
		    margin-bottom: 22px;
		}
		.logo {
			text-align: center;
			width: 450px;
			height: auto;
		}
		.logo img {
			width: 450px;
			height: auto;
			*background-color: rgba(255,255,255,1);
			*border-radius: 0px 0px 10px 10px;
			*border: solid 1px #fff;
			-webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .6));
		}

		.reseau a {
			background: 0 !important;
			border: 0 !important;
			box-shadow: none !important;
		}
		.reseau img {
			width: 45px;
			height: 45px;
			/* -webkit-filter: drop-shadow(0px 0px 2px rgba(3, 3, 3, .4)); */
			margin: 5px;
			/*opacity: .8;*/
			background-color: rgba(0,0,0,.85);
			border-radius: 50%;
			*border: solid 1px #fff;
			/* -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, .9)); */
			transition: transform .2s; /* Animation */
			box-shadow: 0px 0px 5px black;
			*filter: brightness(0%);
		}
		.reseau img:hover {
			transform: scale(1.3);
		}

	/* Search form */

	.search-bar {
		position: absolute;
		right: 13px;
		top: 12px;
	}
		.search-bar .field {
			margin: 0;
			padding: 0;
		}
		.search-bar form input.text {
		    width: 155px;
		    padding: 5px 34px 5px 15px;
		    color: #888;
		    margin: 0;
		    border: none;
		    border-radius: 14px;
		    background: #fff;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    right: 5px;
		    top: 0;
		    cursor: pointer;
		    border: none;
		    padding: 5px;
		    background: none;
		    font-family: 'WebSymbolsRegular';
		    color: #848484;
			border-radius: 0;
			margin: 0;
		}
		.search-bar form input.active,
		.search-bar form input.action:hover {
		    color: #000;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}



/* NAVIGATION */

	/* Primary navigation */
	.header .inner .unit {
		position: relative; /* used to position the main navigation */
	}
	.header .primary ul {
		*position:absolute;
		*bottom:0;
		*right:0; /* positions the main navigation */
		text-align: center;
		*background-color: rgba(0,0,0,.2);
		*padding-top: 20px;
	}
	.header .primary li {
	    *float: left;
	    padding-bottom: 14px;
	    margin: 0 5px;
	    position: relative;
		white-space: nowrap; /* forces text to never wrap onto a second line */
		*display: inline-block;
		display: inline-flex;
		vertical-align: middle;
	}
	.header .primary li a {
	    color: #888;
	    font-size: 15px;
	    font-family: Helvetica, Arial, sans-serif;
	    *padding: 6px 8px;
	    font-weight: bold;
		display: block;
		*background-color:rgba(255,61,1,.8);
		*padding: 5px;
		border-radius: 50%;
		*border: 2px solid #fff;
		*box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	}

	.header .primary li a:hover {
	    color: #fff;
	}
	.header .primary li.section a,
	.header .primary li.current a {
	    color: #fff;
	}
	/*
	.header .primary li.section:after,
	.header .primary li.current:after {
	    content: '}';
	    display: block;
	    position: absolute;
	    left: 50%;
	    margin-left: -7px;
	    bottom: -7px;
	    font-family: 'WebSymbolsRegular';
	    font-size: 30px;
	    color: #fff;
	    text-align: center;
	    line-height: 20px;
	}
	*/
	/* Tablet Navigation */
	/* When navigation and logo overlap tablet-nav is initialized */
	.tablet-nav .brand p {
	    margin-bottom: 0;
	}
	.tablet-nav .header .inner {
	    *padding-top: 20px;
	}
	.tablet-nav .header .primary ul {
	    *float: left;
	    clear: both;
	    position: relative;
	    *margin: 20px 0 0 -13px;
	    white-space: nowrap;
	    right: auto; /* resets the right property value that is set for the desktop site */
	}
		.tablet-nav .header .primary ul li {
		    white-space: nowrap;
		}
			.tablet-nav .header .primary ul li a { /* there is no hover on touch devices so no transition on hover is necessary */
			    -moz-transition: none;
			    -webkit-transition: none;
			    transition: none;
			}
	.tablet-nav .footer .right {
	    float: left;
	    width: 100%;
	}

	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #e5e5e5;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #e5e5e5;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow {
			    color: #b80000;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 2px;
			    top: 7px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 6px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		    font-size: 11px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;
		    font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
		}
		.main .secondary li .text {
		    padding-left: 28px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #b80000;
			background-color: #EDEDED;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #b80000;
		}




/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
	transition: color 0.2s;
	outline-style: none;
}
.footer a.brand { color: #333; margin-left: 0; }
.footer a.brand:hover { color: #B80000; }
body h1 span.amp {
    font-family: Baskerville,"Goudy Old Style","Palatino","Book Antiqua",Georgia;
    font-style: italic;
}


/* FOOTER */
.footer {
	color: #000;
    *background: rgb(255, 22, 0);
    padding: 50px 0;
	font-size: 13px;
	font-weight: lighter !important;
	line-height: 18px;
	height:250px;
}
	.footer-center {
		position: relative;
		display: flex;
		*left: 25px;
		*right: 25px;
		width: 100%;
	}
	.footer .bloc {
		width: 270px;
		text-align: center;
		padding-top: 40px;
		font-size: 20px;
		line-height: 28px;
	}
	.footer-logo {
		text-align: right;
		border-right: solid 2px #000;
		padding-right: 45px;
		width: 420px !important;
	}
	.footer-logo img {
		width: 250px;
		height: auto;
		border-bottom: solid 2px #000;
		padding-bottom: 25px;
	}
	.footer .tel {
		color: #000;
		/* border-top: solid 2px #000; */
		font-size: 33px;
		font-weight: bolder;
		line-height: 58px;
		*letter-spacing: -.8px;
		/* top: 10px; */
		font-family: Impact;
	}
	.footer .phone {
		font-family: 'WebSymbolsRegular';
		font-size: 38px;
	}
	.footer .mail {
		font-family: 'Arial';
		font-size: 21px;
		line-height: 42px;
	}
	.footer .geo {
		font-family: 'WebSymbolsRegular';
		font-size: 38px;
		margin-bottom: 25px;
	}

	.footer-text {
		text-align: center;
		padding-top: 50px;
	}

	.footer .primary .nav-open-button {
	    display: none; /* the footer includes the primary nav include - this makes sure the nav open close button doesn't show up */
	}

/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
	/*
	.shadow {
		filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .5));
		-webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .5));
		-moz-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .5));
	}
*/
	/* currently no Hompage specific styles - feel free to add your own */
	.contenu-markpage-list {
		display: none;
	}
	.contenu-markpage-list-show {
		display: block !important;
	}
/*
	#e25 {
		display: block;
	}
*/
	/* home-banner */
	#e18 {
		*z-index:-1;
		*margin-bottom: 55px;
	}
	#e18 .banner-element__content h2 {
		color: white;
		font-size: xx-large;
	}
	#e18 .banner-element__content P {
		color: white;
		font-size: large;
	}
	#e18 .banner-element__image {
		*background-color:#eee;
		display:-webkit-box;
		display:-webkit-flex;
		display:flex;
		-webkit-box-flex:1;
		-webkit-flex-grow:1;
		flex-grow:1;
		height:auto}
	#e18 .banner-element__image img {
		border:0;
		-o-object-fit:cover;
		object-fit:cover;
		-o-object-position: center top;
		object-position: center top;
		width:100%;
		*margin-bottom: 100px;
		*margin-top: 50px;
		*height: 779px;
		*filter: sepia(1);
	}

	/* markpage */
	#e10 .list-element__container {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#e10.markpage {
		position: absolute;
		z-index: 10;
		left: 0;
		right: 0;
		top: 250px;
	}
	/* filtre sur toute la zone markpage */
	#e10 .list-element__container .shadow {
		position: relative;
		filter: drop-shadow(0px 7px 7px rgba(0, 0, 0, .9));
		-webkit-filter: drop-shadow(0px 7px 7px rgba(0, 0, 0, .9));
		-moz-filter: drop-shadow(0px 7px 7px rgba(0, 0, 0, .9));
	}
	#e10 .list-element__container .shadow:hover {
		z-index: 9998;
	}
	#e10 .list-element__container .element {
		position: relative;
		width: 200px;
		display: inline-block;
		margin-left: 15px;
		margin-right: 15px;
		text-align: center;
		*background-color: red;
		background-size: contain;
		clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 80%,0 80%);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 80%,0 80%);
		transition-property: transform, clip-path, opacity, filter;
		transition-duration: .3s;
		transition-timing-function: ease-in-out;
		opacity:85%;
		z-index: 2;
		border: 1px solid #fff;
		filter: gray; /* IE6-9 */
  		-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  		filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
	}
	#e10 .list-element__container .element img  {
		width: 70%;
		height: auto;
	}
	#e10 .list-element__container .element:hover {
		opacity:100%;
		clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 90%,0 80%);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 90%,0 80%);
		cursor: pointer;
		transform: scale(1.3);
		filter: none; /* IE6-9 */
  		-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
  		filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
		z-index: 12;
	}
	#e10 .list-element__container .element:hover > .shadow:hover {
		z-index: 11;
	}
	#e10 .content-element__content {
		margin-top: 270px;
		background-color: white;
		height: 300px;
		padding-top: 30px;
	}
	#e10 .content-element__content h2 {
		font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
		font-size: 28px;
	}

	.paintball {
		background-image: url('../images/paintball-markpage.jpg');
	}
	.paintball h2 {
		color: #E53D25;
	}
	.shootandgame {
		background-image: url('../images/shoot-markpage.jpg');
	}
	.shootandgame h2 {
		color: #2D5488;
	}
	.palaisdesjeux {
		background-image: url('../images/jeux-bois-markpage.jpeg');
	}
	.palaisdesjeux h2 {
		color: #714a28;
	}
	.jeuxgonflables {
		background-image: url('../images/gonflable-markpage.jpeg');
	}
	.jeuxgonflables h2 {
		color: #FF3D01;
	}
	.zoneaventure {
		background-image: url('../images/aventure-markpage.jpg');
	}
	.zoneaventure h2 {
		color: #3B9736;
	}

	.evasion-content {
		height: 1200px;
	}
	.evasion-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.shoot-content {
		height: 960px;
		z-index:9;
	}
	.shoot-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.shoot-content h2 {
		background-color: #2D5488 !important;
	}

	#e34 {
		max-width: 1050px;
		margin: 0 auto;
	}
	.jeux-content {
		height: 920px;
		z-index:9;
	}
	.jeux-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.jeux-content h2 {
		background-color: #714a28 !important;
	}
	.aventure-content {
		height: 1040px;
		z-index:9;
	}
	.aventure-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.aventure-content h2 {
		background-color: #3B9736 !important;
	}
	.paintball-content {
		height: 1080px;
		z-index:9;
	}
	.paintball-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.paintball-content h2 {
		background-color: #E53D25 !important;
	}
	.gonflable-content {
		height: 800px;
		z-index:9;
	}
	.gonflable-content img {
		margin-top: 80px;
		width: 58%;
		float: right;
		height: auto;
	}
	.gonflable-content h2 {
		background-color: #FF3D01 !important;
	}

	/* contenu-markpage */ 
	#e20 .banner-element__image {
		width: 100%;
	}
	#e20 .banner-element__content h2 {
		text-align: left;
		padding: 25px;
		background-color: rgba(159, 192, 67,.9);
		*background-color: rgba(255, 22, 0, .9);

		/* margin-top: 25px; */
		color: white;
		font-weight: bold;
		/* margin-left: 50px; */
		/* margin-right: 50px; */
		*width: 450px;
		font-family: impact;
		font-size: 38px;
		line-height: 38px;
		opacity: .9;
	}
	#e20 .banner-element__content table {
		background-color: rgba(255,255,255, .9);
		font-family: sans-serif;
		*height: 300px;
		*padding-top: 30px;
		margin-top: 130px;
		margin-bottom: 50px;
		*width: 80%;
		margin-left: 50px;
		margin-right: 340px;
		box-shadow: 0px 5px 5px rgba(0,0,0,.5);
	}
	/*
	#e20 .banner-element__content table h3 {
		text-align: center;
		padding: 15px;
		background-color: red;
		margin-top: 25px;
		color: white;
		font-weight: bold;
		margin-left: 50px;
		margin-right: 50px;
	}
	*/
	#e20 .banner-element__content table p {
		*padding:15px;
		text-align: justify;
		text-justify: inter-word;
	}
	#e20.contenu-markpage {
		margin-bottom: 35px;
	}
	#e25.contenu-markpage-list {
		position: relative;
	}

	/* plaquettepdf */
	.plaquettepdf {
		position: absolute;
		right: 5%;
		top: 660px;
		width: 450px;
	}
	.plaquettepdf img {
		width: 400px;
		height: auto;
	}
	.boutton-pdf {
		*background-color:rgba(255, 22, 0, .9);
		background-color: rgba(159, 192, 67,.9);
		border-radius: 5px;
		padding: 10px;
		text-align: center;
		color:#fff;
	}
	.boutton-pdf a {
		color:#fff;
	}
	.boutton-pdf a:hover {
		color:#fff;
		border-bottom: 1px dashed #fff;
	}

	.punchline {
		width: 100%;
		margin-top: -350px;
		text-align: right;
		margin-bottom: 350px;
	}
	#e54.punchline {
		width: 100%;
		margin-top: -250px;
		text-align: right;
		margin-bottom: 350px;
	}
	#e55.punchline {
		width: 100%;
		margin-top: -250px;
		text-align: right;
		margin-bottom: 350px;
	}
	#e56.punchline {
		width: 100%;
		margin-top: -200px;
		text-align: right;
		margin-bottom: 200px;
	}
	#e57.punchline {
		width: 100%;
		margin-top: -350px;
		text-align: right;
		margin-bottom: 250px;
	}
	#e59.punchline {
		width: 100%;
		margin-top: -50px;
		text-align: right;
		margin-bottom: 100px;
	}
	.punchline div {
		padding-right: 100px;;
	}
	.punchline div p {
		font-family: Tangerine, Arial, Helvetica, sans-serif;
		font-size: 62px !important;
		font-weight: bolder !important;
		line-height: 60px !important;
	}

	/* events */
	.events {
		*background-color: rgba(255,22,0,1);
		background-color: rgba(159, 192, 67,.9);
		padding-bottom: 25px;
	}
	.events .element {
		background-color: white;
		width: 250px;
		*height: 450px;
		height: auto;
		margin: 45px;
		padding: 8px;
		display: inline-block;
		vertical-align: top;
	}
		.events .element .plus {
		    background-color: rgba(244, 7, 7, 0.9);
            color: white;
            padding: 10px;
            width: 100%;
              display: block;
              margin: -10px;
              text-align: center;
		}
	.events .list-element__container {
		text-align: center;
	}
	.events .banner-element__content {
		position: relative;
		top: 0px;
		width: 100%;
	}
	.events h2 {
		text-align: left;
		padding: 25px;
		margin: 0;
		color: white;
		font-weight: bold;
		font-family: impact;
		font-size: 38px;
		line-height: 38px;
	}

	/* EVENTS CONTENU */
	.events p {
		margin: 0 !important;
		padding: 5px;
		text-align: justify;
		text-justify: inter-word;
		font-size: 16px;
		line-height: 20px;

	}
	.events img {
		width: 250px;
		max-height: 180px;
		*margin-bottom: 0 !important;
		object-fit: cover;
		object-position: top;
	}

	/* contactez-nous */
	#e4 {
		background-image: url('../images/carte-tresor.jpg');
		background-size: 1350px 850px;
		background-position: center 110px;
		background-repeat: no-repeat;
		-webkit-text-size-adjust: none;
		*text-align: center;
		width: 100%;
		*margin: 0 auto;
		padding-top: 150px;
		background-color: black;
		/* position: fixed; */
		padding-bottom: 150px;
	}
	#e4 .form-element__form {
		width: 500px;
		margin: 0 auto;
		font-size: 34px;
		line-height: 20px;
		font-family: Tangerine, Arial, Helvetica, sans-serif;
		/* font-weight: lighter; */
		background-color: rgba(255,255,255,.4);
		padding: 50px;
	}
	#e4 .form-element__form h2 {
		font-size: 62px;
		line-height: 54px;
		font-family: Tangerine, Arial, Helvetica, sans-serif;
		font-weight: bolder;
	}
	#e4 .error-container, #e4 .error, #e4 .validation {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 16px;
	}
	#e4 #uff {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 16px;
	}

	/* clients */
	#e50 {
		margin-top: 100px;
		background: rgba(225,225,225,1);
	}
	#e50 table {
		width: 80%;
		margin: 0 auto;
	}
	#e50 table tr td {
		padding: 0px;
		vertical-align: center;
	}
	#e50 table tr td img {
		width: 35%;
		height: auto;
		filter: drop-shadow(1px 1px 0px #000);
	}
	#e50 h2 {
		font-size: 28px;
		line-height: 84px;
		font-family: sans-serif;
		font-weight: lighter;
		text-align: center;
		*color: rgb(255,22,0);
	}
	#e50 p {
		margin: 0 !important;
	}
	
	#e62 {
	padding: 15%;
	}

	#e63 {
		padding: 50px 20%;
		background-color: white;
	}

/* annonce */
#close {
	font-size: 50px;
	position: absolute;
	right: 50px;
	top: 50px;
	color: #fff;
	cursor: pointer;
}
#annonce-com {
	display:none;
	position: fixed;
	background-color: rgba(0, 0, 0, .6);
	z-index: 999;
	left: 0;
	right: 0;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 25px;
	background-position: center;
	background-size: cover;
	height: 400%;
}
#annonce-com img {
	height: auto;
	width: 30%;
	border: 1px solid #fff;
	transition: all .2s ease-in-out;
	margin-bottom: 20px;
}

#annonce-com img:hover {
	transform: scale(1.1);
	box-shadow: 0px 1px 12px #000;
}

/* page video */
#e66 {
	padding: 200px 10% 0 10%;
	text-align: center;
}
#e67 {
	padding: 20px 10% 20px 10%;
	text-align: center;
}
#e68 {
	padding: 20px 10% 20px 10%;
	text-align: center;
}
	/* page telechargement */
	#e70 {
		padding: 220px 5px 0 5px;
		text-align: center;
	}
	#e69 {
		padding: 20px 5px 50px 5px;
		text-align: center;
		font-size: 28px;
	}
	#e71 {
		padding: 20px 5px 120px 5px;
		text-align: center;
		font-size: 28px;
	}

/* Spinner */
#loader-wrapper {
	display: none;
	background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader-wrapper span {
position: absolute;
margin-top: 250px;
color: white;
font-size: 18px;
text-align: center;
width: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}


/* photoswipegallery */
figure a:hover {
	border: none !important;
}
figure {
	display: inline-block;
	padding: 15px;
	vertical-align: middle;
}

figure img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}

.pswp__bg {
	opacity: .8 !important;
}
.pswp {
	*display: block !important;
}

.galery {
	margin-bottom: 85px;
	margin-top: 85px;
}

/* EFFETS */
/**********/

/* circle */
/*
.ih-item a:hover {
  text-decoration: none;
}
.ih-item img {
  width: 100%;
  height: 100%;
}

.ih-item.circle {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}
.ih-item.circle .img {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.ih-item.circle.info {
  background: #333333;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.circle .img:before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
z-index: 9;
}
.ih-item.circle .img img {
  border-radius: 50%;
}
.ih-item.circle .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
width: 220px;
height: 220px;
margin: 25px;
}
.img {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.circle .info {
  *background: #333333;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.circle .info h3 {
  color: #fff;
  text-transform: uppercase;
  position: relative;
  *letter-spacing: 2px;
  font-size: 21px;
  *margin: 0 30px;
  padding: 80px 0 0 0;
  *height: 50px;
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
}
.ih-item.circle .info p {
  color: #fff;
  padding: 10px 5px;
  font-style: italic;
  margin: 0 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.ih-item.circle.bottom_to_top .info {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.circle.bottom_to_top a:hover .img {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ih-item.circle.bottom_to_top a:hover .info {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
*/

/* Square */
/**********/

.ih-item.square {
  position: relative;
  *width: 316px;
  *height: 216px;
  *border: 8px solid #fff;
  *box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.ih-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ih-item.square {
  overflow: hidden;
}
.ih-item.square.colored .info {
  *background: #1a4a72;
  background: rgba(159, 192, 67,.6);
}
.ih-item.square.colored .info h3 {
	background: rgba(159, 192, 67,.9);
	font-family: Arial, Helvetica, sans-serif;
}
.ih-item.square .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.ih-item.square .info {
  background: #333333;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  *padding: 10px;
  background: #111111;
  margin: 25% 0 0 0;
  -webkit-transform: scale(4);
  -moz-transform: scale(4);
  -ms-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
  -webkit-transition: all 0.35s 0.1s ease-in-out;
  -moz-transition: all 0.35s 0.1s ease-in-out;
  transition: all 0.35s 0.1s ease-in-out;
}
.ih-item.square .info p {
  font-style: italic;
  font-size: 15px;
  position: relative;
  color: #fff;
  padding: 20px 20px 20px;
  text-align: center;
  -webkit-transform: scale(5);
  -moz-transform: scale(5);
  -ms-transform: scale(5);
  -o-transform: scale(5);
  transform: scale(5);
  -webkit-transition: all 0.35s 0.3s linear;
  -moz-transition: all 0.35s 0.3s linear;
  transition: all 0.35s 0.3s linear;
}
.ih-item.square a:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ih-item.square a:hover .info {
  visibility: visible;
  opacity: 1;
}
.ih-item.square a:hover .info h3,
.ih-item.square a:hover .info p {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

/* BREAKPOINT 960px */

@media only screen and (max-width: 960px) {

	/*
	.mask-mobile {
		display: block !important;
	}
	*/
	.content img {
	    *max-width: 97%;
	    *height: auto;
	}
	.header .primary ul {
	    *margin-left: -12px;
	    -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
	}
	#annonce-com img {
		width: 95%;
	}
	#close {
		font-size: 30px;
		right: 30px;
		top: 30px;
	}
	/* page video */
	#e66 {
		padding: 120px 5px 0 5px;
		text-align: center;
	}
	#e67 {
		padding: 20px 5px 0 5px;
	}
	#e67 iframe {
		width: 100% !important;
	}
	#e68 {
		padding: 20px 5px 0 5px;
	}
	#e68 div p a img {
		width: 100% !important;
		height:auto;
	}

}

/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
	body {
	    max-width: 640px;
	}
	#media-query-trigger {
	    visibility: visible;
	}

	/* Navigation*/
	.logo { width: 60%;}
	.logo img { width: 100%;}

	/* Main Content */
	.main {
	    *padding: 20px 0 45px; /* decrease padding so that more content can fit on screen */
	}
	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	    margin-bottom: 30px;
	}
		.typography h1 { /* decrease size of page heading due to smaller screen */
		    font-size: 30px;
			line-height:35px;
		    margin-bottom: 15px;
		    padding-bottom: 10px;
		}
		.typography p {
		    font-size: 14px;
		    line-height: 23px;
		}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	.main .inner {
	    *padding: 0 22px;
	}
	/* Secondry Nav */

	/* markpage */
	#e10.markpage {
		position: relative;
		top: -50px !important;
	}
	#e10 .list-element__container {
		display: grid;
		align-items: center;
		justify-content: center;
		grid-auto-columns: max-content;
		grid-template-columns: 90%;
	}
	#e10 .content-element__content {
		margin-top: 0;
		height: 0;
		padding-top: 5px;
		width: 50%;
	}
	#e10 .list-element__container .element {
		width: 100%;
		height: 250px;
		display: 0;
		margin-left: 0;
		margin-right: 0;
		opacity: 1;
		background-color: #fff !important;
		background-repeat: no-repeat;
		background-position: right;
		background-size: 160px 100%;
		filter: 0;
		-webkit-filter: grayscale(0);
		filter: grayscale(0);
	}
	#e10 .list-element__container .element:hover {
		transform: scale(1.1);
	}

	.banner-element__content {
		width: 100% !important;
	}

	.banner-element__content table {
		margin-bottom: 0px !important;
		margin-left: 10px !important;
		margin-right: 10px !important;
		margin-top: 135px !important;
	}
	.punchline {
		margin-top: 100px !important;
		margin-bottom: 0;
	}
	#e54.punchline {
		margin-top: 250px !important;
		margin-bottom: 0;
	}
	#e55.punchline {
		margin-top: 400px !important;
		margin-bottom: 0;
	}
	#e56.punchline {
		margin-top: 250px !important;
		margin-bottom: 0;
	}
	#e57.punchline {
		margin-top: 50px !important;
		margin-bottom: 0;
	}
	#e58.punchline {
		margin-top: 250px !important;
		margin-bottom: 0;
	}
	#e59.punchline {
		margin-top: 0px !important;
		margin-bottom: 0;
	}
	
	.evasion-content img {
		margin-top: 105px;
	}
	.shoot-content img {
		margin-top: 105px;
	}
	.jeux-content img {
		margin-top: 105px;
	}
	.aventure-content img {
		margin-top: 105px;
	}
	.paintball-content img {
		margin-top: 105px;
	}
	.gonflable-content img {
		margin-top: 105px;
	}
	.plaquettepdf {
		position: relative;
		right: 0;
		top: 50px;
		width: 100%;
	}
	#e50 table tr td img {
		width: 85%;
	}

	/* Footer */
	.footer .right {
	    float: left;
	    width: 100%;
	}
	.footer {
		height: 100%;
	}
	.footer-center {
		display: block;
		width: 100%;
		text-align: center;
	}
	.footer-logo {
		text-align: center;
		border-right: 0;
		padding-right: 0;
		width: 100%;
	}
	.footer .bloc {
		width: 100%;
	}
	.footer-adress {
		font-weight: 600;
	}
	.footer-text {
		margin-top: 200px;
		font-weight: 300;
	}
	
	/* contact */
	#e4 .form-element__form {
		width: auto;
	}
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}
