/* CSS Document */
* {
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}

html,body {
	width: 100%;
	height: 100vh;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding:0;
}

/**________________________________ BACKGROUND ___________________________________________*/

.filmOpaque {
	position:fixed;
	z-index:-3;
	background-color: rgba(255,255,255,0.1) ;
	background-size:cover;
	width:100%;
	min-height:100vh;
	overflow: hidden;
}

.Accueil {
	position: fixed;
	z-index: -2;
	width:100%;
	min-height:100vh;
	background: rgb(216,209,209);
	background : url("images/fondHD.jpg");
	background-size: cover;
	overflow-x: hidden;
}

.Out {
	position: fixed;
	z-index: -2;
	width:100%;
	min-height:100vh;
/*	background: rgb(216,209,209);*/
	background : url("images/fondOut.jpg");
	background-size: cover;
	overflow-x: hidden;
}

.By {
	position: fixed;
	z-index: -2;
	width:100%;
	min-height:100vh;
	background: rgb(216,209,209);
	background : url("images/fondBy.jpg");
	background-size: cover;
	overflow-x: hidden;
}

.Go {
	position: fixed;
	z-index: -2;
	width:100%;
	min-height:100vh;
	background: rgb(216,209,209);
	background : url("images/fondGo.jpg");
	background-size: cover;
	overflow-x: hidden;
}

.coverBy{
	position:fixed;
	z-index:-1;
	background-color: rgba(255,255,255,0.1) ;
	background : url("images/cercleBy.png") no-repeat bottom center;
	background-size:cover;
	width:100%;
	min-height:100vh;
	overflow: hidden;
}

.coverGo {
	position:fixed;
	z-index:-1;
	background-color: rgba(255,255,255,0.1) ;
	background : url("images/cercleGo.png") no-repeat bottom center;
	background-size:cover;
	width:100%;
	min-height:100vh;
	overflow: hidden;
}


/**________________________________ COULEURS  ___________________________________________*/

