[data-composant="membre-equipe"]
{
	&{
		width: var(--maxWidth);
		display: grid;
		grid-template-columns: 1fr 2fr;
		align-items: start;
		margin: auto;
	}
	
	
	.tag{
		background: #f7f7f7;
		font-size: .8em;
		padding: 10px 20px;
		border-radius: var(--borderRadius);
	}
	
	
	.liste{
		&{
			scroll-snap-type: x mandatory;
			overflow-x: scroll;
			gap: 1em;
			padding: 0;
			margin:0;
			display: flex;			
			border-radius: var(--borderRadius);
		}
		
		& > li
		{
			&{
				list-style: none;
				background-size: cover;
				background-position: right;
				padding: 0 20px;
				border-radius: var(--borderRadius);
				scroll-snap-align: start;
				min-width: 45%;
				position: relative;
				overflow: hidden;
				font-size: 1.2em;
				display: grid;
			}
			
			@media (max-width: 820px) 
			{
				&{
					min-width: 80%;
				}
			}
			
			
			header
			{
				width: 100%;
				aspect-ratio: 4/3;
				position: relative;
			}
			
			header .tag
			{
				position: absolute;
				top: 20px;
				left: 20px;
				
			}
			
			a{
				text-decoration: none;
				color: initial;
			}
			img{
				width: 100%;
				height: 500px;
				object-fit: cover;
				border-radius: var(--borderRadius);
				border:1px solid var(--couleurborderImageRessourcesSlider);
				display: block;
				transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
				transform: scale(1);	
				
			}
			
			
			
			&:hover img{
				transform: scale(1.01);
			}
			
			.main
			{
				h3{
					font-size: 1.3em;
					margin-top: 20px;
				}
				
				.txt{
					overflow: hidden;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 3;
					line-clamp: 3;
				}
			}
			
			footer
			{
				&{
					display: flex;
					align-items: center;
					justify-content: space-between;
					margin-top:20px;
				}
				
				[data-composant="tags"]
				{
					&{
						margin: 0;
						padding: 0;
						display: flex;
						align-items: center;
					}
					
					li{
						list-style: none;
					}
				}
			}
			
			
			
			&.cta {
				&{
					background-position: center;
					background-size: cover;
					background-color: var(--couleurBTN);
			
									
				}
				& > div{
					width: 100%;
					display: flex;
					height: 100%;
					color: var(--couleurTexte);
			
				}
				
				.cta-rdv{
					border-radius:var(--borderRadius);
					padding:var(--padding);
					display:flex;
					align-items:center;
				}
				
				@media (max-width: 768px) 
				{
					.cta-rdv{
						padding:calc(var(--padding) / 2);
					}
				}
				.icone{
					width:80px;
					height:80px;
					border-radius:50%;
					background:rgba(255,255,255,.4);
				
					display:grid;
					place-items:center;
				
					font-size:2rem;
					margin-bottom:30px;
				}
				
				.cta-rdv h2{
					line-height:.9;
				}
				
				.cta-rdv p{
					line-height:1.6;
					color: var(--couleurTexte);
				}
				
				[data-composant="bouton"]{
					display:flex;
					align-items:center;
					justify-content:space-between;
					gap:1em;
					flex-direction: row-reverse;
					width:100%;					
					padding:25px 35px;
				
					background:white;
					border-radius:24px;
					font-size: .8em;
					text-decoration:none;
					color:inherit;
				
					box-shadow:0 10px 30px rgba(0,0,0,.08);
				}
				
				@media (max-width: 768px) 
				{
					.btn-rdv{
						padding:15px 15px;
					}
				}
				
				
			}
			
			&:not(.cta)
			{
				i, svg{
					position: absolute;
					right: 20px;
					bottom: 20px;
					font-size: 3em;
					opacity: .5;
					color: rgba(37, 75, 59, 1);
				}
			}
			strong{
				color: white;
			}
		}
		
	}
	
}


