/*-----------------------------
		GENERAL
-----------------------------*/

:root {
  --fontSize: 18px;
  --wrapper: 1382px;
  --gutter: 3em;
  --textColor: #000000;
  --black: #222c40;
  --colorMouse: #222c40;
  --color1: #eb5a3c;
  --color2: #344d5d;
  --trueBlack: #000000;
  --lightGrey: #f4f4f4;
  --baseFont: 'Poppins', sans-serif;
  --titleFont: 'gamay-variable', sans-serif;
  --borderRadius: 1em;
  --boxShadow: 0 0 10px 2px rgba(0,0,0,0.125);
  --lightBoxShadow: 0 0 20px 1px rgba(0,0,0,0.05);
  --veryLightBoxShadow: 0 0 10px 1px rgba(0,0,0,0.035);
  --headerHeight: 185px;
}
@media screen and (max-width: 1300px) {
  :root {
    --gutter: 2.5em;
  }
}
@media screen and (max-width: 1100px) {
  :root {
    --fontSize: 16px;
    --headerHeight: 164px;
  }
}
@media screen and (max-width: 950px) {
  :root {
    --headerHeight: 105px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --fontSize: 15px;
    --headerHeight: 102px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --gutter: 2em;
    --fontSize: 14px;
    --headerHeight: 98px;
  }
}

html {
  overflow-x: clip;
  max-width: 100vw;
}
body {
  color: var(--textColor);
  font-family: var(--baseFont);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  font-size: var(--fontSize);
  background-color: #fff;
  overflow-x: clip;
  max-width: 100vw;
}
body.hpd {
	padding-top: var(--headerHeight);
}
main {
	max-width: 100vw;
/*	overflow-x: hidden;
	overflow-y: hidden;*/
}
main .wrapper {
/*	background-color: #fff;
*/}

section {
	background-color: #fff;
}

.f-title {
  font-family: var(--titleFont);
}

.reveal-mask, .reveal-mask-child > * {
	clip-path: inset(0 100% 0 0);
	transition: 1.5s 1s;
}
.reveal .reveal-mask, .reveal.reveal-mask,
.reveal .reveal-mask-child > *, .reveal.reveal-mask-child > * {
	clip-path: inset(0);
}

.ps-content .separator {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}
.ps-content .separator.light {
	border-color: #d9d9d9;
}
.ps-content:not(.no-margin) > *:not(:first-child) {
	margin-top: 0.5rem;
}
.ps-content.more-margin > *:not(:first-child) {
	margin-top: 1.5rem;
}
.ps-content [class^='wrapper-'],
.ps-content [class*='wrapper-'] {
	margin-left: auto;
	margin-right: auto;
}

.ps-content .ps-image img {
	object-fit: contain;
	object-position: center left;
	font-size: 0.9em;
}
.ps-content .ps-image.s-tiny img {
	height: 3em;
	width: 9em;
}
.ps-content .ps-image.s-small img {
	height: 4em;
	width: 12em;
}
.ps-content .ps-image.s-medium img {
	height: 6em;
	width: 18em;
}
.ps-content .ps-image.s-large img {
	height: 9em;
	width: 27em;
}

@media screen and (max-width: 800px) {
	.ps-content .ps-image img { font-size: 1em; }
}

.ps-video {
	display: inline-block;
	width: 100%;
	max-width: 800px;
}
.ps-video iframe, .ps-video video {
/*	border-radius: 1em;
*/}
.ps-video .iframe-wrapper {
	padding-bottom: 56%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.ps-video .iframe-wrapper > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ps-video .legend {
	padding: 1em 0.25em;
	font-size: 0.9em;
}
.faq-layout {
	position: relative;
	text-align: left;
}
.faq-layout .line {
	position: relative;
	border-bottom: var(--lightGrey) 1px solid;
	transition: 0.3s;
}
.faq-layout .line.active {
	border-color: transparent;
}
.faq-layout .question {
	position: relative;
	padding: 1em 1em 0.75em 3.5em;
	cursor: pointer;
}
.faq-layout .question::before {
	z-index: 3;
	content: '';
	position: absolute;
	top: 50%;
	left: 0.75em;
	width: 1.5em;
	height: 1.5em;
	background-color: var(--lightGrey);
	border-radius: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
}
.faq-layout .active .question::before {
	background-color: var(--color1);
}
.faq-layout .question::after {
	z-index: 4;
	content: '';
	position: absolute;
	top: 50%;
	left: 0.75em;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../../img/simple-arrow-2.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 45% auto;
	transform: translateY(-50%);
	transition: 0.3s;
}
.faq-layout .question:hover::after,
.faq-layout .active .question::after {
	transform: translateY(-50%) rotate(90deg);
}
.faq-layout .active .question::after {
	filter: brightness(0) invert(1);
}
.faq-layout .question > * {
	line-height: 1.2em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 400;
}
.faq-layout .line:not(.active) .answer {
	display: none;
}
.faq-layout .answer {
	position: relative;
	padding: 1.5em;
	background-color: var(--lightGrey);
	margin-bottom: 1em;
}
.faq-layout .answer::before {
	content: '';
	z-index: 2;
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 3em;
	height: 3em;
	background-color: var(--lightGrey);
}

/* Works on Firefox */
* {
/*  scrollbar-width: thin;
*/  scrollbar-color: var(--color1) var(--lightGrey);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
/*  width: 12px;
*/}

*::-webkit-scrollbar-track {
  background: var(--lightGrey);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color1);
}




/*******************
	helpers
*******************/


.color1 { color: var(--color1); }
.color2 { color: var(--color2); }
.bg-color1 { background-color: var(--color1); color:#fff; }
.bg-color2 { background-color: var(--color2); color:#fff; }
.bg-color3 { background-color: var(--color3); color: #fff; }


.swiper-container {
	position: relative;
}
.swiper-fade > .swiper-wrapper > .swiper-slide:not(.swiper-slide-visible) {
	opacity: 0 !important;
}
.swiper.width-auto .swiper-slide {
	width: auto;
}
.swiper.equal-height .swiper-slide {
	height: auto !important;
}
.swiper.equal-height .swiper-slide > * {
	height: 100% !important;
}
.swiper-button {
	--swiper-navigation-size: 18px;
	position: absolute;
	top: 50%;
	left: calc(var(--swiper-navigation-size) * -2.5);
	display: block;
	color: var(--textColor);
}
.swiper-button-next {
	left: auto;
	right: calc(var(--swiper-navigation-size) * -2.5);
}
.swiper-button::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(var(--swiper-navigation-size) * 2);
	height: calc(var(--swiper-navigation-size) * 2);
	border-radius: 50%;
	background-color: var(--color1);
	transform: translate(-50%, -50%);
}
.swiper-button-next::after {
	padding-left: 1px;
}
.swiper-button-prev::after {
	padding-right: 1px;
}
@media screen and (max-width: 600px) {
	.swiper-button-prev {
		left: auto;
		right: calc(100% + var(--swiper-navigation-size));
	}
	.swiper-button-next {
		right: auto;
		left: calc(100% + var(--swiper-navigation-size));
	}
}
.swiper-scrollbar-horizontal {
	margin-top: 1em;
	height: 0.5em;
	background-color: rgba(0,0,0,0.05);
	border-radius: var(--swiper-scrollbar-border-radius,10px);
}
.swiper-scrollbar-drag {
	background-color: var(--color1);
	opacity: 0.5;
	cursor: grab;
}


.expand-right {
	width: calc(100% + (var(--gutter) * 2) + ( (100vw - var(--wrapper) - (var(--gutter) * 2)) / 2 ) );
}
@media screen and (max-width: 1490px) {
	.expand-right {
		width: calc(100% + (var(--gutter) * 2));
	}
}
@media screen and (max-width: 1200px) {
	.expand-right {
		width: calc(100% + (var(--gutter) * 1.5));
	}
}
@media screen and (max-width: 600px) {
	.expand-right {
		width: calc(100% + (var(--gutter) * 1));
	}
}

.icon img {
	display: inline-block;
	width: 1em;
}
.icon.small {
	font-size: 0.75em;
}



body #magicPointer {
  z-index: 9999;
  background: var(--colorMouse) !important;
  height: 20px !important;
  width: 20px !important;
  opacity: 0.5 !important;
}
body #magicPointer::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
body #magicPointer.is-hover {
	width: 70px !important;
	height: 70px !important;
	opacity: 1 !important;
	background-color: var(--color1) !important;
}
body #magicPointer.transparent.is-hover {
	background: none !important;
}
body #magicPointer::before {
	content: attr(data-text);
	opacity: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-height: 30px;
	min-width: 30px;
	background-image: url(../../img/icon-arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px auto;
	transition: 0s;
}
body #magicPointer.transparent::before {
	background-image: url(../../img/icon-arrow.svg);
	transform: scale(2.5);
}
body #magicPointer.is-hover::before {
	opacity: 1;
	transition: all 0s, opacity 0.15s 0.15s;
}
body #magicPointer.is-hover.w-text {
	width: 190px !important;
	height: 190px !important;
	opacity: 1 !important;
}
body #magicPointer.is-hover.w-text::before {
	min-width: 140px;
	padding-top: 60px;
	background-size: 30px auto;
	background-position: top 10px center;
}
body #magicPointer.alt {
	background-color: var(--color2) !important;
}
body #magicPointer.alt::before {
	background-image: url(../../img/icon-arrow-white.svg);
	background-size: 75% auto;
}
body #magicPointer.alt.is-hover {
	width: 70px !important;
	height: 70px !important;
}
body > #magicMouseCursor  {
  display: none !important;
}