.bleuClair {color:#438D8D;}
.gris {	color:#3e4041;}
.blanc {color:#FFF;}

.coloreau {	color:#00c5be!important;}
.bgeau {background-color: #00c5be!important;}
.colorneige {color:#00A19A!important;}
.bgneige {background-color:#00A19A!important;}
.colorair {color:#90daff!important;}
.bgair {background-color:#90daff!important;}
.colorterre {color:#473700!important;}
.bgterre {background-color:#473700!important;}
.colordecouverte {color:#ffc800!important;}
.bgdecouverte {background-color:#ffc800!important;}

.colordecouv {color:#ffc800!important;}
.bgdecouv {background-color:#ffc800!important;}

.byRivage {color:#9e672c!important;}
.bgByRivage {background-color:#9e672c!important;}

.colorby{background-color:#9e672c!important;
		color:#FFF;}

/**________________________________ CHANGEMENTS FORME  ___________________________________________*/

.rot30 {transform: rotate(30deg);}
.rot60 {transform: rotate(60deg);}



/**________________________________ LIENS & BOUTONS ___________________________________________*/

a {
	color:#438D8D;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

li {
	list-style-type: none;
}

.rivage {
	width:130px;
	background-color: #3e4041;
	border-radius : 2em;
	margin:1em auto;
	display: flex;
	align-items: center;
}
.rivage img {
	height:30px;
}
.btnRivage {
	color:#FFF;
	font-weight: 200;
	font-size: 1.2em;
}

a.btnValid {
	border:none;
	border-radius:0.2em;
	color:#FFF;
	font-size: 1em;
	font-weight: 100;
	padding:0.4em;
/*	background-color: #3e4041;*/

}
.marque {
	position: absolute;
}

.bouton {
	margin-bottom: 4em;
}

/**________________________________ LOGOS & SYMBOLES _________________________________________*/

.logoAccueil img {
	width:200px;
	margin:0 2em 0 0;
}

/**________________________________ TEXTES & PARAGRAPHES _________________________________________*/

.barre {
	border-left : #3e4041 solid 0.15em;
	padding-left : 2em;
	margin: 0 1em;
}

p {
	padding: 0;
	margin: 0;
	font-weight:100;
	color:#3e4041;
	font-size:0.9em;
}

h1 {
	font-weight:900;
	font-size:6em;
	padding: 0;
	margin: 0;
	color:#3e4041;
	letter-spacing: -0.05em;
	text-align: right;
}

h2 {
	font-weight:900;
	font-size:4.5em;
	padding: 0;
	margin: 0;
	transition: all 0.5s;
}

h3 {
	font-weight:100;
	font-size:1.3em;
	padding: 0;
	margin: 0;
	transition: all 0.5s;
}

h5 {
	padding: 0;
	margin: 0;
	font-size:2em;
	font-weight:100;
	color:#3e4041;
}

h6 {
	padding: 0;
	margin: 0;
	font-size:1.5em;
	font-weight:100;
	color:#3e4041;
	padding-bottom:1em;
}

.center {
	text-align: center;
}

.petitTxt {
	font-size:0.8em;
}


/**________________________________ MENU ___________________________________________*/

.conteneurMenuMobile {
	display: none;
}

.conteneurMenu {
	display: block;
	position: fixed;
	z-index: 800;
	background-color: rgba(65,141,141,0.5);
	top:0;
	width:100%;
}

nav {
	height:2.5em;
	max-width:1366px;
	width : 80%;
	position: relative;
	display: flex;
	align-items : flex-start;
	justify-content: space-around;
	padding-top:0.75em;
	margin:0 auto;
}

.elementMenu {
	position: relative;
}

.menuListe {
	display: flex;
	text-transform: uppercase;
}

.menuListe a {
	margin:0 1em;
	color:#272d2d;
	font-weight:900;
	text-decoration: none;
	transition: all 400ms ease;
}

.menuListe a:hover {
	color:#FFF;
	border-bottom: 0.2em solid #418d8d;
}

.langue {
	position: relative;
	color:#3e4041;
}

.btnContact {
	color:#FFF;
	background-color: #438D8D;
	padding:0.3em;
	margin:2em 0;
	border-radius: 0.2em;
	text-align: center;
	transition: all 0.1s;
	width:5em;
}

.btnContact span {margin:0 0.2em;}

.btnContact:hover {
	background-color: #0f5252;
}

/**________________________________ POPUP ___________________________________________*/

.popConteneurForm,.popConteneurFormGo,.popConteneurActivDM,.popConteneurFormActivite {
	Position:absolute;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	top:5%;
	left: 50%;
	transform:translate(-50%,0%);
}

.activiteDM01 {
		display: flex;	
		justify-content: center;
		align-items: center;
}

.infoDM01 {
	text-align: left;

}


.photoActiviteDM {
	border-radius : 50%;
	width:150px;
	margin:0 2em;
/*	opacity :1;*/
}

.imageMap {
	position:absolute;
	z-index: 100;
	width:200px;
	top:0;
	margin:0 auto;
	border-radius : 50%;
	opacity: 0.5;
}

.sortie,.sortiePop,.sortieGo {
	float:right;
	margin:-1em 0 0 0;
	padding:0;
	font-size: 1.5em;
	font-weight:900;
	color:#3e4041;
	transition: all 0.5s;
}

.sortie:hover,.sortiePop:hover.sortieGo:hover {
	
	transform:scale(1.5, 1.5) rotate(90deg);
}

.infoPopUp {
	margin:1em 0;
	background-color: #438D8D;
	padding:0.5em;
	color:#FFF;
	border-radius: 0.2em;
}


/**________________________________ SECTIONS ___________________________________________*/

.conteneur {
	position:relative;
	display:flex;
	width : 100%;
	max-width: 1366px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.row {
	flex-direction: row;
	flex-wrap: wrap;
}

.top {
	align-items: flex-start;
}

/**________________________________ FORMULAIRES ___________________________________________*/

.formContact, .formContactGo, .formContactActivite, .popActivInfo,.popUpInfo {
	background-color: rgba(255,255,255, 0.9);
	padding:2em;
	text-align: center;
	border-radius: 0.2em;
	box-shadow: 0.2em 0.2em 2em 0.001em #000;
	opacity:0;
	transform:scale(0);
}

.tailleDemi {
	width:49%;
}

.tailleTiers {
	width:32%;
}
.tailleQuart {
	width:24%;
}

/*	------------CHAMP DE RECHERCHE----------*/

.champRecherche {
	position: relative;
	background-color: rgba(255,255,255,0.8);
	top:-0.5em;
/*	height:10em;*/
	border-radius: 0.2em;
	padding:0.3em;
}

.champRecherche input,.champRecherche input:focus {
	border:none;
	background: transparent;
}

.champRecherche input::-webkit-input-placeholder {
	text-align: center;
}

#suggest {
	position: absolute;
	z-index: 3;
	left:50%;
	transform: translateX(-50%);
	margin:1em auto; 
    background-color: rgba(255,255,255,0.8);
    padding:0.5em;
	width:400px;
	border-radius: 0.5em;
/*	border-bottom: solid #3e4041 0.1em;*/
}

#suggest li {
    list-style-type:none;
	transition: all ease 1s;
	line-height: 1.5em;
}

#suggest li a:hover {
    color:#3e4041;
}

.symboleActiv {
	width:5%;
}

.contactForm {
	font-family: 'Roboto', sans-serif;
	margin:1em 0;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.conteneurChamp {
	box-sizing: border-box;
	width:100%;
	margin : 0 0.1em;
}

.conteneurChamp input,select,textarea {
	border:solid 1px #AAAAAA;
	padding:0.6em;
	font:10pt verdana;
	color:#438D8D;
	outline:none;
	border-radius:0.3em;

}

.conteneurChamp input {
	width:100%;
}

.conteneurChamp input,select {
	height: 3em;
}

.champ {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: baseline;
	margin:0.2em 0;
}

.label {
	display: block;
	font-size: 0.8em;
	text-align: left;
	margin:0;
}

.btnConfirm {
	border:none;
	background-color: #438D8D;
	width:10em;
	border-radius:0.2em;
	color:#FFF;
	font-size: 1em;
	font-weight: 100;
	padding:0.4em;
	margin: 1em auto;
	cursor: pointer;
	flex:0 0 50%;
}
a.btnConfirm {
	
	margin:0 auto;
	margin-top:1em;
	transition: all 0.5s;
}
a:hover.btnConfirm {
	background-color: #3e4041;
	cursor: pointer;
}

.erreurChamp {
	border:solid crimson 0.1em;
	background-color: #AC2C2F;
	width:100%;
	border-radius:0.2em;
	color:#FFF;
	font-size: 0.8em;
	font-weight: 100;
	padding:0.4em;
	margin: 0.2em auto;

}

.messageValid {
	border:solid #73DF66 0.1em;
	background-color: #338A34;
	width:100%;
	border-radius:0.2em;
	color:#FFF;
	font-size: 1em;
	font-weight: 100;
	padding:0.4em;
	margin: 0.2em auto;

}


/**________________________________ FOOTER ___________________________________________*/


.footer {
	position:fixed;
	text-align: center;
/*	min-width: 100vh;*/
	width:100%;
	bottom:0;
	font-size:0.7em;
	padding:0.5em 0;
	background-color: rgba(255,255,255,0.5);
/*
	left: 50%;
	transform:translate(-50%);
*/
}