[data-composant="membre-equipe"][data-theme="membres"]
{
	&{
		display: block;
		background: #f7f7f7;
		padding: var(--padding);
		border-radius: var(--borderRadius);
	}
	
	.txts h2{
		font-size: 2.5em!important;
		text-align: center;
		margin-bottom: 50px;
	}
	
	.liste > li 
	{
		&{
			width: 50%;
		}
		.main
		{		
			.txt{
				display: block;
			}
		}
	}
}
[data-composant="ressources-slider"]
{
	&{
		width: 0;
		padding: 40px 0;
		background: rgb(from var(--couleur1) r g b / 20%);
		border-radius: var(--borderRadius);
		margin: auto;
		min-height: 400dvh;
		
		
		view-timeline-name: --scroller;
		  view-timeline-axis: block;
		  
		  
		animation: largeur-slider linear both;
		animation-timeline: --scroller;
		animation-range: entry 10% exit 100%;
	}
	
	
	.titre
	{
		text-align: center;
		margin-top: 20px;
	}
	
	.txts{
		position: sticky;
		  top: 0;
		  /* sticky element must be vertically fully visible and be overflow hidden*/
		  height: 100vh;
		  overflow: hidden;
		  margin-top: 5rem;
		/* when div crosses the viewport animation at another element will start (see ul) */

	}
	.txts > .txt
	{
		max-width: 500px;
		text-align: center;
		margin: auto;
	}
	
	.tag{
		border: 1px solid;
		color: #333;
		font-size: .8em;
		padding: 10px 20px;
		border-radius: var(--borderRadius);
	}
	
	
	.liste{
		&{
			/*scroll-snap-type: x mandatory;
			overflow-x: scroll;
			gap: 1em;
			padding: 0;
			margin:0;
			display: flex;			
			border-radius: var(--borderRadius);
			*/
			
			display: grid;
			  gap: 1rem;
			  grid-auto-flow: column;
			/*   align-items: center; */
			  grid-auto-columns: minmax(5rem, min-content);
			  width: max-content;
			/* ul will start animating when div element is crossing the viewport */
			  animation: scrolled forwards linear;
			/* referencing --scroller declared at the div element */
			  animation-timeline: --scroller;
			/* when scroller is fully visible in the viewport start the animation */
			  animation-range: contain;
		}
		
		& > li
		{
			&{
				list-style: none;
				background-size: cover;
				background-position: right;
				padding: 0 20px;
				border-radius: var(--borderRadius);
				width:50vw;
				position: relative;
				overflow: hidden;
				font-size: 1.2em;
				display: grid;
				align-items: top;
				padding-bottom: 10px;
			}
			
			@media (max-width: 1180px) 
			{
			 &{
				 width: auto;
			 }
			}
			
			
			header
			{
				height: 60dvh;
				aspect-ratio: 4/3;
				position: relative;
			}
			
			@media (max-width: 820px) 
			{
				header
				{
					aspect-ratio: 9/16;
				}
			}
			
			header .tag
			{
				position: absolute;
				top: 20px;
				left: 20px;
				background: #333;
				color: white;
				
			}
			
			a{
				text-decoration: none;
				color: initial;
			}
			img{
				width: 100%;
				height: 100%;
				object-fit: cover;
				border-radius: var(--borderRadius);
				border:1px solid var(--couleurborderImageRessourcesSlider);
				display: block;
				transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
				transform: scale(1);	
				
			}
			
			
			
			&:hover img{
				transform: scale(1.01);
			}
			
			.main
			{
				h3{
					font-size: 1.3em;
					margin-top: 20px;
				}
				
				.txt{
					overflow: hidden;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 2;
					line-clamp: 2;
				}
			}
			
			footer
			{
				&{
					display: flex;
					align-items: center;
					justify-content: space-between;
					margin-top:20px;
				}
				
				[data-composant="tags"]
				{
					&{
						margin: 0;
						padding: 0;
						display: flex;
						align-items: center;
					}
					
					li{
						list-style: none;
					}
				}
			}
			
			
			
			&.cta {
				&{
									
				}
				& > div{
					width: 100%;
					display: flex;
					height: 100%;
					color: var(--couleurTexte);
			
				}
				
				header{
					&{
						background-position: center;
						background-size: cover;
						background-color: var(--couleurBTN);
						border-radius: var(--borderRadius);
						display: grid;
						place-content: center;
						color: white;
					}
					
					& > div
					{
						background: rgba(235, 186, 77, 0.51);
						padding: 20px;
						backdrop-filter: blur(5px);
						width: 100%;
						display: block;
						position: absolute;
						justify-content: center;
						display: flex;
						flex-direction: column;
						top: 75%;
						transform: translateY(-50%);
					}
					
					
					strong
					{
						font-size: 2em;
						 display: block
					}
					svg{
						font-size: 2em;
					}
				}
				
			}
			
			&:not(.cta)
			{
				i, svg{
					position: absolute;
					right: 20px;
					bottom: 20px;
					font-size: 3em;
					color: white;
				}
			}
			
		}
		
	}
	
}