@media screen and (max-width: 850px) {

	.relative-cursor .magic-hover,
	.fixed-cursor .magic-hover {
		top: 2em;
		left: 2em;
		width: auto;
		height: auto;
	  display: inline-block;
	  height: 2.8em;
	  border-radius: 2.8em;
	  border: var(--color1) 1px solid;
	  padding: 0.75em 0;
	  white-space: nowrap;
	  color: transparent;
	  overflow: hidden;
	  background-color: var(--color1);
	  max-width: auto;
	  color: #fff;
	  padding: 0.75em 0.75em 0.75em 3em;
	}
	.relative-cursor .magic-hover {
		position: relative;
		top: 0;
		left: 0;
		margin-top: 2em;
	}
	.relative-cursor .magic-hover::after,
	.fixed-cursor .magic-hover::after {
	  content: '';
	  position: absolute;
	  top: 0.8em;
	  left: 0.815em;
	  width: 1em;
	  height: 1em;
	  background-image: url(../../img/icon-arrow-white.svg);
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: contain;
	  transform: rotate(45deg);
	}
	.relative-cursor .magic-hover::before,
	.fixed-cursor .magic-hover::before {
	  content: attr(data-text);
	}

}

.the-form.alt input:not([type="submit"]), .the-form.alt textarea, .the-form.alt select {
	background-color: #fff;
	border-radius: 9px;
}

.the-form input[type="submit"] {
	background-color: var(--color1);
	color: #fff;
	border-radius: 9999px;
	font-family: var(--baseFont);
	font-weight: 500;
	padding: 1em 3em;
	transition: 0.2s;
}
.the-form input[type="submit"]:hover {
	background-color: transparent;
	border-color: var(--color1);
	color: var(--color1);
}


/*******************
  HEADER & FOOTER
*******************/

header.nav-up {
	transform: translateY(-100%);
}

body:not(.scrolled) header,
header {
	background: linear-gradient(
		to bottom,
		rgba(255,255,255,1) 0,
		rgba(255,255,255,1) calc(100% - 2.7em),
		rgba(255,255,255,0) calc(100% - 2.7em + 1px),
		rgba(255,255,255,0) 100%);
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 3rem;
	transition: 0.3s;
}

.top-menu {
	z-index: 2;
	position: relative;
	text-align: right;
	font-size: 0.8889em;
}
.top-menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right,  rgba(34,44,64,0) 50%,rgba(34,44,64,1) 100%);
	opacity: 0.12;
	transition: 0.2s;
}
header .top-menu.main-nav > ul {
	padding: 0.5em 0;
}

.icon-menu-item img {
	height: 1em;
	width: auto;
}

header .main-part {
	z-index: 1;
	position: relative;
	padding-bottom: 1rem;
	border-bottom: rgba(235, 90, 60, 0.5) 2px solid;
}

header .main-nav {
	position: relative;
	padding-right: 1rem;
}
header .main-part .main-nav {
	padding-top: 1em;
}

header .main-nav > .bg {
	--h : 5px;
	position: absolute;
	top: calc(100% + 1rem);
	height: var(--h);
	background-color: var(--color1);
	transform: translateX(1em);
	transition: 0.3s;
}

header .main-nav li.current-menu-item > a,
header .main-nav li.current-menu-ancestor > a {
	color: var(--color1);
}

.main-nav > ul > li > ul {
	box-shadow: none;
	border-radius: 0;
	text-align: left;
	top: calc(100% + 5px);
	min-width: 15em;
}
.top-menu.main-nav > ul > li > ul {
	top: calc(100% - 3px);
}
.main-nav > ul > li > ul > li:first-child::before {
	display: none;
}
.main-nav > ul > li > ul > li:first-child,
.main-nav > ul > li > ul > li:last-child {
	border-radius: 0;
}
.main-nav > ul > li > ul > li {
	background-color: var(--black);
	color: #fff;
	padding: 0.5em 2em;
}
.main-nav > ul > li > ul > li:first-child {
	padding-top: 2em;
}
.main-nav > ul > li > ul > li:last-child {
	padding-bottom: 2em;
}
.main-nav > ul > li > ul > li:hover {
	background-color: var(--black);
}
.main-nav > ul > li > ul > li a {
	display: inline-block;
	padding: 0.5em 0;
	border-bottom: var(--black) 2px solid;
	opacity: 0.67;
}
.main-nav > ul > li > ul > li a:hover  {
	border-color: var(--color1);
	opacity: 1;
}

.header-logo {
	flex: 0 0 21em;
}

@media screen and (max-width: 1200px) {
  .header-logo {
    flex: 0 0 18em;
  }
  header .main-nav > .bg {
  	top: calc(100% + 1em);
		transform: translateX(0.5em);
	}
}
@media screen and (max-width: 1100px) {
  header .main-nav > .bg {
  	top: calc(100% + 1rem);
	}
	.main-nav > ul > li > ul {
		top: calc(100% + 8px);
	}
}
@media screen and (max-width: 950px) {
	header {
		padding: 1rem !important;
		background: linear-gradient(
			to bottom,
			rgb(255, 255, 255) 0,
			rgb(255, 255, 255) calc(100% - 1.15em),
			rgba(255,255,255,0) calc(100% - 1.1em),
			rgba(255,255,255,0) 100%);
	}
	.header-logo {
		flex: 1;
	}
  .header-logo img {
    width: 14em;
  }
  body.header-light:not(.scrolled) header .main-part {
  	border: none;
  }
}

body.header-light:not(.scrolled) header {
	background: transparent;
	color: #ffffff;
}
body.header-light:not(.scrolled) header .header-logo img {
	filter: brightness(0) invert(1);
}
body.header-light:not(.scrolled) .top-menu::before {
	opacity: 1;
}

footer {
	position: relative;
	background-color: var(--color2);
	padding: calc(var(--gutter) * 1.5) 0 1em 0;
}
footer > .bg {
	--s : 20em;
	z-index: 1;
	position: absolute;
	bottom: calc(var(--s) * -0.75);
	left: calc(var(--s) * -1.325);
	width: calc(var(--s) * 2);
	opacity: 0.14;
}
footer > .bg img {
	display: block;
}
footer > .wrapper {
	z-index: 2;
}

.footer-intro .logo {
	position: relative;
	left: -0.5em;
	flex: 0 0 22em;
}
.footer-intro .logo img {
	width: 22em;
}
.footer-intro .slogan {
	position: relative;
	top: -0.125em;
	align-self: end;
	opacity: 0.54;
}
.footer-intro .slogan > * {
	font-size: 1.1em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 100, 'wdth' 100;
	line-height: 1.25em;
}

@media screen and (max-width: 750px) {
	.footer-intro > * {
		flex: 0 0 100% !important;
	}
}

.footer-cols {
	margin-top: 1em;
	margin-bottom: 1em;
}
.footer-title {
	margin-bottom: 0.5em;
}
.footer-title > * {
	font-family: var(--titleFont);
	text-transform: none;
	font-size: 1.3333em;
	font-variation-settings: 'wght' 500, 'wdth' 100;
}
.footer-cols .text {
	font-size: 1.25em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 100, 'wdth' 100;
}

footer .text a:hover {
	color: var(--color1);
}

.nl-input {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 20em;
	padding: 0.5em 2em 0.5em 0;
	font-size: 1rem;
	font-variation-settings: 'wght' 400, 'wdth' 90;
	text-decoration: none !important;
}
.nl-input:hover {
	color: currentColor !important;
}
.nl-input label {
	opacity: 0.32;
	cursor: pointer;
}
.nl-input::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1em;
	height: 100%;
	background-image: url(../../img/arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(45deg);
}
.nl-input::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color1);
	opacity: 0.3;
}

@media screen and (min-width: 1000px) {
  .footer-cols > :nth-child(1),
  .footer-cols > :nth-child(2) {
    flex: 0 0 28%;
  }
  .footer-cols > :nth-child(3) {
    flex: 0 0 44%;
  }
}

.footer-mentions {
	border-top: rgba(255,255,255,0.5) 1px solid;
	padding: 1.5em 0 0 0;
}
.footer-mentions .text {
	font-size: 0.95em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 100, 'wdth' 100;
}

@media screen and (max-width: 800px) {
	.footer-mentions .grid > * {
		flex: 0 0 100%;
	}
	.footer-mentions .grid > *:nth-child(1) {
		order: 2;
	}
}

@media screen and (max-width: 600px) {
	footer {
		padding-bottom: 3em;
	}
}

.header-hamburger {
	color: var(--color1);
}
.mobile-menu {
	background-color: var(--color2);
}

.back-to-top {
	background-image: url(../../img/icon-caret-up.svg);
	transform: none;
	background-size: 75% auto;
}

