@charset "utf-8";
/* CSS Document */

@font-face {
font-family: 'River';
src: url('typo/Blank-River.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('typo/Roboto.woff2') format('woff2 supports variations'),
       url('typo/Roboto.woff2') format('woff2-variations');
  font-weight: 100 900;  /* active toute la plage de poids */
  font-style: normal;
  font-display: swap;
}

body,html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Roboto';
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.2em;
	background-color: #000000;
}

:root{
    --decalBase: 30px; /* var(--decalBase); */
}

/* TYPO ---------------------- */
p{ margin: 0; padding: 0; }
h1,h2,h3{ margin: 0; padding: 0; font-weight: normal; }

.titreH1{
	font-size: 2.5em;
	line-height: normal;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap:5px;
	margin-bottom: 15px;
}
.titreH1.centrer{ align-items: center; }
.titreH1 p{
	font-family: 'River';
	color: #ffffff;
	border-bottom: 1px solid #eec600;
}
.titreH1 p::first-letter{ color:#eec600; }
.sstitreH1{
	font-family: 'Roboto';
	font-size: 0.4em;
	color: #eec600;
}

.titreH1.negatif p{ color: #000000; border-bottom: 1px solid #ffffff; }
.titreH1.negatif p::first-letter{ color:#ffffff; }
.titreH1.negatif .sstitreH1{ color:#000000; }

.titreH1.clair p{ color: #000000; border-bottom: 1px solid #eec600; }
.titreH1.clair p::first-letter{ color:#eec600; }
.titreH1.clair .sstitreH1{ color:#eec600; }

.titreH3{
	display: inline-block;
	font-family: 'Roboto';
	font-size: 1.2em;
	font-weight: bold;
	color: #eec600;
	border-bottom: 1px solid #eec600;
	margin-bottom: 15px;
	padding-bottom: 5px;
}

.mini{ font-size: 0.9em; }
.grand{ font-size: 1.2em; }

.jaune{color: #eec600; }
.blanc{ color: #ffffff; }
.grisf{ color: #222222; }
.gris{ color: #666666; }
.noir{ color: #000000; }
a{ text-decoration: none; color: inherit; }

.listeStd{
	margin: 0;
	padding: 0;
	list-style: none;
}
.listeStd li{
	padding:2px 0 2px 20px;
	position: relative;
}
.listeStd li::before{
	content:'';
	width: 10px;
	height: 10px;
	border: 1px solid #eec600;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* --------------------------- */ 

/* IMAGE ------------------------------------ */

.imMW{ max-width: 100%; height: auto; display: inline-block; }
.imMH{ max-height: 100%; width: auto; display: inline-block; }

.imCover{ width: 100%; height: 100%; object-fit: cover; }
.imContain{ width: 100%; height: 100%; object-fit: contain; }

/* ---------------------------------------- */

/* BOUTONS -------------------------------- */
.boutonTransparent{
	width: 100%;
	height: 100%;
	position: absolute;
	float: left;
	top: 0;
	left: 0;
	z-index: 5;
}
.nv-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.boutonPlus{
	min-height: 30px;
	border: 1px solid #eec600;
	border-radius: 8px;
	padding: 8px 16px;
	color: #eec600;
	text-transform: uppercase;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all 0.5s ease;
	margin: 10px 0;
}
.boutonPlus p{ z-index: 2; }
.boutonPlus::Before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(240,198,0,0.5)
	);
	transform: rotate(-45deg) translateY(-50%);
	transition: all 0.5s ease;
	opacity: 0;
}
.boutonPlus:hover{
	background-color: #000000;
	transform: scale(1.05);
	box-shadow: 0 0 8px rgba(240,198,0,0.5);
}
.boutonPlus:hover::Before{
	opacity: 1;
	transform: rotate(-45deg) translateY(150%);
}

.boutonPlus.negatif{ border: 1px solid #000000; color: #000000; }
.boutonPlus.negatif:hover{ background-color: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.9);}
.boutonPlus.negatif::Before{
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(0,0,0,0.3)
	);
}


.boutonResa{
	min-height: 30px;
	border: 1px solid #eec600;
	border-radius: 8px;
	padding: 8px 16px;
	color: #eec600;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all 0.5s ease;
	margin: 10px 0;
	gap:5px;
}
.boutonResa p{ z-index: 2; }
.boutonResa::Before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(240,198,0,0.5)
	);
	transform: rotate(-45deg) translateY(-50%);
	transition: all 0.5s ease;
	opacity: 0;
}
.boutonResa:hover{
	background-color: #000000;
	transform: scale(1.05);
	box-shadow: 0 0 8px rgba(240,198,0,0.5);
}
.boutonResa:hover::Before{
	opacity: 1;
	transform: rotate(-45deg) translateY(150%);
}

.boutonResa.negatif{ border: 1px solid #000000; color: #000000; }
.boutonResa.negatif:hover{ background-color: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.9);}
.boutonResa.negatif::Before{
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(0,0,0,0.3)
	);
}
.boutonResa.clair{ background-color: #000000; border:1px solid #000000; color: #ffffff; }
.boutonResa.clair:hover{ background-color: #eec600; box-shadow: 0 0 10px rgba(0,0,0,0.9);}
.boutonResa.clair::Before{
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(0,0,0,0.3)
	);
}
.boutonResa.yellow{ background-color: #eec600; border:1px solid #eec600; color: #000000; }
.boutonResa.yellow:hover{ background-color: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.5);}
.boutonResa.yellow::Before{
	background: linear-gradient(
	  0deg, 
	  transparent, 
	  transparent 30%, 
	  rgba(0,0,0,0.5)
	);
}

/* -------------------------------------- */

#Haut{
	width: 100%;
	position: relative;
	float: left;
}

.bandSup{
	width: calc(100% - 20px);
	height: 65px;
	border-bottom: 1px solid #eec600;
	position: relative;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	z-index: 2;
}
.signatureTop{
	width: 200px;
	position: relative;
}
.signatureTop img{ max-width: 100%; height: auto; display: block; }

.zoneNav{
	width: calc(100% - 250px);
	max-width: 800px;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.boutonMPrincipal{
	min-width: 50px;
	height: 100%;
	padding: 0 10px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.infoBMP{
	color: #ffffff;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}
.fdBMP{
	width: 100%;
	height: 0;
	background-color: #333333;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all 0.4s;
}
.boutonMPrincipal:hover .fdBMP{ height: 100%; }
.fdBMP.actif{ height: 100%; }

.ssMenu{
	width: 100%;
	max-height: 0;
	background-color: #eec600;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap:1px;
	position: absolute;
	top: 100%;
	z-index: 3;
	opacity: 0;
	overflow: hidden;
	transition: all 0.8s;
}
.boutonMPrincipal:hover .ssMenu{ max-height: 300px; margin-top: 0; opacity: 1; }
.boutonMSecond{
	width: calc(100% - 4px);
	min-height: 30px;
	background-color: #eec600;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 5px 0;
	border-bottom: 1px solid #ffffff;
	transition: all 0.4s;
}
.boutonMSecond p{
	width: 100%;
	font-size: 0.9em;
	text-transform: uppercase;
	text-align: center;
	color: #000000;
}
.boutonMSecond:hover{
	background-color: #ffffff;
}

.boutonRPrincipal{
	width: 40px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.caseRPrincipal{
	width: 25px;
	height: 25px;
	border-radius: 4px;
	background-color: #eec600;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.caseRPrincipal img{ max-height: 75%; width: auto; display: block; }

.bandTop{
	width: 100%;
	height: 650px;
	position: relative;
	float: left;
	border-bottom: 2px solid #eec600;
	z-index: 1;
}
.tripUn{
	width: 220px;
	height: 100%;
	background-color: #000000;
	position: relative;
	float: left;
}
.tripDeux{
	width: 400px;
	height: 100%;
	background-color: #222222;
	position: relative;
	float: left;
	margin: 0 10px;
}
.tripTrois{
	width: calc(100% - 640px);
	height: 100%;
	background-color: #666666;
	position: relative;
	float: left;
}
.carreDecoTrip{
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #000000;
	position: absolute;
	z-index: 3;
	left: -5px;
	transform: translateX(-50%);
}
.carreDecoTrip.n1{ top: 5%; }
.carreDecoTrip.n2{ top: calc(50% - 20px); }
.carreDecoTrip.n3{ bottom: 5%; }
.carreDecoTrip.n4{ top: 5%; right: -5px; left: inherit; transform: translateX(50%); }
.carreDecoTrip.n5{ top: calc(50% - 20px); right: -5px; left: inherit; transform: translateX(50%); }
.carreDecoTrip.n6{ bottom: 5%; right: -5px; left: inherit; transform: translateX(50%); }

.logoTop{
	width: 90%;
	aspect-ratio:1/1;
	background-color: #ffffff;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.logoTop img{ max-height: 90%; width: auto; display: block; }
.telTop{
	width: 90% ;
	height: 40px;
	background-color: #eec600;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:5px;
	position: absolute;
	float: left;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.txtTelTop{
	color: #000000;
	font-weight: bold;
	font-size: 1.3em;
}
.iconeTelTop{ max-height: 30px; width: auto; display: block; }
.decotripUn{
	width: 100%;
	height: 100%;
	background-image: url("img/silentete.svg");
	background-position: center bottom;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.blocAccrocheTrip{
	width: 450px;
	height: 90px;
	border-bottom-right-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #eec600;
	padding: 0 5px 0 0;
	position: absolute;
	bottom: 15%;
	left: 230px;
	z-index: 3;
}
.blocNAccrocheTrip{
	width: calc(100% - 10px);
	height: 100%;
	border-bottom-right-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #000000;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 4;
	margin-top: -5px;
	padding-left: 10px;
}	
.blocNAccrocheTrip p{
	font-weight: 300;
	font-size: 1.6em;
	line-height: 1.2em;
}

#Bas{
	width: 100%;
	position: relative;
	float: left;
	margin-top: var(--decalBase);
}
.bandBas{
	width: 100%;
	height: 35px;
	background-color: #eec600;
	color: #000000;
	padding: 5px 0;
	display: flex;
	justify-content: center;
	align-content: center;
	gap:10px;
}
.accrocheReseau{
	font-family: 'River';
	font-size: 2em;
	line-height: 1em;
	color: #000000;
	position: relative;
}
.boutonRBas{
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.caseRBas{
	width: 25px;
	height: 25px;
	border-radius: 4px;
	background-color: #000000;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.caseRBas img{ max-height: 75%; width: auto; display: block; }
.zoneCoord{
	width: calc(100% - 20px);
	max-width: 1280px;
	padding: 10px;
	position: relative;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	left: 50%;
	transform: translateX(-50%);
}
.colBas{
	min-width: 250px;
	position: relative;
}
.colBas.droite{ text-align:right; }
.colBas.centre{ text-align: center; }
.colBas.centre img{ max-height: 150px; width: auto; display: block; }
.ligneCoord{
	width: 100%;
	position: relative;
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:5px;
}
.iconCoord{
	width: 30px;
	height: 30px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.telBas{ color:#ffffff; font-size: 1.2em; font-weight: bold; }
.emailBas{ color:#ffffff; font-size: 1em; font-weight: normal; }
.adrBas{ color:#ffffff; font-size: 1em; font-weight: normal; }

.listeBas{
	margin: 0;
	padding: 0;
	list-style: none;
}
.listeBas li{
	padding:5px 20px 5px 0;
	position: relative;
}
.listeBas li::after{
	content:'';
	width: 10px;
	height: 10px;
	border: 1px solid #eec600;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.listeBas li:hover::after{
	background-color: #eec600;
}
.copyr{
	width: 100%;
	border-top: 1px solid #eec600;
	position: relative;
	float: left;
	padding: 10px 0;
	font-size: 0.8em;
	color: #666666;
	text-align: center;
}


/* BASE ----------------------------- */

.paraStd{
	width: calc(100% - 20px);
	max-width: 1280px;
	box-sizing: border-box;
	padding: 0;
	position: relative;
	float: left;
	left: 50%;
	transform: translateX(-50%);
	clear: both;
	margin: calc(var(--decalBase) * 2) 0;
	overflow: hidden;
}
.paraStd.interne{ margin: 0; overflow: inherit; }
.paraFull{
	width: 100%;
	box-sizing: border-box;
	padding: 0;
	position: relative;
	float: left;
	clear: both;
	margin: calc(var(--decalBase) * 2) 0;
	overflow: hidden;
}
.paraDef{
	width: 100%;
	color: #ffffff;
	position: relative;
	float: left;
	clear: both;
	margin: calc(var(--decalBase) * 2) 0;
	overflow: hidden;
}
.paraDef::Before{
	content:'';
	width: 100%;
	height: 120px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	position: relative;
	float: left;
}
.paraDef::After{
	content:'';
	width: 100%;
	height: 40px;
	clip-path: polygon(100% 0, 100% 100%, 50% 5%, 0 100%, 0 0);
	position: relative;
	float: left;
}
.paraDefContenu{
	width: 100%;
	position: relative;
	float: left;
	padding: 20px 0;
}
.paraDef.droite::Before{ clip-path: polygon(0 0, 0% 100%, 100% 100%); }
.paraDef.fdgris::Before, .paraDef.fdgris::After, .paraDefContenu.fdgris{
	background-color: #333333;
}
.paraDef.fdjaune::Before, .paraDef.fdjaune::After, .paraDefContenu.fdjaune{
	background-color: #f0c600;
}
.paraDef.fdblanc::Before, .paraDef.fdblanc::After, .paraDefContenu.fdblanc{
	background-color: #ffffff;
}

.flex100{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	float: left;
	gap:30px;
}
.flex100.start{ justify-content: flex-start; }
.flex100.centrer{ justify-content: center; }
.flex100.mid{ align-items: center; }
.flex100.gauche34{ justify-content: flex-start; align-items: center; }
.flex100.droite34{ justify-content: flex-end; align-items: center; }

.col50{
	width: calc(50% - 40px);
	margin: 0 20px;
	position: relative;
	float: left;
}
.col50.centrer{ text-align: center; }

.colPhotoBord{
	width: 50%;
	aspect-ratio:5/3;
	min-height: 400px;
	position: relative;
	float: left;
}
.degradPhoto{
	width: 25%;
	height: 100%;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.degradPhoto.inverse{ 
	background: linear-gradient(270deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	left: inherit;
	right:0;
}
.txt50{
	width: calc(50% - 40px);
	position: relative;
	float: left;
}
.txt50.maxi600{
	max-width: 600px;
}
.txt75{
	width: 75%;
	position: relative;
	float: left;
	clear: both;
}
.txt75.centrer{
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
}
.txt100{
	width: calc(100% - 10px);
	position: relative;
	float: left;
	clear: both;
	margin: 0 5px;
}
.txt100.centrer{ text-align: center; }


/* ACCUEIL ----------------------------------- */

.caseAccRacour{
	width: 30%;
	aspect-ratio:3/2;
	border: 1px solid #eec600;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	margin: 0 5px;
}
.fdAccRacour{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.titreAccRacour{
	min-width: 80px;
	min-height: 30px;
	font-size: 2em;
	line-height: 1.2em;
	font-family: 'River';
	background-color: rgba(0,0,0,0.9);
	border-radius: 8px;
	padding: 5px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 3;
}
.titreAccRacour p{ white-space: nowrap; }
.titreAccRacour p::first-letter{ color:#eec600; }
.titreAccRacour.gauche{
	bottom: 10px;
	left: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.titreAccRacour.centre{
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}
.titreAccRacour.droite{
	bottom: 20px;
	right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.trameSurvol{
	width: 0;
	height: 100%;
	background-color: #eec600;
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.caseAccRacour:hover .trameSurvol{
	animation-name:animSurvol;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes animSurvol{
	from{ width: 0; opacity: 0.4;  }
	45%{ width:95%; opacity: 0.95;	}
	55%{ width:105%; opacity: 0.95; transform: translateX(100%); }
	to{ width: 0; opacity: 0.4; transform: translateX(100%);}
}

.paraDef.accPeche{
	margin: 280px 0 calc(var(--decalBase) * 2) 0;
	overflow: visible;
	z-index: 1;
}
.paraDef.accPeche .paraStd{ padding-top: 100px; z-index: 2; }
.paraDef.merPeche{
	margin:0 0 calc(var(--decalBase) * 2) 0;
}
.paraDef.merPeche .paraStd{ padding-top: 0; z-index: 2; }

.ligneAccPeche{
	position: absolute;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap:20px;
	top: 0;
	left: 0;
	transform: translateY(calc(-100% + 70px));
	z-index: 3;
}
.ligneAccPeche.posdroite{ 
	left: auto;
	right: 0;
}
.casePhotoAccPeche{
	width: 320px;
	aspect-ratio:2/3;
	position: relative;
	background-color: #000000;
	border: 1px solid #eec600;
	border-radius: 8px;
	overflow: hidden;
}
.fdPhoto{
	width: 100%;
	height: 100%;
	position:relative;
	float: left;
	z-index: 1;
}
.barreAccPeche{
	width: 100%;
	height: 60px;
	padding: 5px 0;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	position: absolute;
	float: left;
	z-index: 2;
}
.barreAccPeche.bas{ bottom: 20px; }
.barreAccPeche.haut{ top: 20px; }
.silhouetteBarreAcc{
	height: 100%;
	position: relative;
}
.txtBarreAccPeche{
	color: #ffffff;
	text-align: center;
	position: relative;
}

.titreParaAcc{
	width: 370px;
	position: relative;
	float: right;
}
.titreParaAcc .titreH1{ font-size: 3em; }
.titreParaAcc .sstitreH1{ font-size: 0.3em; font-weight: bold; }
.silhouetteDeco{
	height: calc(100% - 80px);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.silhouetteDeco.droite{ 
	right: 0;
	left: auto;
}
.zoneTemoin{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:5px;
	position: relative;
}
.boutonDiap{
	width:45px;
	height: 45px;
	border-radius:8px;
	background-color: #666666;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.flecheDiap{
	width: 50%;
	height: 50%;
	clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%, 50% 50%);
	background-color: #ffffff;
	position: relative;
}
.flecheDiap.avant{ transform: rotate(180deg);}
.groupeTemoin{
	width: calc(100% - 100px);
	min-height: 300px;
	position: relative;
	float: left;
	overflow: hidden;
	padding: 10px 0;
}
.blocTemoin{
	position: relative;
	transform: translateX(-100px);
	opacity: 0;
	transition: all 0.4s;
}
.blocTemoin.active{
	transform: translateX(0);
	opacity: 1;
}
.blocTemoin.depart{
	transform: translateX(100px);
	opacity: 0;
}
.casePhotoTemoin{
	width: 350px;
	aspect-ratio:1/1;
	position: relative;
}
.cadrePhotoTemoin{
	width: 100%;
	height:100%;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #eec600;
	background-color: #222222;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.blocTemoin{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:40px;
	position: relative;
}
.ombrePhotoTemoin{
	width: 100%;
	height: 100%;
	border-radius: 8px;
	position: absolute;
	background-color: #eec600;
	top: 5px;
	left: 5px;
	z-index: -1;
}
.infoTemoin{
	width: 50%;
	max-width: 420px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap:4px;
	position: relative;
}
.etoileTem{
	height: 25px;
	position: relative;
}
.dateTem{
	font-size: 0.9em;
	color: #eec600;
}
.nomTem{
	width: 100%;
	font-size: 0.9em;
	text-align: right;
	font-style: italic;
	color: #eec600;
}

.galeriePhoto{
	width: calc(100% - 10px);
	background-color: #333333;
	position: relative;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:2px;
	margin-bottom: 20px;
}
.caseGalerie{
	width:calc(95% / 7);
	aspect-ratio:1/1;
	position: relative;
	background-color: #000000;
	overflow: hidden;
}
.caseGalerie img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: all 0.4s;
}
.caseGalerie:hover img{ transform:scale(1.08); }


/* EN MER -------------------------------------- */

.casePhoto{
	width: calc(100% - 10px);
	aspect-ratio:4/3;
	position: relative;
	padding: 0 0 5px 0;
}
.casePhoto.long{
	width: calc(100% - 10px);
	aspect-ratio:7/4;
}
.cadrePhoto{
	width: 100%;
	height:calc(100% - 10px);
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #eec600;
	background-color: #222222;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.ombrePhoto{
	width: 100%;
	height: calc(100% - 10px);
	border-radius: 8px;
	position: absolute;
	background-color: #eec600;
	top: 5px;
	left: 5px;
	z-index: -1;
}

.lignePoisson{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:10px;
	flex-wrap: wrap;
	position: relative;
}
.blocPoisson{
	width: 200px;
	position: relative;
	cursor: pointer;
}
.visuPoisson{
	width: 100%;
	height: 150px;
	border-radius: 8px;
	border: 1px solid #eec600;
	position: relative;
	overflow: hidden;
}
.txtPoisson{
	width: calc(100% - 20px);
	background-color: #000000;
	color: #eec600;
	text-align: center;
	padding: 5px 0;
	margin: 0 10px;
	border-bottom: 1px solid #eec600;
	position: relative;
}
.blocPoisson.actif .txtPoisson{
	color: #ffffff;
	background-color: #333333;
}
.blocInfoPoisson{
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
	position: relative;
	margin: 30px 0;
	transition: 0.4s all;
	opacity: 0;
}
.blocInfoPoisson.actif{
	opacity: 1;
}
.visuInfoPoisson{
	width: 300px;
	height: 360px;
	position: relative;
	background-color: #222222;
	clip-path: polygon(100% 0, 80% 50%, 100% 100%, 0 100%, 0 0);
	overflow: hidden;
}
.detailInfoPoisson{
	width: calc(100% - 320px);
	position: relative;
}
.ligneKey{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap:15px;
	position: relative;
}
.motKey{
	border: 1px solid #eec600;
	border-radius: 8px;
	padding: 10px 15px;
	position: relative;
}

.ligneCaract{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 15px 0;
}
.blocCaract{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:5px;
	position: relative;
}
.iconeCaract{
	height: 30px;
	position:relative;
}

.caseTarif{
	width: 120px;
	height: 80px;
	border-radius: 8px;
	border: 1px solid #000000;
	position: relative;
	float: left;
	margin: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.caseTarif.double{ width: 240px; }
.caseTarif.black{ background-color:#000000; }
.caseTarif.yellow{ background-color:#eec600; border:1px solid #eec600; }
.prix{ font-size: 1.2em; font-weight: bold; }

.colPhotoPeche{
	width: 50%;
	position: relative;
	transform: translateY(-120px);
}
.flexPhotoPeche{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:10px;
	position: relative;
}
.casePhotoPeche{
	width: 320px;
	height: 540px;
	position: relative;
	background-color: #000000;
	border: 1px solid #eec600;
	border-radius: 8px;
	overflow: hidden;
}
.casePhotoPeche.cgris{ border: 1px solid #333333; }
.casePhotoPeche.cblanc{ border: 1px solid #ffffff; }

.paraAppel{
	width: 100%;
	min-height: 390px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	position: relative;
	float: left;
	margin: calc(var(--decalBase) * 2) 0;
	gap:10px;
}
.visuelAppel{
	width: calc((100% - 920px) / 2);
	min-width: 150px;
	position: relative;
	background-color: #222222;
}
.contenuAppel{
	width: calc(900px - 60px);
	background-color: #333333;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0 30px;
}


/* LACS ------------------------------ */
.visuGite{
	width: 200px;
	height: 150px;
	border-radius: 8px;
	border: 1px solid #eec600;
	position: relative;
	overflow: hidden;
}

/* EQUIP ---------------------------- */
.casePartenaire{
	width: 20%;
	max-width: 200px;
	aspect-ratio:4/3;
	background-color: #ffffff;
	border: 1px solid #eec600;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}

/* FAQ ----------------------------- */
.blocFaq{
	width: 100%;
	position: relative;
	float: left;
	margin-bottom: 5px;
}
.questionFaq{
	width: calc(100% - 20px);
	min-height: 30px;
	background-color: #000000;
	border-bottom: 1px solid #eec600;
	padding: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:5px;
	cursor: pointer;
}
.numFaq{
	font-family: 'River';
	font-size: 2.5em;
	color: #eec600;
	position: relative;
}
.txtQuestion{
	width: calc(100% - 50px);
	font-size: 1.2em;
	position: relative;
}
.flecheFAQ{
	width: 20px;
	height: 15px;
	background-color: #eec600;
	clip-path: polygon(50% 50%, 100% 0, 100% 50%, 50% 100%, 0 50%, 0 0);
	position: relative;
}
.flecheFAQ.actif{ clip-path: polygon(50% 0, 100% 50%, 100% 100%, 50% 50%, 0 100%, 0 50%); }
.reponseFaq{
	width: 100%;
	max-height: 0;
	background-color: #333333;
	position: relative;
	overflow: hidden;
	transition: all 0.4s;
}
.reponseFaq p{ position: relative; margin:20px; }
.reponseFaq.actif{ max-height:500px; } 

/* CONTACT ------------------------------------------ */
.caseContact{
	width: 220px;
	height: 100px;
	border: 1px solid #eec600;
	border-radius: 8px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:10px;
}
.caseContact.long{ width:300px; }
.iconeContact{
	height: 50px;
	border: 1px dashed #222222;
	position: relative;
}
.telContact{
	width: 100%;
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
}
.emailContact{
	width: 100%;
	text-align: center;
	font-size: 0.9em;
	font-weight: bold;
	white-space: nowrap;
}

.baseInput{
	width: calc(100% - 20px);
	height: 40px;
	background-color: #ffffff;
	border: 1px solid #eec600;
	border-radius: 8px;
	color:#222222;
	text-align: center;
	font-family: 'Roboto';
	font-size: 1em;
	line-height: 40px;
	vertical-align: middle;
	position: relative;
	float: left;
	margin-bottom: 10px;
	clear: both;
}
.baseArea{
	width: calc(100% - 20px);
	height: 160px;
	background-color: #ffffff;
	border: 1px solid #eec600;
	border-radius: 8px;
	color:#222222;
	text-align: center;
	font-family: 'Roboto';
	font-size: 1em;
	line-height: 40px;
	vertical-align: middle;
	position: relative;
	float: left;
	margin-bottom: 10px;
	clear: both;
}
.formLigne{
	width:100%;
	margin: 5px 0;
	position: relative;
	float: left;
}
.miniInput{
	width:80px;
	background-color: #ffffff;
	border: 1px solid #eec600;
	border-radius: 8px;
	color:#222222;
	text-align: center;
	font-family: 'Roboto';
	font-size: 1em;
	line-height: 40px;
	vertical-align: middle;
	margin-bottom: 10px;
	clear: both;
}
.subIti{
	width: 120px;
	height: 40px;
	background-color: #eec600;
	border: 1px solid #eec600;
	border-radius: 8px;
	font-family: 'Roboto';
	font-size: 1em;
	color:#000000;
	text-align: center;
	line-height: 40px;
	vertical-align: middle;
	position: relative;
	float: left;
	cursor: pointer;
}

.message{
width:350px;
max-width: 90%;
background-color:#333333;
border:1px solid #eec600;
border-radius:8px;
font-size:1em;
color: #ffffff;
text-align:center;
height:auto;
padding:4px;
box-shadow: 0 0 5px #666666;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%, -50%);
z-index:11;
overflow:auto;
}
.closeF{
width:100px;
background-color:#eec600;
border-radius:8px;
color:#000000;
font-size:0.9em;
text-align:center;
line-height:25px;
vertical-align:middle;
position:relative;
float:left;
padding: 4px;
top:0;
left: 50%;
transform: translateX(-50%);
}
.closeF a{
color:#ffffff;
text-decoration:none;
}