@keyframes scrolled {
  0% {
	transform: translateX(0%);
  }
  100% {
	transform: translateX(calc((-100% + 100vw) - 3rem));
  }
}

@keyframes largeur-slider {
	0% {
		width: 0;
	}

	20% {
		width: 100%;
	}

	80% {
		width: 100%;
	}

	100% {
		width: var(--maxWidth);
	}
}
[data-composant="liste-services"][data-theme="stack"]
{
	&{
		width: var(--maxWidth);
		margin: auto;
	}
	
	
	@media (max-width: 820px) 
	{
		&{
			display: grid;
			place-content: center;
		}
	}
	
	
	.titre
	{
		text-align: center;
	}
	
	.txts{
		position: sticky;
		top: 20%;
		margin-bottom: 80dvh;
		transform: translateY(-50%);
		
	}
	
	.txts > .txt
	{
		width: 60%;
		text-align: center;
		margin: auto;
	}
	
	.tag{
		border: 1px solid;
		color: #333;
		font-size: .8em;
		padding: 10px 20px;
		border-radius: var(--borderRadius);
	}
	
	
	.liste{
		
		
		&{
			padding: 0;
		}
		
		& > li
		{
			min-width: 0;
		}
		
		
		
		
		& > li
		{
			&{
				list-style: none;
				background-size: cover;
				background-position: right;
				border-radius: var(--borderRadius);
				position: relative;
				overflow: hidden;
				font-size: 1.2em;
				position: sticky;
				top: calc(((sibling-index() - 1) * 10px) + 30%);
				max-width: calc(((sibling-index() - 1) * 20px) + 800px);
				margin: 20px auto;
				margin-bottom: 250px;
			}
			
			&:last-child
			{
				height: 85dvh;
				background-size: cover;
				top: calc(((sibling-index() - 1) * 10px) + 60%);
				max-width: 80%;
				margin-bottom: 0;
			}
			
			@media (max-width: 820px) 
			{
				&:last-child
				{
					max-width: 100%;
				}
			}
			
			&:last-child:before
			{
				content: "";
				position: absolute;
				inset: 0;
				background: linear-gradient(
				
					180deg,
					transparent 0%,
					rgba(0,0,0,.3) 85%
				
				);
				z-index: 1;
			}
			
			.cta{
				&{
					position: absolute;
					top: 100%;
					transform: translate(5%,-120%);
					width: 80%;
					z-index: 2;
				}
				
				
				
				h2{
					color: white;
					font-size: 1.3em;
				}
				
				h2 strong{
					font-size: 2.5em;
					display: block;
				}
				
				a{display: inline-flex}
			}
			
			
			
			@media (max-width: 820px) 
			{
				&{
					min-width: 80dvw;
					height: 500px;
				}
			}
			
			
			header
			{
				width: 100%;
				height: 400px;
				position: relative;
			}
			
			header .tag
			{
				position: absolute;
				top: 20px;
				left: 20px;
				background: #333;
				color: white;
				
			}
			
			a{
				text-decoration: none;
				color: initial;
				display: grid;
			}
			
			[data-composant="bouton"]
			{
				color:var(--couleurBTNTexte);
			}
			
			a header{
				grid-row-start: 1;
				grid-column-start: 1;
				grid-row-end: auto;
				grid-column-end: auto;
				align-self: start;
			}
			img{
				width: 100%;
				height: 100%;
				object-fit: cover;
				border-radius: var(--borderRadius);
				border:1px solid var(--couleurborderImageRessourcesSlider);
				display: block;
				transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
				transform: scale(1);	
				
			}
			
			
			
			&:hover img{
				transform: scale(1.01);
			}
			
			.main
			{
				&{
					grid-row-start: 1;
					grid-column-start: 1;
					grid-row-end: auto;
					grid-column-end: auto;
					align-self: end;
					z-index: 1;
					padding: 10px 20px;
					background: rgba(255, 255, 255, 0.6);
					backdrop-filter: blur(5px);
				}
				
				h3{
					font-size: 1.3em;
				}
				
				.txt{
					overflow: hidden;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 2;
					line-clamp: 2;
				}
			}
			
			footer
			{
				&{
					display: flex;
					align-items: center;
					justify-content: space-between;
					margin-top:20px;
				}
				
				[data-composant="tags"]
				{
					&{
						margin: 0;
						padding: 0;
						display: flex;
						align-items: center;
					}
					
					li{
						list-style: none;
					}
				}
			}
			
			
			
			&.cta {
				&{
					background-position: center;
					background-size: cover;
					background-color: var(--couleurBTN);
			
									
				}
				& > div{
					width: 100%;
					display: flex;
					height: 100%;
					color: var(--couleurTexte);
			
				}
				
				.cta-rdv{
					border-radius:var(--borderRadius);
					padding:var(--padding);
					display:flex;
					align-items:center;
				}
				
				@media (max-width: 768px) 
				{
					.cta-rdv{
						padding:calc(var(--padding) / 2);
					}
				}
				.icone{
					width:80px;
					height:80px;
					border-radius:50%;
					background:rgba(255,255,255,.4);
				
					display:grid;
					place-items:center;
				
					font-size:2rem;
					margin-bottom:30px;
				}
				
				.cta-rdv h2{
					line-height:.9;
				}
				
				.cta-rdv p{
					line-height:1.6;
					color: var(--couleurTexte);
				}
				
				[data-composant="bouton"]{
					display:flex;
					align-items:center;
					justify-content:space-between;
					gap:1em;
					flex-direction: row-reverse;
					width:100%;					
					padding:25px 35px;
				
					background:white;
					border-radius:24px;
					font-size: .8em;
					text-decoration:none;
					color:inherit;
				
					box-shadow:0 10px 30px rgba(0,0,0,.08);
				}
				
				@media (max-width: 768px) 
				{
					.btn-rdv{
						padding:15px 15px;
					}
				}
				
				
			}
			
			&:not(.cta)
			{
				i, svg{
					position: absolute;
					right: 20px;
					bottom: 20px;
					font-size: 3em;
					opacity: .5;
					color: rgba(37, 75, 59, 1);
				}
			}
			
		}
		
	}
	
}