/*******************
	  PAGES LAYOUTS
*******************/

.news-intro {
	text-align: left;
	color: #fff;
}
.news-intro .swiper-slide {
	height: auto;
}
.news-intro-item {
	z-index: 2;
	position: relative;
	height: 100%;
	padding: calc(var(--gutter) * 3.5) 0 calc(var(--gutter) * 2.5) 0;
}
.news-intro-item .overlay {
	background-color: var(--black);
	opacity: 1;
	transition: 3s 0.25s;
}
.swiper-slide-visible .news-intro-item .overlay {
	opacity: 0.62;
}
.news-intro-item .content {
	position: relative;
}
.news-intro-item .content .text {
	margin-top: 1.5em;
	max-width: 900px;
}
.news-intro nav {
	z-index: 5;
	position: absolute;
	bottom: calc(var(--gutter) * 1.5);
	left: 0;
	width: 100%;
}
.news-intro nav ul {
	list-style-type: none;
}
.news-intro nav li {
	position: relative;
	display: inline-block;
	width: 9.5em;
	max-width: 20vw;
	height: 1px;
	margin-right: 0.5em;
	background-color: currentColor;
	cursor: pointer;
	transition: 0.5s 0.25s;
}
.news-intro nav li.active {
	height: 4px;
}
.news-intro nav li:hover {
	background-color: var(--color1);
}
.news-intro nav a {
	z-index: 2;
	position: absolute;
	top: -1em;
	right: 0;
	bottom: -1em;
	left: 0;
}

.news-filters {
	padding: var(--gutter) 0;
}
.news-filter .filters {
	flex: 1;
}
.news-filters .aside {
	flex: 0 0 20em;
	text-align: right;
	padding-left: 2em;
}
.news-filters form {
	margin-top: 1em;
}
.filters-layout > .aside {
	flex: 1;
	text-align: right;
}
.light-filters {
	text-align: left;
}
.light-filters form.searchandfilter > ul > li {
  display: inline-block;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 800px) {
	.light-filters .searchandfilter ul li {
		padding: 0;
	}
}
select.sf-input-select {
  background-color: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 9999px;
  display: inline-block;
  font: inherit;
  font-size: 0.95em;
  color: #ffffff !important;
  line-height: 1.5em;
  padding: 0.75em 3.5em 0.6em 1.25em;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 250px;
}
select.sf-input-select option {
  color: currentColor !important;
}
select.sf-input-select {
  background-image: url(../../img/icon-plus-white.svg);
  background-position: right 1em center;
  background-size: auto 1.125em;
  background-repeat: no-repeat;
}
select.sf-input-select:focus {
  outline: 0;
}
select.sf-input-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input.sf-input-text {
  background-color: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 9999px;
  display: inline-block;
  font: inherit;
  font-size: 0.95em;
  color: #ffffff !important;
  line-height: 1.5em;
  padding: 0.75em 3.5em 0.6em 1.25em;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 250px;
}
input.sf-input-text::placeholder {
	color: #ffffff !important;
	opacity: 1 !important;
}


.news-grid {
	background-color: var(--lightGrey);
	padding: var(--gutter) 0;
}
.news-layout > div {
	flex: 0 0 33.333%;
}
.news-layout > .pagination {
  flex: 0 0 100% !important;
  padding: var(--gutter) 0;
}
.news-layout > .pagination > * {
	display: inline-block;
	padding: 0.5em;
}
.news-layout.grid > *.pagination .current {
	color: var(--color1);
	font-weight: 700;
}
.news-layout.grid > *.pagination a:hover {
	color: var(--color1);
}

	@media screen and (max-width: 950px) {
		.news-layout > div {
			flex: 0 0 50%;
		}
	}
	@media screen and (max-width: 550px) {
		.news-layout > div {
			flex: 0 0 100%;
		}
	}

.box-post {
	height: 100%;
	background-color: #fff;
}
.box-post .ill {
	position: relative;
	overflow: clip;
}
.box-post .ill::after {
	content: '';
	display: block;
	padding-bottom: 63%;
}
.box-post .ill a {
	z-index: 10;
}
.box-post .content {
	text-align: left;
	padding: 1.35em 2em;
}
.box-post .content > * {
	margin-bottom: 1.35rem;
}

.box-post.logo .ill {
	background-color: #fff;
	border-bottom: var(--lightGrey) 1px solid;
}
.box-post.logo .ill img {
	object-fit: contain;
	transform: scale(0.75);
}
.box-post.document .ill {
	background-color: var(--color1);
	color: #fff;
}
.box-post.document .ill::before {
	content: '';
	position: absolute;
	bottom: 2em;
	right: 0;
	width: 65%;
	height: 90%;
	background-image: url(../../img/icon-audacia-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(30%, -0.3em);
	opacity: 0.85;
}
.box-post.document .titling {
	position: absolute;
	bottom: 2em;
	left: 2em;
	text-align: left;
	width: 50%;
}
.box-post.document .titling > *,
.box-post.nomination .titling > * {
	font-family: 'gamay-variable', sans-serif;
	font-size: 1.54em;
	line-height: 1.25em;
	font-variation-settings: 'wght' 600, 'wdth' 100;
}
.box-post.nomination .ill {
	background-color: var(--color1);
	color: #fff;
}
.box-post.nomination .ill img {
	width: 60%;
	left: 40%;
}
.box-post.nomination .ill::before {
	content: '';
	z-index: 2;
	position: absolute;
	top: 2em;
	left: 0;
	width: 65%;
	height: 90%;
	background-image: url(../../img/icon-audacia-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-76%, 30%);
	opacity: 0.85;
}
.box-post.nomination .titling {
	position: absolute;
	bottom: 0;
	left: 4em;
	text-align: left;
	width: 50%;
	transform: rotate(-90deg);
	transform-origin: top left;
}

.box-post > a.fulldiv {
	z-index: 10;
}

.page-intro {
	position: relative;
	height: 25vw;
	overflow: clip;
}
.page-intro .ill video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.page-intro .ill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0.48;
}
.page-intro .logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 120%;
	background-image: url(../../img/icon-audacia-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-40%, 1%) scale(1.5);
	opacity: 0.27;
}
.page-intro .content {
	flex: 0 0 100%;
	margin-top: auto;
	margin-bottom: 0;
	padding-top: calc(var(--headerHeight) + var(--gutter));
	padding-bottom: calc(var(--gutter) * 2);
	text-align: left;
	color: #fff;
}

.contact-layout {
	text-align: left;
}
.contact-layout .contacts {
	position: relative;
	flex: 0 0 45%;
	overflow: clip;
}
.contact-layout .contacts::before {
	content: '';
	z-index: 2;
	position: absolute;
	bottom: -11vw;
	left: -22vw;
	width: 65%;
	height: 30vw;
	background-image: url(../../img/icon-audacia.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.85;
}
.contact-layout .contact-form {
	flex: 0 0 55%;
	background-color: var(--lightGrey);
}
.contact-layout .contacts .inner {
	position: relative;
	max-width: calc(var(--wrapper) * 0.45);
	margin-left: auto;
	padding: calc(var(--gutter));
}
.contact-layout .contact-form .inner {
	max-width: calc(var(--wrapper) * 0.65);
	margin-right: auto;
	padding: calc(var(--gutter));
}
.contact-layout .contacts .grid > * {
	flex: 0 0 50%;
}
.contact-layout .contacts .grid > *.fullwidth {
	flex: 0 0 100%;
}
.contact-layout .contacts .ps-content > :not(:first-child) {
	margin-top: 0.75em;
}
.contact-layout .contacts .ps-content .spacer.regular {
	height: 1.75em;
}
.contact-map {
	position: relative;
	height: 40vw;
}
.contact-map > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}



@media screen and (max-width: 1050px) {
	.contact-layout .contacts .grid > * {
		flex: 0 0 100%;
	}
}
@media screen and (max-width: 750px) {
	.contact-layout .contacts,
	.contact-layout .contact-form {
		flex: 0 0 100%;
	}
	.contact-layout .contacts .inner,
	.contact-layout .contact-form .inner {
		padding: var(--gutter) calc(var(--gutter) * 1.5);
	}
	.contact-layout .contacts::before {
		display: none;
	}
	.contact-map {
		height: 70vw;
		max-height: 80vh;
	}
}
@media screen and (max-width: 550px) {
	.contact-map {
		height: 100vw;
	}
}

.contact-form .the-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 20px);
  background-position-y: calc(50% - 1px);
}


.portfolio-filters {
	padding: calc(var(--gutter) * 1) 0;
}
.portfolio-filters form {
	margin-top: 1em;
}

.portfolio-filters .searchandfilter select.sf-input-select {
	min-width: 265px;
}

@media screen and (max-width: 800px) {
	.portfolio-filters {
		padding: calc(var(--gutter) * 0.5) 0;
	}
	.portfolio-filters .searchandfilter ul li {
		padding: 0;
	}
}

.portfolio-layout.grid {
	--g: 0;
}
.portfolio-layout.grid > * {
	flex: 0 0 25%;
}


