/*
	Theme Name: Andjoy
	Theme URI: 
	Description: 
	Version: 2.0
	Author: WD 2025
	Author URI: https://www.workdivision.paris

*/

:root {
	--color-sombre: rgba(31, 21, 90, 1);
	--color-bleu: rgba(13, 31, 158, 1);
	--color-rose: rgba(255, 53, 236, 1);
	--color-cyan: rgba(58, 214, 253, 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: 2.2rem;

	--font-sm: 2rem;
	--lineh-sm: 2.8rem;

	--font-m: 2.4rem;
	--lineh-m: 3rem;

	--font-xm: clamp(2rem, 2.1vw + 1.5rem, 2.8rem);
	--lineh-xm: clamp(2.6rem, 3.2vw + 1.6rem, 3.6rem);
	
	--font-xl: clamp(2.2rem, 2.7vw + 2.3rem, 3.2rem);
	--lineh-xl: clamp(3rem, 2.7vw + 2.3rem, 3.6rem);

	--font-xxl: clamp(4rem, 4.3vw + 0.9rem, 6.4rem);
	--lineh-xxl: clamp(4.6rem, 5.3vw + 0.7rem, 6.4rem);

}

/* Geomanist Black */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-black-webfont.woff2') format('woff2'),
         url('fonts/geomanist-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Geomanist Black Italic */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-black-italic-webfont.woff2') format('woff2'),
         url('fonts/geomanist-black-italic-webfont.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Geomanist Light */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-light-webfont.woff2') format('woff2'),
         url('fonts/geomanist-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Geomanist Medium */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-medium-webfont.woff2') format('woff2'),
         url('fonts/geomanist-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'andjoy';
  src:  url('fonts/andjoy.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'andjoy' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
	content: "\e900";
}
.icon-linkedin:before {
	content: "\e901";
	font-size: var(--font-s);
}


/*------------------------------------*\
    MAIN
\*------------------------------------*/

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body{
	position: relative;
	font-family: 'Geomanist', sans-serif;
	font-optical-sizing: auto;
    font-size: var(--font-s);
    line-height: var(--lineh-s);
    font-style: normal;
    font-weight: 300;
	color: var(--color-blanc);
	letter-spacing: 0;
}
body::before{
	content: "";
	position: fixed;
	z-index: 0;
	inset: 0;
	height: 100vh;
	width: 100vw;
	background: linear-gradient(185deg, rgba(31, 21, 90, 1) 0%, rgba(13, 32, 158, 1) 45%, rgba(255, 53, 236, 1) 100%);
}
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;
	border-radius: 5px;
}
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);
}
.cross {
	position: relative;
	color: var(--color-blanc);
	width: 2.7rem;
	height: 2.7rem;
}
.cross::before,
.cross::after {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background: currentColor;
  border-radius: 999px;
}