[data-composant="faq"]
{
	&
	{
		width: var(--maxWidth);
		margin: auto;
		margin-bottom: -20px;
		padding-bottom: var(--padding);
	}
	
	.intro
	{
		&
		{
			position: sticky;
			top: 20px;
			align-self: start;
		}
		
		@media (max-width: 820px) 
		{
			&{
				position: relative;
			}	
		}
		
		ul{margin-left: 0; }
		ul li{
			list-style: none;
		}
		
		
	}
	
	article
	{
		&{
			border-radius: var(--borderRadiusXS);
			background: white;
		/*	transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
			transform: scale(1);*/
			margin-bottom: 20px;
		}
		/*
		&:hover{
			transform: scale(1.05);
		}*/
		
		&:not(first-child)
		{
			margin-top: 10px;
		}
		
		h3
		{
			margin-bottom: 0;
			padding: 10px 0;
			font-size: 1.4rem;
		}
		
		h3 .titre, .infos
		{
			padding: 0 20px;
		}
		
		label
		{
			cursor: pointer;
			display: grid;
			grid-template-columns: 1fr 50px;
			gap: 1em;	
			padding: 10px;
			position: relative;
		}
		
		label:before
		{
			content: "";
			width: 10px;
			height: 10px;
			background: rgba(37, 75, 59, 0.1);
			position: absolute;
			border-radius: 50%;
			left: 10px;
		}
		
		
		
		input
		{
			display: none
		}
		.infos
		{
			display: grid;
			grid-template-rows: 0fr;
			transition: grid-template-rows .4s ease;
		}
		
		.iconeAccordeon
		{
			display: flex;
			align-items: center;
			justify-content: center;
			transform-origin: center;
			transition: transform .5s ease .2s;
		}
		
		&:has(input:checked) 
		{
			.infos
			{
				grid-template-rows : 1fr
			}
		
			.iconeAccordeon
			{
				transform: rotate(180deg);			
			}
		}
		
		p{transition: margin .5s ease}
		&:not(:has(input:checked)) p
		{
			margin: 0;
		}
		
		.infos-contenu
		{
			overflow: hidden;
			min-height: 0;
		}
	}
	
}