@media screen and (max-width: 1300px) {
	.portfolio-layout.grid > * { flex: 0 0 33.333% }
}
@media screen and (max-width: 850px) {
	.portfolio-layout.grid > * { flex: 0 0 50% }
}
@media screen and (max-width: 450px) {
	.portfolio-layout.grid > * {
		flex: 0 0 100%;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

.box-portfolio {
	position: relative;
  box-shadow: 
    1px 0 0 0 currentColor, 
    0 1px 0 0 currentColor, 
    1px 1px 0 0 currentColor,   /* Just to fix the corner */
    1px 0 0 0 currentColor inset, 
    0 1px 0 0 currentColor inset;
  overflow: clip;
}
.box-portfolio::after {
	content: '';
	display: block;
	padding-bottom: 100%;
}
.box-portfolio .ill img {
	max-height: 40%;
	max-width: 65%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.75s;
}
.box-portfolio:hover .ill img {
	transform: translate(-50%, -50%) scale(1.5);
	filter: grayscale(1) brightness(0.5) blur(5px);
}
.box-portfolio img {
	filter: grayscale(1);
}
.box-portfolio .content {
	top: 100%;
	left: 1px;
	width: calc(100% - 1px);
	height: calc(100% - 1px);
	padding: calc(1em + 1vw);
	text-align: left;
	background-color: var(--lightGrey);
	overflow: clip;
	transition: 0.5s;
}
.box-portfolio:hover .content {
	top: 1px;
}
.box-portfolio .content .logo {
	position: relative;
	top: 2em;
	margin-bottom: 1em;
	transition: 1s;
}
.box-portfolio:hover .content .logo {
	top: 0;
}
.box-portfolio .content .logo img {
	width: 60%;
	height: 4em;
	object-fit: contain;
	object-position: bottom left;
	mix-blend-mode: multiply;
}
.box-portfolio .content .text > :not(:last-child) {
	margin-bottom: 5px;
}
.box-portfolio .content .text {
	position: relative;
	top: 4em;
	transition: 1s;
}
.box-portfolio:hover .content .text {
	top: 0;
}
.box-portfolio .content .text p,
.box-portfolio .content .text ul,
.box-portfolio .content .text ol {
	line-height: 2em;
	transition: 1s;
}
.box-portfolio:hover .content .text p,
.box-portfolio:hover .content .text ul,
.box-portfolio:hover .content .text ol {
	line-height: 1.4em;
}
.box-portfolio .status {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	text-transform: uppercase;
	font-size: 0.8em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 600, 'wdth' 100;
}

@media screen and (max-width: 850px) {
	.box-portfolio .content { font-size: 0.85em; }
}
@media screen and (max-width: 550px) {
	.box-portfolio > a.fulldiv { display: none; }
}

.portfolio-layout > *.pagination {
	flex: 0 0 100%;
	padding: var(--gutter) 0;
}
.portfolio-layout > .pagination > * {
	display: inline-block;
	padding: 0.5em;
}
.portfolio-layout > *.pagination .current {
	color: var(--color1);
	font-weight: 700;
}
.portfolio-layout > *.pagination a:hover {
	color: var(--color1);
}

.single-portfolio-layout {
	overflow-x: clip;
	margin: 0 0 calc(var(--gutter) * 3) 0;
}
.single-portfolio-layout > * {
	flex: 0 0 100%;
}
.single-portfolio-layout > .ill {
	margin-bottom: calc(var(--gutter) * 3);
}
.single-portfolio-layout > .ill .inner {
	position: relative;
}
.single-portfolio-layout .logo {
	flex: 0 0 8em;
	padding-top: 3em;
	text-align: center;
}
.single-portfolio-layout .logo img {
	height: 4em;
	width: 15em;
	object-fit: contain;
	object-position: center;
}
.single-portfolio-layout .image {
	position: relative;
	height: 60vw;
}
.single-portfolio-layout .action {
	position: absolute;
	top: calc(100% + 2em);
	right: calc(2em + var(--gutter));
}
.single-portfolio-layout > .content {
	text-align: left;
	padding: 0 var(--gutter) 0 calc(var(--gutter) * 2);
}
.single-portfolio-layout > .content > .inner > *:not(:first-child) {
	margin-top: 2rem;
}
.single-portfolio-layout .portfolio-cat > * {
	color: var(--color1);
	text-transform: uppercase;
	font-size: 1.333em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 600, 'wdth' 100;
}
.single-portfolio-layout .name > * {
	font-family: var(--titleFont);
	font-size: 3em;
	font-variation-settings: 'wght' 100, 'wdth' 100;
}
.single-portfolio-layout .summary {
	position: relative;
	padding: 2em 0;
}
.single-portfolio-layout .summary::before {
	content: '';
	position: absolute;
	top: 0;
	right: calc(var(--gutter) * -1);
	width: 150vw;
	height: 100%;
	background-color: var(--lightGrey);
}
.single-portfolio-layout .summary .inner {
	position: relative;
}
.single-portfolio-layout .summary .text strong {
	text-transform: uppercase;
	color: var(--color1);
	font-family: var(--titleFont);
	font-size: 1.111em;
	font-variation-settings: 'wght' 500, 'wdth' 100;
}


@media screen and (min-width: 951px) {
	.single-portfolio-layout {
		margin: calc(var(--gutter) * 1) 0 calc(var(--gutter) * 2.5) 0;
	}
	.single-portfolio-layout > * {
		flex: 0 0 50%;
	}
	.single-portfolio-layout > .ill {
		order: 2;
		margin-bottom: 0;
	}
	.single-portfolio-layout > * > .inner {
		max-width: calc(var(--wrapper) / 2) ;
	}
	.single-portfolio-layout > .ill > .inner {
		margin-left: 0;
		margin-right: auto;
		height: 100%;
		position: relative;
		padding-right: var(--gutter);
	}
	.single-portfolio-layout > .ill > .inner::before {
		content: '';
		position: absolute;
		bottom: -10%;
		left: 100%;
		width: 70%;
		height: 70%;
		background-image: url(../../img/icon-audacia.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
	.single-portfolio-layout > .ill > .inner::after {
		content: '';
		position: absolute;
		top: 100%;
		left: calc(100% - var(--gutter));
		width: 50vw;
		height: calc(var(--gutter) * 2.5);
		background-color: var(--color1);
	}
	.single-portfolio-layout > .content > .inner {
		margin-left: auto;
		margin-right: 0;
	}
	.single-portfolio-layout .summary::before {
		width: 50vw;
	}
	.single-portfolio-layout .image {
		flex: 1;
		height: auto;
	}
	.single-portfolio-layout .logo {
		flex: 0 0 10em;
		padding-top: 2em;
		text-align: left;
	}
	.single-portfolio-layout .logo img {
		height: 8em;
		width: 15em;
		object-fit: contain;
		object-position: bottom left;
	}
}


.big-intro {
	min-height: 100vh;
	padding-top: calc(var(--headerHeight) + (var(--gutter) * 2));
	padding-bottom: calc(var(--gutter) * 1);
}
.big-intro.centered-content {
	padding-bottom: calc(var(--gutter) * 3);
}
	@media screen and (min-height: 1001px) {
		.big-intro { min-height: 1000px; }
	}
.big-intro .ill video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.big-intro .ill::after {
	content: '';
	z-index: 99;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0.35;
}
.big-intro.centered-content > .ill::after {
	opacity: 0.5;
}
.big-intro .swiper {
	height: 100%;
}
.big-intro > .content {
	z-index: 100;
	position: relative;
	flex: 0 0 100%;
	margin-top: auto;
	margin-bottom: 0;
	text-align: left;
	color: #fff;
}
.big-intro.centered-content > .content {
	text-align: center;
	margin-bottom: auto;
}
.big-intro > a.fulldiv {
	z-index: 101;
}
.big-intro .spacer.special {
	height: 10vh;
}
.big-intro .metiers > * {
	flex: 0 0 33.333%;
}
.box-intro-metier {
	position: relative;
	background-color: rgba(34,44,64,0.6);
	padding: 1.5em 2.5em;
	backdrop-filter: blur(2px);
	transition: 0.5s;
}
.box-intro-metier:hover {
	background-color: rgba(34,44,64,1);
}
.box-intro-metier .title {
	height: 4.25em;
}
.box-intro-metier .title > * {
	line-height: 1.35em;
	text-transform: uppercase;
}
.box-intro-metier .action {
	margin-top: 1em;
}
.box-intro-metier .action a {
	opacity: 0.5;
}
.box-intro-metier:hover .action a {
	opacity: 1;
	color: var(--color1);
}
.box-intro-metier::after {
	content: '';
	position: absolute;
	top: 1.125em;
	right: 1.125em;
	width: 1.75em;
	height: 1.75em;
	background-image: url(../../img/arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.25s;
}
.box-intro-metier:hover::after {
	transform: rotate(45deg);
}

@media screen and (min-width: 1001px) {
	.big-intro .inner > * {
		flex: 0 0 100%;
	}
}
@media screen and (max-width: 1000px) {
	.big-intro {
		padding-top: var(--headerHeight);
	}
	.big-intro .metiers > * {
		flex: 0 0 100%;
	}
	.box-intro-metier::after {
		top: 0.75em;
		right: 0.75em;
		width: 1.25em;
		height: 1.25em;
	}
}
@media screen and (max-width: 1000px) and (min-width: 751px) {
	.big-intro .inner > .heading {
		flex: 1;
		padding-right: 1em;
	}
	.big-intro .metiers {
		flex: 0 0 20em;
	}
}
@media screen and (max-width: 750px) {
	.box-intro-metier .title { height: auto; }
}
@media screen and (max-width: 600px) {
	.big-intro {
		min-height: -moz-available;
		min-height: -webkit-fill-available;
		min-height: fill-available;
	}
}

.metier-numbers {
  --g: 1em;
}
.metier-numbers > * {
  padding: var(--g);
  flex: 0 0 33.333%;
  background-color: rgba(255,255,255,0.75);
  border-top: #ddd 1px solid;
/*  border-bottom: currentColor 1px solid;
*/}
.metier-numbers > *:not(:last-child) {
  border-right: #ddd 1px solid;
}
.metier-numbers .number label,
.metier-numbers .number .the-number {
  display: block;
  margin-top: 1em;
}
@media screen and (max-width: 850px) {
  .metier-numbers .number label {
    min-height: 2.6em;
  }
  .metier-numbers .number .the-number {
    margin-top: 0.25em;
  }
}
@media screen and (max-width: 500px) {
  .metier-numbers > * {
    flex: 0 0 100%;
    border-bottom: none;
    border-right: none !important;
  }
}

.home-about {
	background-color: #fff;
	padding: calc(var(--gutter) * 2) 0;
	overflow: clip;
}
.home-about::after {
	content: '';
	z-index: 1;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40vw;
	height: 40vw;
	background-image: url(../../img/icon-audacia.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(52%, 52%);
}
.home-about-layout {
	z-index: 2;
	position: relative;
}
.home-about-layout .numbers {
	flex: 0 0 17.5em;
	padding: 0.75em 0;
	text-align: right;
}
.home-about-layout .numbers .number:not(:first-child) {
	border-top: rgba(78, 86, 103, 0.3) 1px solid;
}
.home-about-layout .number {
	padding: 1.75em 3em 0.75em 0.25em;
}
.number label {
	text-transform: uppercase;
	font-size: 0.88889em;
	line-height: 1.3em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 400, 'wdth' 100;
}
.home-about-layout .number .the-number {
	margin-top: 1em;
}
.number .the-number > span {
	display: inline-block;
	font-size: 4.3333em;
	height: 1em;
	line-height: 1em;
	font-family: var(--titleFont);
	font-variation-settings: 'wght' 400, 'wdth' 100;
}
	@media screen and (max-width: 1200px) {
		.number .the-number > span { font-size: 4em; }
	}
	@media screen and (max-width: 500px) {
		.number .the-number > span { font-size: 3.5em; }
	}
.home-about-layout .ill {
	position: relative;
	flex: 1;
	min-height: 30vw;
}
.home-about-layout .ill video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-about-layout .content {
	flex: 0 0 37.5%;
	text-align: left;
	padding-left: var(--gutter);
	padding-top: calc(var(--gutter) * 1.5);
}

@media screen and (max-width: 1200px) {
	.home-about .wrapper {
		padding-left: 0;
	}
	.home-about-layout .numbers {
		font-size: 0.85em;
	}
}
@media screen and (max-width: 900px) {
	.home-about-layout > .content {
		flex: 0 0 100%;
		padding-left: 0;
/*		background-color: rgba(255,255,255,0.5);
*/	}
}
@media screen and (max-width: 550px) {
	.home-about .wrapper {
		padding-left: var(--gutter);
	}
	.home-about-layout .numbers {
		flex: 0 0 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.home-about-layout .number {
		flex: 0 0 50%;
		padding-right: 0.25em;
		text-align: center;
	}
	.home-about-layout .numbers .number:nth-child(2) {
		border-top: none;
	}
	.home-about-layout .ill {
		flex: 0 0 100%;
		height: 100vw;
	}
}

.big-cta {
	padding: calc(var(--gutter) * 2) 0;
	text-align: left;
	color: #fff;
}
.big-cta .overlay {
	background-color: var(--black);
	opacity: 1;
	transition: 2s 1s;
}
.reveal .big-cta .overlay {
	opacity: 0.4;
}
.big-cta .logo {
	position: absolute;
	top: 100%;
	left: 0;
	transform: translate(-60%, -60%);
	width: 25vw;
	height: 25vw;
	background-image: url(../../img/icon-audacia-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.27;
}
.big-cta .content {
	opacity: 0;
	transition: 1s 2s;
}
.reveal .big-cta .content {
	opacity: 1;
}
.big-cta .ps-content > * {
	transition: 1s 2s;
}


.home-news {
	padding: calc(var(--gutter) * 2) 0;
	background-image: url(../../img/icon-audacia.svg);
	background-size: 35vw auto;
	background-repeat: no-repeat;
	background-position: bottom -10vw left -23vw;
}
.home-news-grid {
	margin-top: calc(var(--gutter) * 1);
}
/*.home-news-grid > * {
	flex: 0 0 33.333%;
}*/
.home-news-grid .swiper-slide {
	height: auto;
}

.home-portfolio {
	padding: calc(var(--gutter) * 2) 0;
	background-color: #fff;
}
.swiper-portfolio .swiper-slide {
	padding-bottom: 1px;
}
.swiper-portfolio .swiper-slide > div {
	position: relative;
	border: #eeeeed 1px solid;
}
.swiper-portfolio .swiper-slide > div::after {
	content: '';
	display: block;
	padding-bottom: 60%;
}
.swiper-portfolio .swiper-slide > div img {
	height: 80%;
	top: 10%;
	transform: scale(0.8);
	filter: grayscale(1);
	transition: 0.3s;
}
.swiper-portfolio .swiper-slide > div:hover img {
	filter: none;
}

.about-intro {
	padding: calc(var(--gutter) * 2) 0;
	background-color: #fff;
	background-image: url(../../img/icon-audacia.svg);
	background-size: 35vw auto;
	background-repeat: no-repeat;
	background-position: bottom -15vw right -22.5vw;
}
.about-intro-layout > .ill {
	position: sticky;
	top: var(--headerHeight);
	flex: 0 0 40%;
	align-self: start;
}

.smaller-image > .ill{
	flex: 0 0 320px;
	max-width: 360px;
}

.about-intro-layout > .content {
	flex: 0 0 60%;
	text-align: left;
	padding-left: calc(var(--gutter) * 1.5);
}
.about-numbers {
	margin-top: calc(var(--gutter) * 1.25);
}
.about-numbers > * {
	flex: 0 0 33.333%;
}
.about-numbers label {
	position: relative;
	display: block;
	margin-top: 0.5em;
	padding-top: 1em;
}
.about-numbers label::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transition: 1s;
}
.about-numbers.numbersToAnimate label::before {
	width: 0;
}

@media screen and (max-width: 1000px) {
	.about-intro-layout > .ill {
		position: relative;
		top: 0;
		flex: 0 0 100%;
		text-align: left;
	}
	.about-intro-layout > .ill img {
		width: 30em;
	}
	.about-intro-layout > .content {
		flex: 0 0 100%;
		padding: calc(var(--gutter) * 1.5) 0 0 0;
	}
}

.about-values {
	background-color: #fff;
	padding-bottom: calc(var(--gutter) * 1.5);
}

.values-layout > * {
	flex: 0 0 20%;
}
.box-value .ill {
	position: relative;
}
.box-value .ill::after {
	content: '';
	display: block;
	padding-bottom: 66%;
}
.box-value .content {
	position: relative;
	padding: 3em 2em 1.5em 2em;
	text-align: left;
}
.box-value .content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2em;
	width: 2px;
	height: 0;
	background-color: var(--color1);
	transition: 0.5s 0.5s;
}
.box-value.inViewport .content::before {
	height: 4.5em;
	top: -2.25em;
}

@media screen and (max-width: 1100px) {
	.values-layout > * { flex: 0 0 50%; }
}

.about-esg .big-cta .overlay {
	width: 200%;
	left: -100%;
	background: linear-gradient(to right,  rgba(34,44,64,0) 0%,rgba(34,44,64,1) 50%);
	opacity: 1;
}
.reveal.about-esg .big-cta .overlay {
	left: 0;
	opacity: 1;
}
.about-esg .big-cta .logo {
	display: none;
}
.cta-esg > .ill {
	flex: 0 0 40%;
}
.cta-esg > .ill img {
	opacity: 0.5;
	backdrop-filter: blur(10px);
	transition: 3s 2s;
}
.reveal .cta-esg > .ill img {
	opacity: 1;
}
.cta-esg > .content {
	flex: 0 0 60%;
	padding-left: calc(var(--gutter) * 2);
}

@media screen and (max-width: 700px) {
	.cta-esg > .ill { flex: 0 0 100%; }
	.cta-esg > .ill img {
		max-height: 50vw;
		width: auto;
		object-fit: contain;
	}
	.cta-esg > .content { flex: 0 0 100%; padding: 2em 0 0 0; }
}

.about-timeline {
	padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 3) 0;
	background-color: var(--lightGrey);
	background-image: url(../../img/icon-audacia.svg);
	background-size: 35vw auto;
	background-repeat: no-repeat;
	background-position: bottom -10vw left -23.5vw;
}
.about-timeline .ps-content {
	text-align: left;
}
.about-timeline .timeline nav {
	margin: 2em 0;
}
.box-timeline .ill {
	position: relative;
}
.box-timeline .ill::after {
	content: '';
	display: block;
	padding-bottom: 68%;
}
.box-timeline .content {
	padding: 1em 0;
	text-align: left;
}
.swiper-container nav:not(.featured-posts) a {
	--s: 2em;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	background-image: url(../../img/arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: calc(var(--s) * 0.25);
}
.swiper-container nav:not(.featured-posts) a.swiper-button-disabled {
	opacity: 0.25;
	filter: grayscale(1);
}
.swiper-container nav:not(.featured-posts) a.prev {
	transform: rotate(-135deg) scale(0.7);
}
.swiper-container nav:not(.featured-posts) a.next {
	transform: rotate(45deg) scale(0.7);
}
.bg-color1 .swiper-container nav:not(.featured-posts) a {
	filter: brightness(0) invert(1);
}

.about-metiers {
	padding: calc(var(--gutter) * 2) 0 0 0;
	background-color: #fff;
}
.about-metiers .ps-content {
	text-align: left;
}
.about-metiers .metiers {
	margin-top: calc(var(--gutter) * 2);
}
.about-metiers .metiers > * {
	flex: 0 0 33.3333%;
}
.box-metier {
	position: relative;
	overflow: clip;
}
.box-metier::after {
	content: '';
	display: block;
	padding-bottom: 85%;
}
.box-metier .overlay {
	background: linear-gradient(to bottom,  rgba(34,44,64,0) 0%,rgba(34,44,64,1) 100%);
	transition: 1s 1s;
	top: auto;
	bottom: 0;
	height: 200%;
}
.reveal .box-metier .overlay {
	height: 33.333%;
}
.box-metier .content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2em;
	text-align: left;
	color: #fff;
	font-family: var(--titleFont);
	font-size: 1.5em;
	font-variation-settings: 'wght' 400, 'wdth' 100;
	text-transform: uppercase;
}

@media screen and (max-width: 800px) {
	.about-metiers .metiers > * { flex: 0 0 100%; }
	.about-metiers .metiers {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: calc(var(--gutter));
	}
	.box-metier::after {
		padding-bottom: 65%;
	}
}
@media screen and (max-width: 500px) {
	.about-metiers .metiers { margin-bottom: 0; }
}

.team-intro {
	background-color: #fff;
}
.team-intro-layout {	
	position: relative;
	margin-bottom: -3em;
}
.team-intro-layout .ill {
	position: relative;
	top: -4em;
}
.team-intro-layout .content {
	position: absolute;
	bottom: 4em;
	left: 0;
	min-width: 60%;
	max-width: 100%;
	text-align: left;
	padding: 3em 3em 3em 0;
	background-color: #fff;
}

@media screen and (max-width: 900px) {
	.team-intro-layout .content {
		position: relative;
		top: -2em;
		bottom: 0;
		padding: 0 0 2em 0;
		margin-bottom: 2em;
	}
}
@media screen and (max-width: 600px) {
	.team-intro-layout .ill {
		top: -1.5em;
	}
	.team-intro-layout .content {
		top: -0.5em;
		margin-bottom: 3em;
	}
}

.team-grid {
	padding: calc(var(--gutter) * 1) 0 calc(var(--gutter) * 2) 0;
	background-color: #fff;
}
.team-grid .grid {
	--g: 0.75em;
}
.team-grid .grid > * {
	flex: 0 0 25%;
}

@media screen and (max-width: 1000px) {
	.team-grid .grid > * {
		flex: 0 0 33.3333%;
	}
}
@media screen and (max-width: 750px) {
	.team-grid .grid > * {
		flex: 0 0 50%;
	}
}
@media screen and (max-width: 500px) {
	.team-grid .grid > * {
		flex: 0 0 100%;
	}
}

.box-member .ill {
	position: relative;
	overflow: clip;
}
.box-member .ill::after {
	content: '';
	display: block;
	padding-bottom: 110%;
}
.box-member .ill img {
	transition: 0.3s;
}
.box-member:hover .ill img {
	transform: scale(1.05);
}
.box-member .ill .in {
	position: absolute;
	bottom: 1em;
	right: 1em;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background-color: var(--color1);
	background-image: url(../../img/icon-in-white.svg);
	background-position: center center;
	background-size: 50% auto;
	background-repeat: no-repeat;
}
.box-member .content {
	padding: 1.5em 0.25em 2em 0.25em;
	text-align: left;
}
.box-member .name {
	position: relative;
	padding-bottom: 0.65em;
	margin-bottom: 0.6em;
	font-family: var(--titleFont);
	font-size: 1.3333em;
	line-height: 1.25em;
	font-variation-settings: 'wght' 600, 'wdth' 100;
}
.box-member .name::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 85%;
	height: 1px;
	background-color: var(--color1);
	transition: 0.3s;
}
.box-member:hover .name::after {
	width: 100%;
}
.box-member .position {
	font-family: var(--titleFont);
	font-size: 0.89em;
	line-height: 1.25em;
	font-variation-settings: 'wght' 400, 'wdth' 100;
	text-transform: uppercase;
}


.box-join {
	position: relative;
	text-align: left;
	background-color: var(--color1);
	color: #fff;
	transition: 0.3s;
}
.box-join:hover {
	transform: scale(1.05);
}
.box-join::after {
	content: '';
	display: block;
	padding-bottom: 110%;
}
.box-join .logo {
	position: absolute;
	top: 2.5em;
	left: 2em;
}
.box-join .logo img {
	width: 9em;
	height: 4.5em;
	object-fit: contain;
	object-position: bottom left;
	opacity: 0.85;
}
.box-join .content {
	position: absolute;
	top: 6.5em;
	left: 2em;
	width: calc(100% - 3em);
	font-size: 1.333em;
	line-height: 1.333em;
}
.box-join .action {
	position: absolute;
	bottom: 0;
	right: 0.5em;
	width: 5em;
	height: 5em;
	background-image: url(../../img/arrow-white.svg);
	background-size: 2.25em auto;
	background-position: center;
	background-repeat: no-repeat;
	transition: 0.3s;
}
.box-join:hover .action {
	transform: rotate(45deg);
}
@media screen and (max-width: 1500px) {
	.box-join {
		font-size: 0.85em;
	}
	.box-join .logo img {
		height: 3.5em;
	}
	.box-join .content {
		top: 5.5em;
	}
}

.member-layout {
	background-color: var(--lightGrey);
	padding: calc(var(--gutter) * 1.25) 0;
}
.member-layout .flex > .ill {
	flex: 0 0 20em;
	padding: 0 var(--gutter) var(--gutter) 0;
}
.member-layout .flex > .content {
	flex: 1;
	background-color: #fff;
	padding: var(--gutter) calc(var(--gutter) * 1.5);
	text-align: left;
}

@media screen and (max-width: 900px) {
	.member-layout .flex > .ill {
		flex: 0 0 100%;
		padding-right: 0;
	}
}

.metier-pres {
	background-color: #fff;
	padding: calc(var(--gutter) * 2) 0;
	background-image: url(../../img/icon-audacia.svg);
	background-size: 45vw auto;
	background-repeat: no-repeat;
	background-position: bottom -20vw right -25vw;
}
.metier-pres-layout {
	--g: 2em;
}
.metier-pres-layout > .content {
	flex: 0 0 40%;
	text-align: left;
}
.metier-pres-layout > .boxes {
	flex: 0 0 60%;
}
.metier-pres-layout .boxes .grid {
	--g: 0.5em;
}
.metier-pres-layout .boxes .grid > * {
	flex: 0 0 50%;
}
.box-asset {
	height: 100%;
	padding: 1em 2em;
	border-radius: 1em;
	border: var(--lightGrey) 1px solid;
	text-align: left;
	background-color: #fff;
	transition: 0.3s;
}

.box-asset .ps-content .ps-image.s-small img {
	height: 4em;
	width: 5.25em;
}

@media screen and (max-width: 900px) {
	.metier-pres {
		padding-top: var(--gutter);
	}
	.metier-pres-layout > .content,
	.metier-pres-layout > .boxes {
		flex: 0 0 100%;
	}
	.metier-pres-layout > .boxes {
		padding-top: 0;
	}
}
@media screen and (max-width: 550px) {
	.metier-pres-layout .boxes .grid > * {
		flex: 0 0 100%;
	}
}

.metier-funds {
	background-color: #fff;
}
.metier-funds .intro {
	padding: calc(var(--gutter) * 2) 0 2.5em 0;
	background-color: var(--color1);
	color: #fff;
}
nav.internal-nav {
	position: relative;
	padding: 3.5em 0 1em 0;
	border-bottom: var(--color1) 1px solid;
	display: inline-block;
}
nav.internal-nav .flex {
	position: relative;
}
nav.internal-nav .flex > *:not(:last-child) {
	margin-right: 2em;
}
nav.internal-nav a {
	font-size: 1.2222em;
}
nav.internal-nav .line {
	position: absolute;
	bottom: -6px;
	height: 6px;
	background-color: var(--color1);
	transition: 0.3s;
}
.bg-color1 nav.internal-nav {
	border-color: currentColor;
}
.bg-color1 nav.internal-nav .line {
	background-color: currentColor;
}

@media screen and (max-width: 800px) {
	nav.internal-nav {
		font-size: 0.85em;
	}
	nav.internal-nav .flex {
		flex-wrap: nowrap;
		text-align: left;
	}
	nav.internal-nav .flex > * {
		flex: 0 0 25%;
		text-align: center;
		padding: 0.5em;
	}
	nav.internal-nav .flex > :not(:last-child) {
		margin-right: 0;
	}
	nav.internal-nav .flex a {
		display: block;
		line-height: 1.3em;
	}
	nav.internal-nav .line {
		transform: translateX(0.5em);
	}
}
@media screen and (max-width: 800px) {
	nav.internal-nav {
		font-size: 0.75em;
		width: calc(100% + (var(--gutter) * 2));
		margin-left: calc(var(--gutter) * -1);
	}
}
@media screen and (max-width: 550px) {
	nav.internal-nav {
		width: calc(100% + (var(--gutter) * 3.5));
		margin-left: calc(var(--gutter) * -1.75);
	}
}

.fund-layout > * {
	position: relative;
	flex: 0 0 50%;
}
.fund-layout > .ill::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: 0.5s 0.5s;
}
.swiper-slide-fully-visible .fund-layout > .ill::after {
	width: 0;
}
.fund-layout > .content {
	text-align: left;
	padding: calc(var(--gutter) * 1.5) calc(var(--gutter) * 2) 0 calc(var(--gutter) * 2);
}
.fund-table {
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: var(--color1) 1px solid;
}
.fund-table .grid {
	--g: 0.5em;
}
.fund-table .grid > * {
	flex: 0 0 50%;
}
.fund-more {
	margin: 2em 0;
}
.fund-layout > .portfolio {
	flex: 0 0 100%;
	padding: 2em 0;
}
.fund-layout .swiper-portfolio .swiper-slide > div {
	border: none;
}

@media screen and (max-width: 1200px) {
	.fund-table .grid > * { flex: 0 0 100%; }
}
@media screen and (max-width: 1000px) {
	.fund-layout > .content {
		padding: var(--gutter);
	}
}
@media screen and (max-width: 700px) {
	.fund-layout > .content {
		flex: 0 0 100%;
	}
	.fund-layout > .ill {
		flex: 0 0 100%;
		height: 100vw;
	}
}

.metier-news {
	padding: calc(var(--gutter) * 2) 0 var(--gutter) 0;
}

.metier-others .others > * {
	flex: 0 0 50%;
}
.metier-others .box-metier::after {
	padding-bottom: 51%;
}
@media screen and (max-width: 600px) {
	.metier-others .others > * { flex: 0 0 100%; }
}


.gyp-intro {
	padding: calc(var(--gutter) * 2) 0;
	text-align: left;
}
.gyp-cards {
	padding: calc(var(--gutter) * 2) 0;
}
/*.gyp-cards .cards > * {
	flex: 0 0 25%;
}*/
.swiper-cards .swiper-slide {
	height: auto;
}
.gyp-cards .box-asset {
	position: relative;
	background-color: #fff;
	padding: 2em;
	border: #d0d0d0 1px solid;
	transition: 0.3s;
}
.gyp-cards .box-asset:hover {
	background-color: var(--color1);
	color: #fff;
	border-color: var(--color1);
}
.gyp-cards .box-asset:hover a:hover {
	color: currentColor;
}
.gyp-cards .box-asset .ps-content > * {
	transition: 0.5s;
}
.gyp-cards .box-asset:hover .ps-image {
	filter: brightness(0) invert(1);
}
.gyp-cards .box-asset .step {
	position: absolute;
	top: 1.5rem;
	right: 1rem;
	font-size: 1.75em;
	font-variation-settings: 'wgth' 100, 'wdth' 100;
}


.gyp-metiers {
	padding-top: calc(var(--gutter) * 2);
	margin-bottom: calc(var(--gutter) * 2);
}
.gyp-metiers .metiers > * {
	flex: 0 0 33.333%;
}

@media screen and (max-width: 800px) {
	.gyp-metiers .metiers > * { flex: 0 0 100%; }
	.gyp-metiers .metiers {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: calc(var(--gutter));
	}
}
@media screen and (max-width: 500px) {
	.gyp-metiers .metiers { margin-bottom: 0; }
}

.esg-pres {
	padding: calc(var(--gutter) * 2) 0;
	background-color: #fff;
	background-image: url(../../img/icon-audacia.svg);
	background-size: 35vw auto;
	background-repeat: no-repeat;
	background-position: bottom -10vw left -23vw;
}


.esg-timeline {
	padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 3) 0;
}
.esg-timeline .ps-content {
	text-align: left;
}
.esg-timeline .timeline nav {
	margin: 2em 0;
}

.esg-actions .intro {
	padding: calc(var(--gutter) * 2) 0 2.5em 0;
}


.action-layout > .ill {
	position: relative;
	flex: 0 0 30%;
}
.action-layout > .ill::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: 0.5s 0.5s;
}

.swiper-slide-fully-visible .action-layout > .ill::after {
	width: 0;
}

.metier-fcpi .action-layout > .ill {
	position: relative;
}
.metier-fcpi .action-layout > .ill::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #fff;
	transition: .5s .5s;
}
.metier-fcpi .swiper-slide-fully-visible .action-layout > .ill::after {
	width: 0;
	right: 0;
}

