/*
	Theme Name: mecenat-sacem
	Theme URI: 
	Description: 
	Version: 1.0
	Author: WD 2025
	Author URI: https://www.workdivision.paris

*/

:root {
	--color-orange: rgba(235, 89, 55, 1);
	
	--color-blanc: rgba(255, 255, 255, 1);
	--color-noir: rgba(0, 0, 0, 1);
	--color-gris: rgba(155, 155, 155, 1);

	--font-xs: 1.4rem;
	--lineh-xs: 2rem;

	--font-s: 1.6rem;
	--lineh-s: 2rem;

	--font-m: clamp(1.6rem, 3.2vw + 0.2rem, 2.2rem);
	--lineh-m: clamp(2.2rem, 4.3vw + 0.3rem, 3rem);

	--font-xm: clamp(2.4rem, 3.2vw + 1rem, 3rem);
	--lineh-xm: clamp(2.8rem, 4.3vw + 0.9rem, 3.6rem);

	--font-l: 3rem;
	--lineh-l: 4rem;

	--font-xl: clamp(2.6rem, 12.8vw - 3rem, 5rem);
	--lineh-xl: clamp(2.6rem, 12.8vw - 3rem, 5rem);

	--font-xxl: clamp(3.8rem, 25.1vw - 7.2rem, 8.5rem);
	--lineh-xxl: clamp(3.8rem, 25.1vw - 7.2rem, 8.5rem);


}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body{
	position: relative;
	font-family: "scale-variable", sans-serif;
	font-variation-settings: "wght" 400, "wdth" 100;
	font-optical-sizing: auto;
    font-size: var(--font-m);
    line-height: var(--lineh-m);
    font-style: normal;
    font-weight: 400;
	color: var(--color-noir);
	letter-spacing: 0.8px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
body.page-template-page-contact{
	background-position: center center;
}
body.home,
body.bg-defaut{
	background-image: image-set(
		url(img/bg-sacem.avif) type("image/avif"),
		url(img/bg-sacem.jpg) type("image/jpeg")
	);
}
body.bg-vert{
	background-image: image-set(
		url(img/bg-vert.webp) type("image/webp"),
		url(img/bg-vert.jpg) type("image/jpeg")
	);
}
main{
	overflow: hidden;
}
/* clear */
.clear:before,
.clear:after{
    content:' ';
    display:table;
}

.clear:after{
    clear:both;
}
.clear{
    *zoom:1;
}
p{
	margin-bottom: 1.5rem;
}
img{
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}
a{
	color: var(--color-noir);
	text-decoration:none;
	transition: background 300ms ease, color 400ms, opacity 300ms ease;
}
.content-desc p a,
.content p a{
	text-decoration: underline!important;
}
.section-img-txt a:hover,
.section-titre-img a:hover,
.section-img-txt a,
.section-titre-img a{
	text-decoration:underline;
}
a:hover,
a:active{
	text-decoration: none;
	outline:0;
}
p a:hover,
p a:active{
	text-decoration: underline;
	outline:0;
}
:hover{
	transition: color 400ms, opacity 300ms ease;
	-webkit-transition: color 400ms, opacity 300ms ease;
	-moz-transition: color 400ms, opacity 300ms ease;
	-ms-transition: color 400ms, opacity 300ms ease;
	-o-transition: color 400ms, opacity 300ms ease;
}
a.nohover{
	text-decoration: none!important;
}

input:focus{
	outline:0;
	border:1px solid var(--color-noir);
}
h1,h2,h3,h4{
	/*color: var(--color-noir);*/
}
h1{
	font-size: var(--font-xl);
	line-height: var(--lineh-xl);
	font-weight: 300;
}
h2{
	font-size: var(--font-sl);
	line-height: var(--lineh-sl);
	font-weight: 400;
}
h3{
	font-size: var(--font-xm);
	line-height: var(--lineh-xm);
    font-weight: 400;
}
h4{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
	font-weight: 400;
}
ul{
	margin: 1em 0.5em;
	padding-left: 0.5em;
}
ul.no-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
p + ul{
	margin-top: 0.5rem;
}
p:has(+ ul) {
	margin-bottom: 0.5rem;
}
strong{
	font-weight: 600!important;
}
.article-content strong,
p strong{
	color: var(--color-noirc);
}
.js-on .fade-r,
.js-on .fade-l,
.js-on .fade-d,
.js-on .fade-o,
.js-on .fade{
	opacity: 0;
}
.fadeIn{
    animation-name: fadeIn;
}
.trans-all{
	transition: all 300ms ease;
}
.animated{
    animation-duration: 500ms;
}
.js-on .fade.in{
	transform: translateY(20px);
	/*animation-delay: .3s;*/
	animation-duration: .3s;
	animation-name: fadeIn;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-d.in{
	transform: translateY(-20px);
	animation-delay: 1s;
	animation-duration: 1s;
	animation-name: fadeInDown;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-l.in{
	transform: translateX(40px);
	animation-delay: .3s;
	animation-duration: .5s;
	animation-name: fadeInL;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-r.in{
	transform: translateX(-40px);
	animation-delay: .3s;
	animation-duration: .5s;
	animation-name: fadeInR;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-o.in{
	transform: translateX(-60px);
	animation-delay: .5s;
	animation-duration: 1s;
	animation-name: fadeInR;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out; 
}
/*
.js-on .fade.in:nth-child(1) {
  animation-delay: 0s;
}
*/
.js-on .fade-l.in:nth-child(2),
.js-on .fade-r.in:nth-child(2),
.js-on .fade.in:nth-child(2) {
	animation-delay: 0.4s;
}
.js-on .fade-l.in:nth-child(3),
.js-on .fade-r.in:nth-child(3),
.js-on .fade.in:nth-child(3) {
	animation-delay: 0.6s;
}
.js-on .fade-l.in:nth-child(4),
.js-on .fade-r.in:nth-child(4),
.js-on .fade.in:nth-child(4) {
	animation-delay: 0.7s;
}
.js-on .fade.in:nth-child(5) {
	animation-delay: 0.8s;
}
.js-on .fade.in:nth-child(6) {
	animation-delay: 0.9s;
}
.js-on .fade.in:nth-child(7) {
	animation-delay: 1s;
}
.js-on .fade.in:nth-child(8) {
	animation-delay: 1.1s;
}
.js-on .fade.in:nth-child(9) {
	animation-delay: 1.2s;
}
.js-on .fade.in:nth-child(10) {
	animation-delay: 1.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeIn{
    -webkit-animation-name:fadeIn;
    animation-name:fadeIn
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeIn{
    -webkit-animation-name:fadeIn;
    animation-name:fadeIn
}
@keyframes fadeInL {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
.fadeInL{
    -webkit-animation-name:fadeInL;
    animation-name:fadeInL;
}

@keyframes fadeInR {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

/*
.fadeInR{
    -webkit-animation-name:fadeInL;
    animation-name:fadeInL;
}
*/
.inline-btn{
	 gap: 30px;
}
.btn{
	position: relative;
	display: block;
	padding: 3rem;
	font-size: var(--font-xl);
	line-height: var(--lineh-xl);
	font-weight: 900;
	border: 2px dotted var(--color-blanc);
	overflow: hidden;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
	color: var(--color-blanc);
	width: 100%;
}

.btn:hover{
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	background-color: var(--color-blanc);
	color: var(--color-sombre);
	border: 2px dotted var(--color-sombre);
}
.readm{
	position: relative;
	display: inline-block;
	border-bottom: 1px solid transparent;
	transition: border .2s ease-out;
}
.readm-dl{
	margin-left: 2rem;
}
.readm::after{
	font-family: 'photosol' !important;
	content: "\e902";
	position: absolute;
	transform: rotate(-90deg);
	font-size: 1.2rem;
	right: -2rem;
}
.readm-dl::after{
	left: -2rem;
	right: auto;
}
.readm-vert:hover{
	border-bottom-color: var(--color-vert);
	transition: border .2s ease-out;
}
.readm-bleu:hover{
	border-bottom-color: var(--color-bleu);
	transition: border .2s ease-out;
}
.readm-violet:hover{
	border-bottom-color: var(--color-violet);
	transition: border .2s ease-out;
}
.full-img img{
	object-fit: cover;
}
.rounded img,
.rounded{
	border-radius: 30px;
	/*overflow: hidden;*/
}
/*------------------------------------*\
    FONTS SIZES
\*------------------------------------*/
strong,
.txt-bold{
	font-weight: 700!important;
	font-variation-settings: "wght" 700;
}
.txt-xlight{
	font-weight: 200!important;
}
.txt-light{
	font-weight: 300!important;
	font-variation-settings: "wght" 300;
}
.txt-regular{
	font-weight: 400!important;
}
.txt-medium strong,
.txt-medium{
	font-weight: 500!important;
}
.txt-sbold{
	font-weight: 600!important;
}
.txt-xbold{
	font-weight: 900!important;
}
.txt-ital{
	font-style: italic;
}
.txt-xs{
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.txt-s{
	font-size: var(--font-s);
	line-height: var(--lineh-s);
}
.txt-m{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
}
.txt-xm{
	font-size: var(--font-xm);
	line-height: var(--lineh-xm);
}
.txt-l{
	font-size: var(--font-l);
	line-height: var(--lineh-l);
}
.txt-xl{
	font-size: var(--font-xl);
	line-height: var(--lineh-xl);
}
.txt-xxl{
	font-size: var(--font-xxl);
	line-height: var(--lineh-xxl);
	font-variation-settings: "wdth" 150, "wght" 400;
}
.txt-noir{
	color: var(--color-noir);
}
.txt-orange{
	color: var(--color-orange);
}
.txt-blanc a,
.txt-blanc{
	color: var(--color-blanc);
}
.txt-gris{
	color: var(--color-gris);
}
.txt-up{
	text-transform: uppercase!important;
}
.txt-space{
	letter-spacing: 0.05rem;
}
.txt-xspace{
	letter-spacing: 0.1rem;
}
.txt-balance{
	text-wrap:balance;
}
.txt-extend{
	font-variation-settings: "wdth" 150, "wght" 400;
}
.txt-xl.txt-extend{
	font-variation-settings: "wdth" 150, "wght" 400;
}
.txt-up.txt-extend.txt-bold{
	font-variation-settings: "wdth" 125, "wght" 700;
	line-height: 2rem;
}
.txt-xm.txt-condensed{
	font-variation-settings: "wdth" 50, "wght" 700;
	font-size: var(--font-xm);
	line-height: 3rem;
	text-transform: uppercase;
}
.txt-m.txt-xcondensed {
	font-family: "scale-variable",sans-serif;
	font-variation-settings: 'wdth' 50, 'wght' 700;
  }
@media only screen and (min-width: 640px) and (max-width: 991px){
	.txt-m{
		font-size: 1.6rem;
		line-height: 2.2rem;
	}
	.txt-up.txt-extend.txt-bold{
		font-variation-settings: "wdth" 100, "wght" 700;
		line-height: 2rem;
	}
}
/*------------------------------------*\
    BACKGROUNDS
\*------------------------------------*/
.bg-blanc{
	background-color: var(--color-blanc);
}
.bg-noir{
	background-color: var(--color-noir);
}
.b-bottom{
	border-bottom: 1px solid var(--color-gris);
}
.b-top{
	border-top: 1px solid var(--color-gris);
}
.b-bottom-blanc{
	border-bottom: 1px solid var(--color-blanc);
}
.b-top-blanc{
	border-top: 1px solid var(--color-blanc);
}

/*------------------------------------*\
    VIGNETTES
\*------------------------------------*/
.vignette-card {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	cursor: pointer;
	outline: none;
}
.vignette-card:focus {
	outline: 3px solid var(--color-orange);
	outline-offset: 4px;
}
.vignette-card:focus:not(:focus-visible) {
	outline: none;
}
.vignette-card:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 4px;
}
.vignette-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}
.vignette-card:hover .vignette-image,
.vignette-card.active .vignette-image {
	transform: scale(1.05);
}
.vignette-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-orange);
	mix-blend-mode: multiply;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.vignette-card:hover .vignette-overlay,
.vignette-card.active .vignette-overlay,
.vignette-card:focus .vignette-overlay {
	opacity: 1;
}
.vignette-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.vignette-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
	width: 100%;
	padding: 0 2rem;
}
.vignette-card:hover .vignette-title,
.vignette-card.active .vignette-title,
.vignette-card:focus .vignette-title {
	transform: translate(-50%, -150%);
	opacity: 0;
}
.vignette-description {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	padding: 2rem;
	transform: translate(-50%, calc(100% + 50%));
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
	opacity: 0;
}
.vignette-card:hover .vignette-description,
.vignette-card.active .vignette-description,
.vignette-card:focus .vignette-description {
	transform: translate(-50%, -50%);
	opacity: 1;
}
/* Réduction de mouvement pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
	.vignette-card *,
	.vignette-card *::before,
	.vignette-card *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
/*------------------------------------*\
    PRESENTATION
\*------------------------------------*/
.chiffre-card-col{
	padding: 0 15px;
}
.chiffre-card {
	padding: 12%;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--color-noir);
	border-bottom: 5px solid var(--color-noir);
}
.chiffre-card-1 {
	background-color: rgba(245, 235, 220, 1);
}
.chiffre-card-2 {
	background-color: rgba(245, 235, 220, 1);
}
.chiffre-card-3 {
	background-color: rgba(228, 233, 247, 1);
}
.chiffre-card-4 {
	background-color: rgba(228, 233, 247, 1);
}
.chiffre-card p {
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	margin-bottom: 1rem;
}
.chiffre-card p:last-child {
	margin-bottom: 0;
}
.chiffre-card strong {
	font-variation-settings: "wdth" 50, "wght" 700;
	font-size: var(--font-xm);
	line-height: 3rem;
	text-transform: uppercase;
	padding-bottom: 1.5rem;
}
.pres-legende{
	font-size: 1.2rem;
	line-height: 1.6rem;;
}
@media only screen and (min-width:992px){
	.bg-blanc-space{
		padding: 0 20px;
	}
}
/*------------------------------------*\
    PRESENTATION
\*------------------------------------*/
#gouvernance .container-fluid{
	overflow: hidden;
}
#gouvernance .bg-transp{
	position: relative;
	border: 20px solid var(--color-blanc);
}
#gouvernance .bg-transp::before{
	content: '';
	position: absolute;
	left: -20px;
	top: -20px;
	right: -20px;
	bottom: -20px;
	z-index: -1;
	border: 20px solid var(--color-blanc);
	border-radius: 50px;
}
 #gouvernance p strong{
 	font-variation-settings: "wght" 500!important;
 }
.gov-img{
	width: 100%;
	margin-bottom: 4rem;
	text-align: center;
}
@media only screen and (min-width:992px){
	.gov-content{
		display: flex;
	}
	.gov-img{
		width: 30%;
		margin-right: 4rem;
		margin-bottom: 0;
	}
	#gouvernance .bg-transp{
		border: 40px solid var(--color-blanc);
	}
}