[data-composant="faq"][data-theme="block"]
{
	&{
		width: 65%;
		border-radius: var(--borderRadius);
		padding: 20px;
	}
	
	& > div{
		display: block;
	}
	
	.intro{
		position: static;
	}
	
	article{
		background: rgb(from var(--couleur1) r g b / 20%);
		
		animation-name: fromRight;
		animation-duration: 1s;
		animation-fill-mode: both;
		animation-timing-function: ease;
		animation-timeline: view(block);
		animation-range: entry 15% cover 20%;
	}
	
	
}

@keyframes fromRight

{

	from
	{
		opacity: 0;
		transform: translateX(50%);
	}
	to
	{
		opacity: 1;
		transform: translateX(0);
	}

}
[data-composant="form-contact"]{
	& > div{
		background: var(--couleurDegrader1);
		border-radius: var(--borderRadius);
		width: var(--maxWidth);
		margin: 20dvh auto;
		padding: var(--padding);
		margin-bottom: var(--padding);
		container-type: inline-size;
		color: white;
	}
	
	@media (max-width: 768px) 
	{
		& > div{
			padding: calc(var(--padding) / 2);
			width: 95%;
		}	
	}
	
	
	&#discuter
	{
		min-height: 100dvh;
		display: grid;
		align-items: center;
		background: url("/uploads/images/discutons.jpg") center center / cover no-repeat;
		
	}
	&#discuter h2
	{
		color: white;
	}
	&#discuter > div
	{
		background: linear-gradient(315deg, rgba(37, 75, 60, 0.5), rgba(108, 161, 136, 0.5));
		border: 1px solid rgba(255, 255, 255, .4);
		backdrop-filter: blur(5px);
		max-width: 700px;
		width: 100%;

	}
	
	.grid_1_1
	{
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	
	
	@container (max-width: 1000px)
	{
		& > div{
			display: block;
			
		}
	}
			
	.txts{
		ul{
			padding: 0;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 1em;
		}
		
		@media (max-width: 768px) 
		{
			ul{
				display: block;
		
			}	
		}
		
		
		li{
			list-style: none
		}
		
		li a
		{
			display: block;
			text-align: center;
		}
		
		li:nth-child(1):not(:has(.moitier))
		{
			grid-column: 1 / span 2;
		}
		
		ul li:not(:first-child):not(:has(.moitier)) a
		{
			background: none;
			color: var(--couleur1);
			border: 1px solid;
			color: white;
		}
		
		.balise
		{
			color:var(--couleurTexte);
		}
	}
	
	h2{
		color: white;
	}
	
	form
	{
		background: rgba(255, 255, 255, .2);
		border-radius: var(--borderRadiusS);
		padding: 20px;
		position: relative;
		transition: all .5s ease;
		margin: 20px 0;
	}
	
	[data-composant="bouton"]
	{
		color: initial;
	}
}


[data-composant="form-contact"][data-theme="form-infos"]
{
	
}
[data-composant="form"]
{
	.parent
	{
		margin-bottom: 20px;
	}
	
	label
	{
		display: block; 
		margin-bottom:5px;
		min-height: 20px;
		cursor: pointer;
	}
	
	.blocInput
	{
		&
		{
			transition: background .5s ease, border .5s ease;
			padding: 0;
			margin: 0;
			display: grid;
			grid-template-columns: 45px auto 45px;
			border-radius: var(--borderRadius);
			position: relative;
			overflow: hidden;
			gap: 0px;
			align-items: center;
			min-height: 55px;
		}
		
		*
		{
			transition: opacity .5s ease;
		}
		
		&:has([disabled])
		{
			background: #ccc; 
			cursor: not-allowed
		}
		
		&:has([disabled]) *
		{
			cursor: not-allowed;
		}
		
		&:not(:has([required])):has(output:empty)
		{
			&:has( > :nth-child(3))
			{
				grid-template-columns: 45px auto 0;
			}
			
			&:not(:has( > :nth-child(3)))
			{
				grid-template-columns: auto 0;
			}
		}
		
		.avantChamp, .apresChamp
		{
			color: #9d9e9e;
			display: flex;
			justify-content: center;
			height: 100%;
			align-items: center;
			flex-direction: column-reverse;
			padding: 5px;		
			background: #fff;
			width: 100%;
		}
		
		.avantChamp
		{
			font-size: 1.1em
		}
		
		.champ
		{
			&
			{
				display: block;
				height: 100%;
			}
			
			&:has(input[switch])
			{
				display: flex;
				gap:1em;
				align-items: center;
			}
			
			input, textarea, select
			{
				outline: none;
			}
			
			input:not([type="checkbox"]):not([type="radio"])
			, textarea
			, select
			{
				width: 100%;
				height: 100%;
				padding: 0 10px;
				font-weight: 400;
				font-size: 1em;
				background-color: var(--formCouleurInput);
				border: none;
			}
			
			&:has(textarea)
			{
				height: 200px;
			}
			
			textarea
			{
				padding: 5px;
				height: 100%;
			}
			
		}
		
		.apresChamp
		{
			background: #fff;
			gap: 5px;
			font-size: 1.5em;
			position: relative;
			z-index: 1;
			
		}
		
		output
		{
			&
			{	
				font-size: .4em;
				z-index: 1;
			}
			
			&:empty
			{
				display: none;
			}
			
			&.avertissement
			{
				color: var(--couleurAvertissement);
			}	
		}
		
		.legende
		{
			color:var(--couleurLegende);
			font-size: .8em;
			font-style: italic;
		}
		
		.explicationErreur
		{
			min-height: 20px;
			margin-top:5px;
			color: #fff;
			
			background: var(--couleurAvertissement);
			padding: 10px;
			border-radius: var(--borderRadiusXS);
			padding-top: 20px;
			border: 1px solid var(--couleurAvertissement);
			position: relative;
			z-index: -1;
		
			margin-top: -15px;
			margin-bottom: 20px;
			transition: margin-top .5s ease, opacity .5s ease;
			opacity: 1;
		}
		
		.explicationErreur:empty
		{
			margin-top: -55px;
			opacity: 0;
		}
		
	}
	
	.submit
	{
		position: relative;
	}
	.submit button
	{
		color: var(--couleurBTNTexte);
	}
	
	&:has(:invalid) button
	{
		/*opacity: .5;*/
	}
	
	&:has(:invalid) .submit:after
	{
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0,0,0,0);
		width: 100%;
		height: 100%;
		z-index: 1;
		cursor: not-allowed;
	}
	
	
	.blocInput:not(:has([required])) .apresChamp div
	{
		display: none;
	}
	
	.parent:has([required])
	{
		.blocInput:has(:valid) .apresChamp .ko
		, .blocInput:has(:invalid) .apresChamp .ok
		{
			display: none;
		}
		.blocInput:has(:valid) .apresChamp .ok
		{
			color: var(--couleurValidation);
		}
		
		.blocInput:has(:invalid) .apresChamp .ko 
		{
			color: var(--couleurAvertissement);
		
		}
		
	}
	
	
	
	
	
	
	.desactiver-border .blocInput
	{
		border: 2px solid var(--formCouleurBordure);
	}
	
	
	.parent:not(.desactiver-border):has(:focus)
	, .parent:not(.desactiver-border):has(:focus):has(:hover)
	{
		border-color: var(--formCouleurFocus)
	}
	
	.masquer-bordure .blocInput
	{
		border:none;
	}
	
	.parent:has(.explicationErreur:not(:empty)) .blocInput.invalid
	{
		border-color: var(--couleurAvertissement)!important;
	}

	.supprimer-espace-label label:empty
	{
		display: none;
	}
	
	.supprimer-espace-bottom
	{
		margin-bottom: 0!important
	}
	
	input:not([type="checkbox"]):not([type="radio"])[disabled]
	, select[disabled], textarea[disabled]
	, input:not([type="checkbox"]):not([type="radio"])[readonly]
	, select[readonly], textarea[readonly]
	{
		background-color: var(--formCouleurBordure);	
	}
	
	.reassurances
	{
		display: flex;
		gap: 1em;
		padding-left: 0;
		font-size: .7em;
		
		--fa-primary-color: rgb(255, 255, 255);
		--fa-secondary-color: var(--couleurBTN); 
		--fa-secondary-opacity: 1;
	}
	
	@media (max-width: 768px) 
	{
		.reassurances{
			justify-content:center;
		}
	}
	
	.reassurances li
	{
		list-style: none;
	}
	
	.reassurances li i, .reassurances li svg
	{
		color:var(--couleurBTN);
	}
	
	@media (max-width: 768px)
	{
		.reassurances li
		{
			display: flex;
			flex-direction: column;
			align-items: center;
		}
		
		.reassurances li i
		{
			display: block;
		}
	}
}