.action-layout > .content {
	position: relative;
	left: calc(var(--gutter) * -2);
	flex: 0 0 70%;
	text-align: left;
	padding: calc(var(--gutter) * 1.5) 0 calc(var(--gutter) * 2) 0;
}
.action-layout > .content .aside {
	flex: 0 0 22em;
	background-color: var(--lightGrey);
	padding: 2em;
}
.action-layout > .content .main {
	flex: 1;
	padding-top: 2em;
	padding-left: calc(var(--gutter) * 2);
	max-width: calc(var(--wrapper) / 1.75);
}

@media screen and (max-width: 1000px) and (min-width: 801px) {
	.action-layout > .ill { flex: 0 0 35%; }
	.action-layout > .content {
		flex: 0 0 65%;
		flex-wrap: nowrap;
	}
	.action-layout > .content .aside {
		flex: 0 0 20em;
	}
	.action-layout > .content .main {
		padding-left: var(--gutter);
		flex: 0 0 calc(100% + var(--gutter) - 20em);
	}
}
@media screen and (max-width: 850px) {
	.action-layout > .ill { flex: 0 0 50%; }
	.action-layout > .content { flex: 0 0 50%; }
	.action-layout > .content {
		flex-wrap: wrap;
	}
	.action-layout > .content .main {
		background-color: #fff;
		padding: 2em;
		flex: 0 0 calc(100% + (var(--gutter) * 2));
	}
}
@media screen and (max-width: 550px) {
	.action-layout > .ill { flex: 0 0 100%; height: 60vw; }
	.action-layout > .content {
		padding-top: 0;
		margin-top: calc(var(--gutter) * -1.5);
		flex: 0 0 100%; left: 0;
	}
	.action-layout > .content .aside {
		padding: var(--gutter);
	}
	.action-layout > .content .main {
		flex: 0 0 100%;
		padding: var(--gutter);
	}
}