/*------------------------------------*\
    MEMBRES
\*------------------------------------*/
.membre-item{
	margin-bottom: 2rem;
}
.membre-card {
	position: relative;
	width: 100%;
	aspect-ratio: 6/4;
	overflow: hidden;
	cursor: pointer;
	outline: none;
}
.membre-card:focus {
	outline: 3px solid var(--color-orange);
	outline-offset: 4px;
}
.membre-card:focus:not(:focus-visible) {
	outline: none;
}
.membre-card:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 4px;
}
.membre-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.membre-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}
.membre-card:hover .membre-img,
.membre-card.active .membre-img,
.membre-card:focus .membre-img {
	transform: scale(1.05);
}
.membre-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(94,128,206);
	mix-blend-mode: multiply;
	opacity: 0.3;
	transition: opacity 0.4s ease, background-color 0.4s ease;
}
.membre-card:hover .membre-overlay,
.membre-card.active .membre-overlay,
.membre-card:focus .membre-overlay {
	background-color: var(--color-orange);
	opacity: 1;
}
.membre-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 2rem;
	padding-bottom: 3rem;
}
.membre-nom {
	position: absolute;
	bottom: 3.5rem;
	left: 50%;
	transform: translateX(-50%);
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
	width: 100%;
	padding: 0 2rem;
	font-size: var(--font-m);
	line-height: var(--lineh-m);
}
.membre-poste {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
	width: 100%;
	padding: 0 2rem;
	font-size: var(--font-m);
	line-height: var(--lineh-m);
	font-size: 1.8rem;
}
.membre-card:hover .membre-nom,
.membre-card.active .membre-nom,
.membre-card:hover .membre-poste,
.membre-card.active .membre-poste {
	transform: translateX(-50%) translateY(-150%);
	opacity: 0;
}
.membre-details {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	padding: 2rem;
	transform: translate(-50%, calc(100% + 50%));
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
	opacity: 0;
}
.membre-card:hover .membre-details,
.membre-card.active .membre-details,
.membre-card:focus .membre-details {
	transform: translate(-50%, -50%);
	opacity: 1;
}
.membre-card:hover .membre-overlay,
.membre-card.active .membre-overlay,
.membre-card:focus .membre-overlay {
	background-color: var(--color-orange);
	opacity: 1;
}
.membre-card:hover .membre-nom,
.membre-card.active .membre-nom,
.membre-card:focus .membre-nom,
.membre-card:hover .membre-poste,
.membre-card.active .membre-poste,
.membre-card:focus .membre-poste {
	transform: translateX(-50%) translateY(-150%);
	opacity: 0;
}
/* Réduction de mouvement pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
	.membre-card *,
	.membre-card *::before,
	.membre-card *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
.membre-bio {
	margin-bottom: 1rem;
}
.membre-credit {
	margin-top: 1rem;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
}
@media only screen and (min-width:992px){
	.membre-item{
		margin-bottom: 4rem;
	}
}
/*------------------------------------*\
    BLOC MEMBRES
\*------------------------------------*/
.membres-portrait-img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}
/*------------------------------------*\
    SPACES
\*------------------------------------*/
.pt15{
    padding-top: 0.5em;
}
.pt30{
    padding-top: 1.5em;
}
.pt50{
    padding-top: 2.5em;
}
.pt100{
    padding-top: 5em;
}
.pb0{
    padding-bottom: 0;
}
.pb15{
    padding-bottom: 0.5em;
}
.pb30{
    padding-bottom: 1.5em;
}
.pb50{
    padding-bottom: 2.5em;
}
.pb100{
    padding-bottom: 5em;
}
.mt5{
    margin-top: .5em;
}
.mt15{
    margin-top: 1em;
}
.mt30{
    margin-top: 1.5em;
}
.mt50{
    margin-top: 2.5em;
}
.mt100{
    margin-top: 5em;
}
.mb0{
	margin-bottom: 0;
}
.mb5{
	margin-bottom: .5em;
}
.mb15{
    margin-bottom: 1em;
}
.mb30{
    margin-bottom: 1.5em;
}
.mb50{
    margin-bottom: 2.5em;
}
.mb100{
    margin-bottom: 5em;
}
@media only screen and (min-width:992px){
	.pr0{
		padding-right: 0!important;
	}
	.pl0{
		padding-left: 0!important;
	}
	.mr0{
		margin-right: 0!important;
	}
	.ml0{
		margin-left: 0!important;
	}
	.plr0{
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.mlr0{
		margin-left: 0!important;
		margin-right: 0!important;
	}
	.pr15 {
		padding-right: 1.5em !important;
	  }
	.pl15 {
		padding-left: 1.5em !important;
	  }
	.pr30 {
		padding-right: 2.5em !important;
	  }
	.pl30 {
		padding-left: 2.5em !important;
	  }
	.pr50 {
		padding-right: 5em !important;
	  }
	.pl50 {
		padding-left: 5em !important;
	  }
	.plr5{
		padding-left: 5%!important;
		padding-right: 5%!important;
	}
	.plr6{
		padding-left: 6%!important;
		padding-right: 6%!important;
	}
	.plr8{
		padding-left: 8%!important;
		padding-right: 8%!important;
	}
	.plr10{
		padding-left: 10%! important;
		padding-right: 10%!important;
	}
	.plr12{
		padding-left: 12%! important;
		padding-right: 12%!important;
	}
	.plr15{
		padding-left: 15%! important;
		padding-right: 15%!important;
	}
}
@media only screen and (max-width:991px){
	.plr5-mobil{
		padding-left: 30px!important;
		padding-right: 30px!important;
	}
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.d-flex-between{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.d-flex-center{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.d-flex-h{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.wp-block-embed__wrapper,
.embed-container{ 
    position: relative;
    padding-bottom: 56.25%;
	margin: 1.5rem 0 3rem 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.wp-block-embed__wrapper iframe,
.embed-container iframe,
.embed-container object,
.embed-container embed{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.single .item-content iframe{
	width: 100%;
}
.img-fit,
.img-fit img{
	overflow: hidden;
	object-fit: cover;
	width: 100%;
	/*height: 100%;*/
}
.img-fit.img-pano img{
	aspect-ratio: 16/9;
}
.img-fit.img-wide img{
	aspect-ratio: 16/7;
}
.wp-block-image figure figcaption{
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.has-background{
	padding: 30px;
}
.mejs-audio{
	margin-bottom: 1em;
}
.stick{
	position: sticky;
	top: 20%;
}
.article-content img{
	margin: 1em 0;
}

/*------------------------------------*\
   FORMS
\*------------------------------------*/
::placeholder{
	opacity: 0.9!important;
}
/* Amélioration accessibilité placeholders */
input:required{
    box-shadow:none;
}
input:invalid{
    border-bottom-color: var(--color-violet);
}
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.wpcf7-form-control-wrap{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
}
/* Labels visuellement cachés pour accessibilité */
.wpcf7-form label:not(.wpcf7-acceptance label):not(.wpcf7-list-item-label) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.wpcf7-form .wpcf7-spinner{
	position: absolute;
	right: 10px;
	top: 10px;
	margin: 0 5px;
	background: none!important;
 }
.wpcf7-form .wpcf7-spinner::before {
	background-color: var(--color-noir);
 }
select,
textarea,
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="text"],
input[type="email"]{
    width: 100%;
    border: none;
	background: var(--color-blanc);
	font-size: var(--font-xs);
	margin: 0.5rem 0 1rem 0;
	padding: 0.9rem 2rem;
	border-radius: 3rem;
	border: 1px solid var(--color-blanc);
}
textarea:focus,
select.filter-select option:focus,
select.filter-select:focus{
	border: none;
	outline: none;
}
select.filter-select{
	display: inline-block;
	width: auto;
	padding: 1rem;
	color: var(--color-bleu);
}
select.filter-select option:hover,
select.filter-select option{
	color: var(--color-bleu)!important;
}
.wpcf7-form select{
	padding-bottom: 5px;
}
textarea{
	height: 200px;
	resize: none;
}
textarea:focus{
	border: none;
}
.wpcf7-acceptance{
	font-size: 1.2rem;
	line-height: 1.6rem;
	margin-bottom: 1.5rem;
}
.wpcf7-acceptance label{
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 400;
}
.wpcf7-acceptance input[type="checkbox"]{
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label{
	position: relative;
	padding-left: 35px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before{
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid var(--color-blanc);
	border-radius: 50%;
	background-color: var(--color-blanc);
	position: absolute;
	left: 0;
	top: 2px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.wpcf7-acceptance input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before,
.wpcf7-acceptance label:has(input[type="checkbox"]:checked) .wpcf7-list-item-label::before{
	background-color: var(--color-blanc);
	border-color: var(--color-blanc);
}
.wpcf7-acceptance input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after,
.wpcf7-acceptance label:has(input[type="checkbox"]:checked) .wpcf7-list-item-label::after{
	content: '●';
	position: absolute;
	left: 0px;
	top: 1px;
	color: var(--color-noir);
	font-size: 30px;
	font-weight: bold;
	line-height: 20px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.wpcf7-acceptance label{
	position: relative;
}
.wpcf7 input[type="submit"]{
	position: relative;
	display: inline-block;
	padding: 1.3rem 6rem;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	font-weight: 700;
	border: 1px solid var(--color-noir);
	border-bottom: 5px solid var(--color-noir);
	overflow: hidden;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
}
.wpcf7 input[type="submit"]:hover{
	transition: all 0.3s ease-in-out;
}
.wpcf7 form .wpcf7-response-output{
    margin: .5em 0;
    padding: 0;
    border: none;
	color: var(--color-blanc);
	text-align: left;
	font-weight: 400;
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.wpcf7-not-valid-tip{
	color: red;
	font-size: 1rem;
	position: absolute;
	left: 2rem;
	bottom: 1.2rem;
	line-height: 1rem;
}
div.wpcf7 .ajax-loader{
    display: none!important;
}
form.is-invalid > .acf-error-message{
	visibility: visible;
	display: block;
	position: relative;
	padding: 10px 0;
}
.wpcf7-form .row{
	opacity: 1;
	height: 100%;
}
.wpcf7-form.sent .row{
	opacity: 0;
	height: 0;
	transition: all 0.8s ease-in;
}
.wpcf7-list-item {
	margin: 0;
}
.wpcf7-form.invalid input[type="email"],
.wpcf7-form.invalid input[type="text"]{
	border-color: red;
}
/*------------------------------------*\
   TABLE
\*------------------------------------*/
table{
	margin-top: 1.5em;
	font-size: var(--font-s);
	line-height: 1.5rem;
}
table thead{
	text-transform: uppercase;
	font-size: var(--font-xs);
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--color-grisf);
}
table tr{
	border-top: 1px dashed var(--color-noir);
	border-bottom: 1px dashed var(--color-noir);
}
table tr td:first-child{
	text-align: left;
}
table td{
	padding: 10px;
	text-align: right;
}

/*------------------------------------*\
    CONFIANCE
\*------------------------------------*/
.logo-track{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}
.logo-track .logo-item img{
	max-height: 80px;
	width: auto;
}
@media only screen and (max-width:768px){
	.logo-track{
		flex-wrap: wrap;
		justify-content: center;
	}
	.logo-track .logo-item {
		display: flex;
		flex: 0 1 25%;
	}
}

/*------------------------------------*\
    APPROCHE
\*------------------------------------*/
.approche-items{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2%;
}
.approche-item{
	display: flex;
	flex-direction: column;
	flex: 0 1 44%;
}
.approche .approche-item:last-child{
	flex-basis: 100%;
}
@media only screen and (max-width:768px){
	.approche-items .approche-item {
		flex: 0 1 100%;
	}
}
@media only screen and (min-width:992px){
	.approche-item:last-child,
	.approche-item{
		flex: 0 1 16%;
		box-sizing: border-box;
	}
	.approche .approche-item:last-child{
		flex-basis: 16%;
	}
	.savoir .approche-item:last-child,
	.savoir .approche-item{
		flex: 0 1 20%;
	}
}

/*------------------------------------*\
    OFFRES
\*------------------------------------*/
.item-offre ul{
	margin-top: 0.5rem;
}
.item-offre ul li::marker{
	color: var(--color-rose);
}
.page-comm .item-offre ul li::marker{
	color: var(--color-cyan);
}

/*------------------------------------*\
    QUI SOMMES-NOUS
\*------------------------------------*/
.landing-qui span{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
}
.landing-qui strong{
	font-weight: 500!important;
}
.page-qui .apost-alt{
	transform: rotate(-90deg);
	left: -26%;
	top: 22%;
	width: 150%;
}
.partenaires-item strong{
	font-weight: 500!important;
}
.partenaires-item h2{
	font-family: 'Geomanist';
	font-style: normal!important
}

/*------------------------------------*\
    PAGE
\*------------------------------------*/
@media only screen and (min-width:992px){
	.section-page .bg-blanc{
		padding-left: 40px;
		padding-right: 40px;
	}
}
/*------------------------------------*\
    SEPARATEUR
\*------------------------------------*/
.sep{
	border-top: 1px solid var(--color-noir);
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer-right{
	display: flex;
	align-items: center;
	gap: 15px;
}
.footer a{
	font-weight: 300;
	font-size: var(--font-xs);
}
.footer a:hover{
	text-decoration: none;
	color: var(--color-orange);
}
.footer-menu ul,
.footer-menu-bas ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu::before{
	content: "";
	display: block;
	position: absolute;
	top: 0.5rem;
	left: -4rem;
	height: 93%;
	width: 1px;
	background-color: var(--color-noir);
}
.footer-menu ul li{
	list-style: none;
	margin-bottom: 1rem;
}
.footer-menu-bas ul{
	padding-left: 0;
}
.footer-menu-bas ul li{
	position: relative;
	margin-right: 20px;
}

@media only screen and (min-width:992px){
	.footer-menu-bas ul{
		display: flex;
		flex-wrap: wrap;
		list-style: none;
	}
	.footer-menu-bas ul li::after{
		content: "|";
		position: absolute;
		right: -13px;
		font-size: 1rem;
	}
	.footer-menu-bas ul li:last-child:after{
		content: "";
	}
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:480px){
}

@media only screen and (max-width:768px){
	.full-m{
		padding: 0!important;
	}
	.center-mobil{
		text-align: center!important;
	}
	.hidden-sm{
		display: none;
	}
    .mt50{
        margin-top: 1.5em;
    }
	.mb30{
		margin-bottom: 1em;
	}
    .pt30{
        padding-top: 1em;
    }
    .mb50{
        margin-bottom: 1.5em;
    }
	.mt100{
		margin-top: 2.5em;
	}
	.mb100{
		margin-bottom: 2.5em;
	}
    .pt50{
        padding-top: 1.5em;
    }
    .pb30{
        padding-bottom: 1em;
    }
    .pb50{
        padding-bottom: 1.5em;
    }
	.pb100{
		padding-bottom: 2em;
	}
    .pt100{
        padding-top: 2em;
    }
	.mt0-mobil{
		margin-top: 0;
	}
	.mb0-mobil{
		margin-bottom: 0;
	}
	.pt0-mobil{
		padding-top: 0;
	}
	.pb0-mobil{
		padding-bottom: 0;
	}
	.pb100-mobil{
		padding-bottom: 5rem;
	}
    .pt100-mobil{
        padding-top: 5rem;
    }
	.mb50-mobil{
		margin-bottom: 2.5rem;
	}
	.mt50-mobil{
		margin-top: 2.5rem;
	} 
	.mb100-mobil{
		margin-bottom: 5rem;
	}
	.mt100-mobil{
		margin-top: 5rem;
	}
}
@media only screen and (max-width:992px){
	.plr0-mobil{
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.plr1-mobil{
		padding-left: 5%!important;
		padding-right: 5%!important;
	}
	.plr5-mobil{
		padding-left: 10%!important;
		padding-right: 10%!important;
	}
}
@media only screen and (min-width:320px){
	section{
		scroll-margin-top: 5em;
	}
	.scroll-margin{
		scroll-margin-top: 10em;
	}
}
@media only screen and (min-width:769px){
	.d-flex-center{
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.wp-caption,
.alignright,
.alignleft,
.alignnone{
	margin: 3rem 0;
}
.wp-caption .wp-caption-text,
.gallery-caption{
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	margin: 0;
	padding: 15px 0;
}
blockquote{
	/*float: left;*/
	margin: 1em 1em 1em 0;
	/*max-width: 50%;*/
}
/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print{
	*{
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited{
		text-decoration:underline;
	}
	a[href]:after{
		content:" (" attr(href) ")";
	}
	abbr[title]:after{
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after{
		content:"";
	}
	pre,blockquote{
		page-break-inside:avoid;
	}
	thead{
		display:table-header-group;
	}
	tr,img{
		page-break-inside:avoid;
	}
	img{
		max-width:100% !important;
	}
	@page{
		margin:0.5cm;
	}
	p,
	h2,
	h3{
		orphans:3;
		widows:3;
	}
	h2,
	h3{
		page-break-after:avoid;
	}
}