[data-composant="footer"]
{
	&{
		background: var(--couleurDegrader1);
		color: white;
		padding: 20px;
		padding-top:40px;
		position: sticky;
		bottom: 0;
		margin-top: -20px;
		
	}
	
	@media (max-width: 820px)
	{
		h2, h3{
			font-size: 1.5em!important;
		}
	}
	
	& > div {
		display: flex;
		justify-content: space-between;
		gap: 1em;
	}
	
	@media (max-width: 720px)
	{
		& > div {
			display: block;
		}
	}
	
	
	@media (max-width: 820px)
	{
		& > div > div{
			max-width: 350px;
		}
	}
	
	.txt{
		max-width: 500px;
	}
	#menus{
		display: flex;
		gap: 1em;
	}
	
	@media (max-width: 720px)
	{
		nav {
			font-size: .8em;
		}
	}
	
	
	ul{
		padding-left: 0;
	}
	li{
		list-style: none;
		padding-left: 0;
	}
	
	h2, h3, h4{
		color: white !important;
	}
	
	
	a{
		color: white;
	}
	
	li a{
		text-decoration: none;
	}
	
	[data-composant="bouton"]
	{
		color: var(--couleurBTNTexte);
	}
	
	
	#copyright
	{
		&{
			font-size: .8em;
			
		}
		
		p{
		}
	}
	
	
}