.esg-documents {
	background-color: var(--color1);
	color: #fff;
	background-image: url(../../img/icon-audacia-white.svg);
	background-size: 25vw auto;
	background-repeat: no-repeat;
	background-position: top 2vw left -9vw;
	padding: calc(var(--gutter) * 2) 0 0 0;
}
.esg-documents .documents {
	color: var(--textColor);
	margin-top: calc(var(--gutter) * 2);
}
.esg-documents .documents > .wrapper {
	position: relative;
	padding-top: calc(var(--gutter) * 1);
	padding-bottom: calc(var(--gutter) * 2);
}
.esg-documents .documents > .wrapper::before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background-color: #fff;
}
.esg-documents .files-section {
	z-index: 2;
	position: relative;
}
.esg-documents .files-section:not(:first-child) {
	padding-top: 1em;
}
.files-section {
	margin-top: calc(var(--gutter) * 0.5);
	text-align: left;
}
.esg-documents .many-files .files-section:not(:first-child) {
	padding-top: 0;
}
.many-files .files-section {
	margin-top: calc(var(--gutter) * 0.25);
}
.many-files .files-title {
	position: relative;
	padding-right: 2em;
	cursor: pointer;
	display: inline-block;
	--s: 1.5em;
}
/*.many-files .files-title::before {
	content: '';
	position: absolute;
	top: 25%;
	right: 0;
	width: var(--s);
	height: var(--s);
	border-radius: 50%;
	background-color: var(--textColor);
	transform: translateY(-50%);
	transition: 0.5s;
}
.many-files .active .files-title::before {
	background-color: var(--color1);
}*/
.many-files .files-title::after {
	content: '';
	position: absolute;
	top: 25%;
	right: 0;
	width: var(--s);
	height: var(--s);
	border-radius: 50%;
  background-image: url(../../img/simple-arrow-2.svg);
  background-size: 46% auto;
  background-position: center;
  background-repeat: no-repeat;
	transform: translateY(-50%);
/*	filter: brightness(0) invert(1);
*/}
.many-files .active .files-title::after {
	transform: rotate(90deg) translateY(0) translateX(-50%)
}
.many-files .files-section:not(.active) .files-list {
	display: none;
}
.files-list > * {
	flex: 0 0 33.3333%;
}
.files-list > *.sep {
	flex: 0 0 100%;
}
.files-list .sep {
	height: 1px;
	background-color: #ccc;
}
.files-title {
	position: relative;
	padding-bottom: 0.5em;
	margin-bottom: 0.75em;
}
.files-title > * {
	font-family: var(--titleFont);
	font-size: 1.222em;
}
.file-item {
	position: relative;
	padding: 1em 5em 1em 0;
	display: flex;
	align-items: center;
	height: 100%;
}
.file-item .name {
	font-size: 0.9em;
	line-height: 1.25em;
	transition: 0.5s;
}
.file-item:hover .name {
	color: var(--color1);
}
.file-item .action {
	--s: 1.5em;
	position: absolute;
	top: 0;
	right: 3em;
	width: 1.5em;
	height: 100%;
}
.file-item .action::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--s);
	height: var(--s);
	border-radius: 50%;
	background-color: var(--textColor);
	transform: translate(-50%, -50%);
	transition: 0.5s;
}
.file-item:hover .action::before {
	background-color: var(--color1);
}
.file-item .action::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--s);
	height: var(--s);
	border-radius: 50%;
  background-image: url(../../img/simple-arrow-2.svg);
  background-size: 46% auto;
  background-position: center;
  background-repeat: no-repeat;
	transform: translate(-47%, -50%);
	filter: brightness(0) invert(1);
}