.cross::before { transform: rotate(45deg); }
.cross::after  { transform: rotate(-45deg); }

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;
}
.titre-sub::after{
	content: "—";
	display: block;
}
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;
}
.txt-xlight{
	font-weight: 200!important;
}
.txt-light{
	font-weight: 300!important;
}
.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;
}
h1.txt-xbold,
h2.txt-xbold{
	font-family: "abril-display", serif;
	font-weight: 900!important;
	font-style: italic;
	letter-spacing: 0.02rem;
}
.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-sm{
	font-size: var(--font-sm);
	line-height: var(--lineh-sm);
}
.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-sl{
	font-size: var(--font-sl);
	line-height: var(--lineh-sl);
}
.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);
}
.txt-noir{
	color: var(--color-noir);
}
.txt-gris{
	color: var(--color-gris);
}
.txt-vert{
	color: var(--color-vert);
}
.txt-rose{
	color: var(--color-rose);
}
.content-intro h3,
.content-intro h2,
.content-desc h3,
.content-desc h2,
.txt-violet{
	color: var(--color-violet);
}
.txt-bleu{
	color: var(--color-bleu);

}
.txt-bleuf{
	color: var(--color-bleuf);
}
.txt-cyan{
	color: var(--color-cyan);
}
.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;
}
@media only screen and (max-width:991px){
	.txt-s-mobile{
		font-size: var(--font-s);
		line-height: var(--lineh-s);
	}
	.btn{
		padding: 2rem;
		font-size: 2.4rem;
		line-height: 3rem;
	}
}
/*------------------------------------*\
    BACKGROUNDS
\*------------------------------------*/
.bg-blanc{
	background-color: var(--color-blanc);
}
.bg-noir{
	background-color: var(--color-noir);
}
.bg-bleu{
	background-color: var(--color-bleu);
}
.bg-sombre{
	background-color: var(--color-sombre);
}
.bg-rose{
	background-color: var(--color-rose);
}
.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);
}
/*------------------------------------*\
    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/10;
}
.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;
	color: var(--color-gris)!important;
}
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{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
}
.wpcf7-form label{
	color: var(--color-violet);
}
.wpcf7-form .wpcf7-spinner{
	margin: 0 5px;
}
.wpcf7-form .wpcf7-spinner{
	background-color: var(--color-blanc);
 }
.wpcf7-form .wpcf7-spinner::before {
	background-color: var(--color-blanc);
 }
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);
	color: var(--color-gris);
	font-size: var(--font-xs);
	font-weight: 400;
	margin: 0.5rem 0 3rem 0;
	border-bottom: 1px solid var(--color-bleu);
}
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: 50px;
	resize: none;
}
textarea:focus{
	border: none;
}
.wpcf7-acceptance{
	line-height: 1.6rem;
}
.wpcf7-acceptance label{
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--color-grisf);
	font-weight: 400;
}
.wpcf7-acceptance .wpcf7-list-item-label{
	font-weight: 700;
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.wpcf7-acceptance input[type="checkbox"]{
	position: relative;
	top: 2px;
}
.wpcf7 input[type="submit"]{
	position: relative;
	display: inline-block;
	padding: 1.5rem 4rem;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	font-weight: 600;
	border: 1px solid var(--color-bleu);
	overflow: hidden;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
	background-color: var(--color-bleu);
	color: var(--color-blanc);
}
.wpcf7 input[type="submit"]:hover{
	transition: all 0.3s ease-in-out;
	background-color: var(--color-violet);
}
.wpcf7 form .wpcf7-response-output{
    margin: .5em 0;
    padding: 0;
    border: none;
	color: var(--color-violet);
	text-align: center;
	font-weight: 400;
	font-size: var(--font-m);
}
.wpcf7-not-valid-tip{
	color: red;
	font-size: var(--font-xs);
	position: absolute;
	left: 0;
	bottom: -2.5rem;
}
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;
}
@media only screen and (min-width:992px){
	select,
	textarea,
	input[type="password"],
	input[type="email"],
	input[type="url"],
	input[type="tel"],
	input[type="text"],
	input[type="email"]{
		margin: 0.5rem 0 5rem 0;
	}
}

/*------------------------------------*\
   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;
}

/*------------------------------------*\
    BLOCS LANDING
\*------------------------------------*/
.apost{
	position: absolute;
	display: flex;
	justify-content: center;
	width: 120%;
	left: -10%;
}
.apost img{
	mix-blend-mode: color-dodge;
}
.apost-alt{
	left: -40%;
}
.landing-desc strong{
	font-weight: 500!important;
}
.landing-citation{
	background: url(img/apost-mini.svg) top center no-repeat;
	background-size: contain;
	min-height: 500px;
	max-width: 360px;
}
.landing-comm .landing-citation{
	background: url(img/apost-mini-alt.svg) top center no-repeat;
	background-size: contain;
	min-height: 500px;
	max-width: 360px;
}
@media only screen and (max-width:768px){
	.landing-citation{
		padding-top: 10rem!important;
	}
}
/*------------------------------------*\
    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
\*------------------------------------*/
.page-defaut h2{
	text-transform: uppercase;
	color: var(--color-rose);
	font-size: var(--font-m);
}

.page-defaut .apost{
	left: -25%;
	width: 145%;
	transform: rotate(90deg);
	top: 9%;
}
/*------------------------------------*\
    SEPARATEUR
\*------------------------------------*/
.sep{
	border-top: 1px solid var(--color-noir);
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer-right{
	display: flex;
	align-items: center;
	gap: 15px;
}
.footer .footer-socials a{
	display: inline-block;
	margin-right: 1rem;
}
.footer a{
	font-weight: 300;
	color: var(--color-blanc);
	text-transform: uppercase;
	font-size: var(--font-s);
}
.footer a:hover{
	text-decoration: none;
	color: var(--color-blanc);
}
.footer-menu-bas ul{
	margin: 0;
}
.footer-menu-bas ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding-left: 0;
}
.footer-menu-bas ul li{
	position: relative;
	margin-right: 20px;
}
.footer-menu-bas ul li::after{
	content: "-";
	position: absolute;
	right: -13px;
	font-size: 1rem;
}
.footer-menu-bas ul li:last-child:after{
	content: "";
}
@media only screen and (min-width:992px){
}
/*------------------------------------*\
    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: 3em;
	}
	.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;
	}
}
