body.page-template-template-voeux2024 {
	--colorVoeux2024Color1a : #e3d782;
	--colorVoeux2024Color1b : #e1b351;
	--colorVoeux2024Color4a : #235c8a;
	--colorVoeux2024Color4b : #0e274e;
}
@media (min-width:700px) {
	body.page-template-template-voeux2024 {
		overflow:hidden;
	}
}
#voeux2024 {
	padding:0;
	margin:0;
}
@media (min-width:700px) {
	#voeux2024-curseur {
		position:absolute;
		z-index:2;
		transform:translate(-10%,-90%);
		width:80px;
		height:80px;
		border-radius:50%;
		border:1px solid white;
		transition:0.3s ease-out;
	}
	#voeux2024-curseur:before {
		content:'';
		position:absolute;
		width:6px;
		height:6px;
		transform:translate(37px, 37px) rotate(45deg);
		background:rgba(255,255,255,0.9);
	}
}
#voeux2024-header {
	grid-area:header;
	position:relative;
}
#revivezVoeux2024 {
	z-index:1;
	position:absolute;
}
#revivezVoeux2024 img {
	width:90vw;
	max-width:500px;
}
#revivezVoeux2024 h1 {
	color:var(--colorVoeux2024Color1a);
	text-align:center;
}
#bgvoeux2024 {
	position:absolute;
	height:100%;
	width:100%;
	object-fit: cover;
}
#revivezVoeux2024 {
	position:absolute;
	max-width:1000px;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.voeux2024-volets {
	position:fixed;
	z-index:2;
	height:50%;
	width:100%;
	transition:0.6s cubic-bezier(0.15, 0.6, 0.35, 0.85);
	transform:scale(1,0);
	background:white;
}
#voeux2024-voletBlackUp {
	top:0;
	transform-origin:0% 0%;
}
#voeux2024-voletBlackDown {
	bottom:0;
	transform-origin:0% 100%;
}
#voeux2024-container.active .voeux2024-volets {
	transform:scale(1,1);
}
#voeux2024-container-portfolio {
	position:fixed;
	top:5%;
	left:50%;
	z-index:2;
	height:90%;
	width:100%;
	transform:scale(1,0) translateX(-50%);
	transition:0s 0.6s;
	overflow-y:auto;
	padding:40px;
}
#voeux2024-container.active #voeux2024-container-portfolio {
	transform:scale(1,1) translateX(-50%);
}
#voeux2024-container-singlePortfolio {
	max-width:900px;
	margin:auto;
}
#voeux2024-containerClose {
	position:relative;
	z-index:1;
}
#voeux2024-containerClose svg {
	position:absolute;
	top:10px;
	right:10px;
	height:30px;
	width:30px;
	border-radius:50%;
	padding:6px;
	background:var(--colorVoeux2024Color1a);
	transition:0.3s;
}
#voeux2024-containerClose svg:hover {
	cursor:pointer;
	transform:rotate(90deg);
}
#voeux2024-containerClose svg path {
	color:var(--colorVoeux2024Color4b);
}
.voeux2024-container-mainImage {
	grid-area: container-mainImage;
	max-height:200px;
	overflow:hidden;
	position:relative;
}
.voeux2024-container-mainImage img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}
.voeux2024-container-bloc {
	grid-area: container-bloc;
	position:relative;
}
.voeux2024-autresMoments {
	grid-area: autresMoments;
}
.voeux2024-container-image2 {
	grid-area: container-image2;
	max-height:300px;
	overflow:hidden;
	position:relative;
}
.voeux2024-container-image2 img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}
.voeux2024-container-mainImage:before,
.voeux2024-container-image2:before,
.voeux2024-container-bloc:before,
.voeux2024-container-noGrid.vu:before {
	content:'';
	position:absolute;
	width:100%;
	background:white;
	z-index:2;
}
.voeux2024-container-grid.vu .voeux2024-container-mainImage,
.voeux2024-container-noGrid.vu
{
	animation: animGrid 1s 0.6s backwards cubic-bezier(0.15, 0.6, 0.2, 1);
}
.voeux2024-container-grid.vu .voeux2024-container-bloc,
.voeux2024-container-grid:nth-of-type(odd).vu .voeux2024-container-image2 {
	animation: animGrid 1s 0.8s backwards cubic-bezier(0.15, 0.6, 0.2, 1);
}
.voeux2024-container-grid.vu .voeux2024-container-image2,
.voeux2024-container-grid:nth-of-type(odd).vu .voeux2024-container-bloc {
	animation: animGrid 1s 1s backwards cubic-bezier(0.15, 0.6, 0.2, 1);
}
@keyframes animGrid {
	0% {
		transform:translateY(15px);
	}
	100% {
		transform:translateY(0px);
	}
}
.voeux2024-container-grid.vu .voeux2024-container-mainImage:before,
.voeux2024-container-grid.vu .voeux2024-container-bloc:before,
.voeux2024-container-grid.vu .voeux2024-container-image2:before,
.voeux2024-container-noGrid.vu:before
{
	animation: animGridBefore 1s 0.6s backwards cubic-bezier(0.15, 0.6, 0.2, 1);
}
@keyframes animGridBefore {
	0% {
		height:100%;
	}
	100% {
		height:0%;
	}
}
.voeux2024-container-grid {
	display:none;
	gap:10px;
	grid-template-columns:1fr;
	grid-template-rows:auto 1fr auto auto;
	grid-template-areas:
		"container-mainImage"
		"container-bloc"
		"container-image2"
		"autresMoments";
}
@media (min-width:700px) {
	.voeux2024-container-grid {
		gap:30px;
		grid-template-columns:repeat(3,1fr);
		grid-template-rows:auto 1fr 1fr auto;
		grid-template-areas:
			". container-mainImage container-mainImage"
			"container-image2 container-bloc container-bloc"
			". container-bloc container-bloc"
			". autresMoments autresMoments";
	}
	.voeux2024-container-grid:nth-of-type(odd) {
		grid-template-areas:
			"container-mainImage container-mainImage ."
			"container-bloc container-bloc container-image2"
			"container-bloc container-bloc ."
			"autresMoments autresMoments .";
	}
}
.voeux2024-container-noGrid {
	display:block;
}
.voeux2024-container-noGrid img {
	margin:auto;
}
.voeux2024-container-lieu {
	position:relative;
	padding:0;
	margin:0;
}
.voeux2024-container-lieu span {
	color:white;
	text-transform:uppercase;
	padding:1px 5px;
	background:linear-gradient(to right, var(--colorVoeux2024Color1a), var(--colorVoeux2024Color1b));
}
#voeux2024-container-singlePortfolio h3 {
	position:relative;
	z-index:1;
	font-family: 'Fira Sans Condensed', sans-serif;
	text-transform:uppercase;
	color:var(--colorVoeux2024Color4b);
	font-size:2.5em;
	line-height:0.9em;
	padding:0;
	margin:0.2em 0 0.5em 0;
}
.voeux2024-container-descriptif {
	position:relative;
}
@media (min-width:700px) {
	#voeux2024-container-singlePortfolio h3 {
		font-size:4em;
	}
	.voeux2024-container-grid:nth-of-type(n+2) .voeux2024-container-descriptif {
		max-width:50%;
	}
}
.voeux2024-container-image3 img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}
#voeux2024-container-singlePortfolio h4 {
	font-family: 'Fira Sans Condensed', sans-serif;
	color:var(--colorVoeux2024Color4b);
	font-size:1.4em;
}
.voeux2024-container-autresMoments {
	display:flex;
	gap:10px;
	flex-direction:column;
}
@media (min-width:700px) {
	.voeux2024-container-autresMoments {
		flex-direction:row;
	}
}
#voeux2024-control * {
	color:white;
}
#voeux2024-control-pourcentage {
	position:absolute;
	z-index:1;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(-90deg);
	width:150%;
	text-align:center;
	font-weight:bold;
}
#voeux2024-control-pourcentage span {
	font-size:2em;
}
#voeux2024-progressbar {
	position:absolute;
	width:50%;
	height:80%;
	top:10%;
	left:25%;
	background:rgba(0,0,0,0.1);
}
#voeux2024-progressbar div {
	position:absolute;
	bottom:0;
	left:5%;
	height:0%;
	width:90%;
	border-top:2px solid black;
	border-bottom:2px solid black;
	transition:1s cubic-bezier(0.15, 0.6, 0.2, 1);
	background:rgba(0,0,0,0.5);
}
#voeux2024-amenagement {
  grid-area: amenagement;
}
#voeux2024-odil {
  grid-area: odil;
}
#voeux2024-creon {
  grid-area: creon;
}
#voeux2024-tourisme {
  grid-area: tourisme;
}
#voeux2024-aquatropic {
  grid-area: aquatropic;
}
#voeux2024-stationnement {
  grid-area: stationnement;
}
#voeux2024-aerodrome {
  grid-area: aerodrome;
}
#voeux2024-eten2024 {
  grid-area: eten2024;
}
#voeux2024 h1 {
	padding:0;
	margin:0;
	font-family: 'Fira Sans Condensed', sans-serif;
	word-break: keep-all;
	letter-spacing:0;
	line-height:1.1em;
	text-transform: uppercase;
}
#voeux2024-portfolio {
	display:grid;
	height:230vh;
	grid-template-columns:repeat(2,1fr);
	grid-template-rows: repeat(9,1fr);
	grid-template-areas:
		"header header"
		"aerodrome aerodrome"
		"amenagement amenagement"
		"tourisme tourisme"
		"odil odil"
		"creon creon"
		"stationnement stationnement"
		"aquatropic aquatropic"
		"eten2024 eten2024"
}
@media (min-width:700px) {
#voeux2024-portfolio {
	height:100vh;
	grid-template-columns:repeat(3,1fr);
	grid-template-rows: 15fr 27fr 13fr 13fr 27fr;
	grid-template-areas:
		"header header header"
		"amenagement aerodrome odil"
		"amenagement eten2024 creon"
		"tourisme eten2024 creon"
		"tourisme stationnement aquatropic";
	}
}
.voeux2024-singleportfolio,
.voeux2024-container-Moment {
	position:relative;
	overflow:hidden;
}
.voeux2024-container-Moment {
	height:200px;
}
@media (min-width:700px) {
	.voeux2024-container-Moment {
		width:200px;
	}
}
.voeux2024-singleportfolio:hover,
.voeux2024-container-Moment:hover {
	cursor:pointer;
}
.voeux2024-vu,
.voeux2024-container-autresMoments-vu {
	position:absolute;
	top:10px;
	right:10px;
	width:30px;
	height:30px;
	z-index:1;
	border-radius:50%;
	background:var(--colorVoeux2024Color1a);
	transform:rotate3d(1,1,0,-45deg);
	opacity:0;
	transition:0.3s;
}
.voeux2024-vu.active,
.voeux2024-container-autresMoments-vu.active {
	transform:rotate3d(1,1,0,0deg);
	opacity:1;
}
.voeux2024-vu p,
.voeux2024-container-autresMoments-vu p {
	text-align:center;
	line-height:30px;
	font-size:0.6em;
	font-weight:bold;
	color:var(--colorVoeux2024Color4b);
}
.voeux2024-textes,
.voeux2024-container-autresMoments-textes {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:2;
	width:100%;
	padding:10px;
}
.voeux2024-singleportfolio h2,
.voeux2024-container-Moment h5 {
	color:white;
	font-size:1.3em;
	text-transform: uppercase;
	text-align:center;
	padding:0;
	margin:0 0 18px 0;
	font-family: 'Fira Sans Condensed', sans-serif;
	word-break: keep-all;
	letter-spacing:0;
	line-height:1.1em;
	transition:0.3s 0.05s;
}
.voeux2024-singleportfolio:last-of-type h2 {
	color:var(--colorVoeux2024Color4b);
}
.voeux2024-singleportfolio:hover h2,
.voeux2024-container-Moment:hover h5 {
	transform:translateY(-10px);
	color:var(--colorVoeux2024Color4b);
}
p.voeux2024-lieu,
p.voeux2024-container-autresMoments-lieu {
	color:var(--colorVoeux2024Color1a);
	text-align:center;
	margin-bottom:0.1em;
	transition:0.3s;
}
.voeux2024-singleportfolio:last-of-type p.voeux2024-lieu {
	color:var(--colorVoeux2024Color4b);
}
.voeux2024-singleportfolio:hover p.voeux2024-lieu,
.voeux2024-container-Moment:hover p.voeux2024-container-autresMoments-lieu {
	transform:translateY(-10px);
	color:var(--colorVoeux2024Color4b);
}
p.voeux2024-descriptif,
p.voeux2024-container-autresMoments-descriptif {
	position:absolute;
	left:50%;
	top:70%;
	transform:translateX(-50%);
	color:var(--colorVoeux2024Color4b);
	text-align:center;
	margin-top:10px;
	transition:0.3s 0.1s;
}
@media (min-width:700px) {
	p.voeux2024-descriptif,
	p.voeux2024-container-autresMoments-descriptif {
		opacity:0;
	}
}
p.voeux2024-container-autresMoments-descriptif {
	font-size:0.7em;
}
p.voeux2024-descriptif:before,
p.voeux2024-container-autresMoments-descriptif:before {
	content:'';
	background:white;
	width:106%;
	height:100%;
	position:absolute;
	left:-3%;
	z-index:-1;
}
.voeux2024-savoirplus p,
.voeux2024-container-autresMoments-savoirplus p {
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	color:var(--colorVoeux2024Color1a);
	transition:0.3s;
}
.voeux2024-singleportfolio:last-of-type .voeux2024-savoirplus p {
	color:var(--colorVoeux2024Color4b);
}
.voeux2024-singleportfolio:hover .voeux2024-savoirplus p,
.voeux2024-container-Moment:hover .voeux2024-container-autresMoments-savoirplus p {
	opacity:0;
}
.voeux2024-singleportfolio:hover p.voeux2024-descriptif,
.voeux2024-container-Moment:hover p.voeux2024-container-autresMoments-descriptif {
	transform:translate(-50%,-10px);
	opacity:1;
}
.voeux2024-singleportfolio img,
.voeux2024-container-Moment img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:0.5s;
}
.voeux2024-singleportfolio > span,
.voeux2024-container-Moment > span {
	position:absolute;
	z-index:1;
	transition:0.3s;
	background:white;
}
.voeux2024-singleportfolio > span:first-of-type,
.voeux2024-container-Moment > span:first-of-type {
	top:0;
	left:0;
	height:5px;
	width:0;
}
.voeux2024-singleportfolio > span:nth-of-type(2),
.voeux2024-container-Moment > span:nth-of-type(2) {
	top:0;
	right:0;
	height:0;
	width:5px;
}
.voeux2024-singleportfolio > span:nth-of-type(3),
.voeux2024-container-Moment > span:nth-of-type(3) {
	bottom:0;
	right:0;
	height:5px;
	width:0;
}
.voeux2024-singleportfolio > span:last-of-type,
.voeux2024-container-Moment > span:last-of-type {
	bottom:0;
	left:0;
	height:0;
	width:5px;
}
.voeux2024-singleportfolio:hover > span:first-of-type,
.voeux2024-singleportfolio:hover > span:nth-of-type(3),
.voeux2024-container-Moment:hover > span:first-of-type,
.voeux2024-container-Moment:hover > span:nth-of-type(3) {
	width:100%;
}
.voeux2024-singleportfolio:hover > span:nth-of-type(2),
.voeux2024-singleportfolio:hover > span:last-of-type,
.voeux2024-container-Moment:hover > span:nth-of-type(2),
.voeux2024-container-Moment:hover > span:last-of-type {
	height:100%;
}
.voeux2024-singleportfolio:hover img,
.voeux2024-container-Moment:hover img {
	transform:scale(1.2) rotate(2deg);
}
.voeux2024-singleportfolio:before,
.voeux2024-container-Moment:before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background:rgba(0,0,0,0.7);
	background:linear-gradient(to bottom right, var(--colorVoeux2024Color4a), var(--colorVoeux2024Color4b));
	opacity:0.7;
	transition:0.3s;
	z-index:1;
}
.voeux2024-singleportfolio:last-of-type:before {
	background:linear-gradient(to bottom right,var(--colorVoeux2024Color1a), var(--colorVoeux2024Color1b));
	opacity:0.7;
}
.voeux2024-singleportfolio:hover:before,
.voeux2024-container-Moment:hover:before {
	background:linear-gradient(to bottom right, var(--colorVoeux2024Color1a), var(--colorVoeux2024Color1b));
	opacity:0.7;
}