/* Uniquement pour Straton */

.club-intro--straton{
	background-color: var(--lightGrey);
	padding: calc(var(--gutter) * 1) 0;
}

.club-intro--straton .grid > .ill img{
	display:block;   /* évite les espaces inline */
	width:100%;
	height:auto;
}

.club-intro--straton .grid > .ill .legend{
	margin-top: 0;
	opacity: .8;
}

.club-intro {
	background-color: #fff;
	padding: calc(var(--gutter) * 1) 0;
}
.club-intro .grid {
	--g: 2em;
}
.club-intro .grid > .ill {
	flex: 0 0 40%;
}
.club-intro .grid > .content {
	flex: 0 0 60%;
	text-align: left;
}



@media screen and (max-width: 1000px) {
	.club-intro .grid {
		--g: 0;
	}
	.club-intro .grid > .ill {
		flex: 0 0 100%;
		text-align: left;
	}
	.club-intro .grid > .ill img {
		width: 30em;
	}
	.club-intro .grid > .content {
		flex: 0 0 100%;
		padding: calc(var(--gutter) * 1.5) 0 0 0;
	}
}

.club-letter {
	background-color: #fff;
	padding: 0 0 calc(var(--gutter) * 1) 0;
	--mt: 20vh;
}
.club-letter .letter-intro {
	padding: calc(var(--gutter) * 1.5) 0 calc(var(--gutter) * 0 + var(--mt)) 0;
}
.club-letter .letter-video {
	margin-top: calc(var(--mt) * -1);
}