.balise
{
	&{
		background: white;
		padding: 5px 30px;
		border-radius: var(--borderRadiusS);
		width: fit-content;
		font-size: .8em;
		position: relative;
		padding-right: 20px;
		margin-bottom: 20px
	}
	
	&:before
	{
		content: " ";
		aspect-ratio: 1/1;
		width: 10px;
		background: var(--couleurTexte);
		border-radius: 50%;
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
}


main{
	padding-bottom: 20px;
}


#_accueil main > section:not(#banniere)
, #_realisations-enfant main > section:not([data-composant="avant-apres"])
{
	margin: 100px auto;
}

#contact > div{
	background: var(--couleurBTN2);
}


#_realisations-enfant
{
	#banniere{
		&{
			margin: 0;
			height: 100dvh;
			background: rgb(from var(--couleur1) r g b / 20%);
			color: initial;
			position: sticky;
			top: 0;
		}
		
		h1{
			color: var(--couleurTitre);
			font-size: 3em;
		}
		
	}
	
	[data-composant="PresentationProjet"]
	{
		background: white;
		position: relative;
	}
	
	#retour{
		margin: auto;
		display: block;
		width: max-content;
		margin-bottom: 100px;
		background: none;
		color: var(--couleurBTN);
		border: 1px solid;
	}
}


#_aPropos
{
	section 
	{
		&:not([data-composant="banniere-hero"]) :is(h1, h2, h3, h4, h5, h6)
		{
			&
			{
				font-size: 1.5em;
			}
			
			& strong{
				font-size: 3em;
				display: block;
				text-transform: uppercase;
			}
		}
	}
	
	.histoire{
		&{
			margin: 0;
			height: 100dvh;
			background: rgb(from var(--couleur1) r g b / 20%);
			color: initial;
		}
		
		h2{
			color: var(--couleurTitre);
			font-size: 1.5em;
		}
		
		h2 strong{
			display: block;
			font-size: 2.5em;
		}
		
	}
	
	#realisations{
		margin: 50px auto;
		display: block;
		width: max-content;
		background: none;
		color: var(--couleurBTN);
		border: 1px solid;
	}
	
	
}