.club-videos {
	background-color: var(--lightGrey);
	padding: calc(var(--gutter) * 1.5) 0;
}
.videos-layout {
	--g: 0.5em;
	margin-top: calc(var(--gutter));
}
.videos-layout > .main-video-wrapper {
	flex: 0 0 55%;
}
.videos-layout > .videos-list {
	flex: 0 0 45%;
}
.videos-layout > .videos-list .swiper {
	padding-left: 10px;
	height: 486px;
}
.videos-layout > .videos-list .swiper-slide {
	height: auto !important;
}
.videos-layout > .videos-list .swiper-slide.hide {
	display: none;
}
.videos-list .swiper-videos-pagination {
	font-size: 0.75em;
}
.videos-list .swiper-pagination-progressbar-fill {
	background-color: var(--color1);
}
.box-video {
	cursor: pointer;
}
.box-video .the-video {
	flex: 0 0 40%;
}
.box-video .the-video .iframe-wrapper {
	padding-bottom: 56.35%;
}
.box-video .the-legend {
	flex: 0 0 60%;
	align-self: center;
	text-align: left;
	padding: 0 0 0 2em;
	font-size: 0.9em;
}
.box-video .date {
	font-size: 0.85em;
}
.box-video .text {
	margin-top: 0.6em;
}
.main-video-wrapper .box-video .the-video {
	flex: 0 0 100%;
}
.main-video-wrapper .box-video .the-legend {
	flex: 0 0 100%;
	padding: 1em 0 0 0;
	font-size: 1.25em;
}
.main-video-wrapper .box-video .text {
	margin-top: 0.3em;
}
.main-video-wrapper .box-video > a.fulldiv {
	display: none;
}

@media screen and (max-width: 1800px) {
	.videos-layout > .videos-list .swiper {
		height: 26.4vw;
	}
}
@media screen and (max-width: 1300px) {
	.videos-layout > .videos-list .swiper {
		height: auto;
	}
}
@media screen and (max-width: 900px) {
	.videos-layout > .main-video-wrapper {
		flex: 0 0 100%;
	}
	.videos-layout > .videos-list {
		flex: 0 0 100%;
	}
	.videos-layout > .videos-list .swiper {
		padding-left: 0;
	}
}



.club-documents .files-list > * {
	flex: 0 0 50%;
}
.club-documents .files-list > *.sep {
	flex: 0 0 100%;
}

/* ferme le bloc proprement */
.club-documents .ps-content {
	text-align: left;
}

/* (était nisté → on le sort) */
@media screen and (max-width: 700px) {
	.club-documents .files-list > * { flex: 0 0 100% !important; }
	.club-documents .files-list > .sep { display: none; }
	.club-documents .file-item { border-bottom: var(--lightGrey) 1px solid; padding-right: 3em; }
	.club-documents .file-item .action { right: 1em; }
}

/* tout le CSS club-media sort du bloc */
.club-media { background-color: var(--lightGrey); padding: calc(var(--gutter) * 2) 0; }
.club-media-intro > .content { flex: 1; text-align: left; }
.club-media-intro > .contacts { flex: 0 0 17em; text-align: right; }
.club-media-posts nav { margin: 2em 0; }
.club-media-posts .box-post { width: 22em; }

@media screen and (max-width: 700px) {
	.club-media-intro > .content { flex: 0 0 100%; }
	.club-media-intro > .contacts { flex: 0 0 100%; text-align: left; margin-top: 2em; }
}

/* nav-post-links aussi hors du bloc */
.nav-post-links > * { flex: 0 0 50%; border: var(--lightGrey) 1px solid; }
.nav-post-links a { display: block; padding: 1.5em 0.5em; }
.nav-post-links a:hover { background-color: var(--color1); color: #fff; }



@media screen and (max-width: 1440px) {
	.esg-documents {
		background-position: top 2vw right -9vw;
	}
}
@media screen and (max-width: 850px) {
	.esg-documents {
		background-size: 35vw auto;
		background-position: top -15vw right -15vw;
	}
}


/* Sous-sections documents */
.files-list.sub-sections-container > .sub-section-item {
	flex: 0 0 100%;
	margin: 0;
}

.sub-section-item {
	margin-bottom: calc(var(--gutter) * 1.5); /* Ajustez 1.5 pour la taille désirée */
}

/* 1. Aligne les documents internes sur deux colonnes (spécificité élevée) */
.club-documents .sub-section-item .files-list.flex > div {
	flex: 0 0 50%;
}

/* 2. Cacher/Montrer le contenu */
.sub-section-item:not(.active) .files-list.flex {
	display: none;
}

/* 3. Marge et style divers */
.sub-sections-container {
	margin-top: calc(var(--gutter));
}
.file-item .name strong {
	font-family: var(--titleFont);
	font-weight: bold;
}
.sub-section-item .files-title {
	cursor: pointer;
}

.sub-section-item.active {
	padding-bottom: 1.8em;
}

/* 4. Rotation de la flèche */
.many-files .sub-section-item.active .files-title::after {
	transform: rotate(90deg) translateY(0) translateX(-50%);
	color: var(--color1);
}

/* Règle 1 : Force le séparateur à prendre toute la ligne (100%) */
.club-documents .sub-section-item .files-list.flex > .sep {
	flex: 0 0 100% !important; /* Utilisation de !important pour écraser toute règle conflictuelle */
	width: 100% !important;     /* Une double précaution */
	max-width: none !important; /* Assure qu'aucune limite de largeur ne s'applique */
	height: 1px;
	background-color: #ccc;
	margin: 0;
}