html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	color: #000;
	letter-spacing: 1.5px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255,255,255,0);
	padding: 40px;
	border-bottom: 1px solid rgba(241, 241, 241, 0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 25;
}

header .menu_icon {
	width: 33%;
	text-align: left;
	cursor: pointer;
}

header .menu_icon .content_ligns {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	transition: all ease-in-out .2s;
}

header .menu_icon .content_ligns .lign {
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: #000;
	margin: 3px 0;
	cursor: pointer;
	transition: all ease-in-out .2s;
}

header .menu_icon .content_ligns.active .lign {
	transform: rotate(45deg);
	transition: all ease-in-out .2s;
}

header .menu_icon .content_ligns.active .lign:first-child {
	transform: rotate(-45deg);
	position: absolute;
	transition: all ease-in-out .2s;
}

header .logo {
	width: 33%;
	text-align: center;
}

header .logo img {
	width: 200px;
	margin: 0 auto;
}


header .lang {
	width: 33%;
	text-align: right;
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 14px;
}

.menu {
	position: fixed;
	top: 0;
	z-index: 20;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 200px 0 40px 90px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: all ease-in-out .2s;
}

.first_menu {
	margin-bottom: auto;
}

.menu ul li {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 10px 0;
	cursor: pointer;
	position: relative;
	display: block;
}

.menu ul li a {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #000;
	text-decoration: none;
	display: table;
	position: relative;
}

/* sous-menu géré plus bas */

.menu ul li ul li {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #000;
	text-decoration: none;
	margin: 12px 0;
	display: table;
}

.menu ul li ul li::after {
	position: absolute;
	width: 0;
	content: '';
	height: 3px;
	background: rgb(229, 12, 54);
	left: 0;
	bottom: -4px;
	transition: all ease-in-out .2s;
	cursor: pointer;
}

.menu ul.first_menu > li {
	display: block;
}

.menu ul.first_menu > li > a::after {
	position: absolute;
	width: 0;
	content: '';
	height: 5px;
	background: rgb(229, 12, 54);
	left: 0;
	bottom: -6px;
	transition: all ease-in-out .2s;
}

.menu ul.first_menu > li > a:hover::after {
	width: 100%;
}

/* ::after du legatl_stuff géré sur le <a> */

.menu ul li:hover::after {
	width: 100%;
	transition: all ease-in-out .2s;
	cursor: pointer;
}

/* Pas de ::after sur le li parent de Nos Expertises (géré sur le <a>) */
.menu ul.first_menu > li:hover::after {
	width: 0;
}

.menu .legatl_stuff {
	margin: 60px 0 0 0;
	padding: 60px 0 0 0;
	border-top:1px solid #000 ;
}

.menu .legatl_stuff ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 20px 0;
	cursor: pointer;
	display: block;
}

.menu .legatl_stuff ul li a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #000;
	text-decoration: none;
	display: table;
	position: relative;
}

.menu .legatl_stuff ul li a::after {
	position: absolute;
	width: 0;
	content: '';
	height: 4px;
	background: rgb(229, 12, 54);
	left: 0;
	bottom: -4px;
	transition: all ease-in-out .2s;
}

.menu .legatl_stuff ul li a:hover::after {
	width: 100%;
}



/* Sous-menu fermé par défaut */
.menu ul.first_menu > li > ul {
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease,
    transform 0.3s ease,
    margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sous-menu ouvert */
.menu ul.first_menu > li:hover > ul,
.menu ul.first_menu > li.is-open > ul {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  margin: 15px 0 0 0;
}

/* Items du sous-menu avec stagger */
.menu ul.first_menu > li > ul > li {
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.2s ease;
}

.menu ul.first_menu > li:hover > ul > li,
.menu ul.first_menu > li.is-open > ul > li {
  opacity: 1;
  transform: translateX(0);
}

.menu ul.first_menu > li:hover > ul > li:nth-child(1),
.menu ul.first_menu > li.is-open > ul > li:nth-child(1) { transition-delay: 0.2s; }

.menu ul.first_menu > li:hover > ul > li:nth-child(2),
.menu ul.first_menu > li.is-open > ul > li:nth-child(2) { transition-delay: 0.26s; }

.menu ul.first_menu > li:hover > ul > li:nth-child(3),
.menu ul.first_menu > li.is-open > ul > li:nth-child(3) { transition-delay: 0.32s; }

.menu ul.first_menu > li:hover > ul > li:nth-child(4),
.menu ul.first_menu > li.is-open > ul > li:nth-child(4) { transition-delay: 0.38s; }

.menu ul.first_menu > li:hover > ul > li:nth-child(5),
.menu ul.first_menu > li.is-open > ul > li:nth-child(5) { transition-delay: 0.44s; }

.carousel {
	width: 100dvw;
	height: 100dvh;
	position: relative;
	overflow: hidden;
}

.carousel ul {
	width: 100%;
	height: 100%;
	padding: 15vh 5vw;
}

.carousel ul li {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel ul li img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.carousel ul li.special_carou img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

.carousel .caousel_indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.carousel .caousel_indicator .indacator {
	width: 40px;
	height: 5px;
	border-radius: 10px;
	background: #000;
	opacity: .7;
	margin: 0 10px;
}

.carousel .caousel_indicator .indacator.active {
	opacity: 1;
}


.agency {
	height: auto;
	max-width:1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.hospitality {
	height: auto;
	max-width:1240px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.hospitality button {
	min-width: 300px;
	margin: 30px auto 0 !important;
	padding: 10px 0;
	border: 1px solid goldenrod;
	color: goldenrod;	
	font-family: 'Melodrama-Medium';
	text-transform: uppercase;
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	background: none;
	cursor: pointer;
	transition: all ease-in-out .2s;
}

.hospitality button:hover {
	color: #fff;	
	background: goldenrod;
	transition: all ease-in-out .2s;
}

.second_menu {
	height: 0;
	overflow: hidden;
}

.experience_hospitality {
	width: 100%;
	display: grid;
	grid-template-columns: 30% 30% 30%;
	justify-content: space-between;
}

.experience_hospitality .experience_content {
	/* padding: 0 10%; */
	margin: 30px 0 0 0;
	text-decoration: none;
	color: #000;
}

.experience_hospitality .experience_content h3 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 30px;
	/* text-transform: uppercase; */
	text-align: left;
	line-height: 35px;
	margin: 0 0 20px 0;
}

.experience_hospitality .experience_content .image_experience_content {
	width: 100%;
	margin: 0 0 5px 0;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: all ease-in-out .2s;
}

.experience_hospitality .experience_content:hover .image_experience_content {
	transform: scale(1.02);
	transition: all ease-in-out .2s;
}

.experience_hospitality .experience_content .image_experience_content img {
	width: 100%;
	aspect-ratio: 4.6 / 5;
	object-fit: cover;
}


.they_trust_us {
	margin: 0 0 40px 0;
	padding: 40px 20px;
	background: goldenrod;
}

.they_trust_us p {
	text-align: center;
	color: #fff;
}

.they_trust_us .brands {
	margin: 40px auto 0;
}

.they_trust_us .brands h3 {
	text-align: center;
	margin: 40px auto 20px;
}

.they_trust_us .brands .logos_grid {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.they_trust_us .brands .logos_grid ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: scrollBrands 50s linear infinite;
}

.they_trust_us .brands .logos_grid ul:hover {
	animation-play-state: paused;
}

.they_trust_us .brands .logos_grid ul li {
	flex-shrink: 0;
	margin: 0;
}

.they_trust_us .brands .logos_grid ul li img {
	width: 80px;
	height: auto;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	/* filter: grayscale(100%); */
}

@keyframes scrollBrands {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}





footer {
	width: 100%;
	margin: 40px 0 0 0;
	padding: 0 0 40px 0;
	background: #000;
	color: rgb(180, 180, 180);
}

footer .content_footer {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 14px;
	height: auto;
	max-width:1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
}

footer .content_footer ul ol {
	font-family: 'Melodrama-Medium';
	font-weight: 200;
	text-transform: uppercase;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	margin: 0 0 15px 0;
	color: rgb(100, 100, 100);
	transition: all ease-in-out .2s;
}

footer .content_footer a {
	text-decoration: none;
	color: inherit;
}


footer .content_footer ul li {
	padding: 5px 0;
	cursor: pointer;
	transition: all ease-in-out .2s;
}

footer .content_footer ul:hover li:not(:hover) {
	opacity: .7;
}

footer .content_footer ul:hover ol {
	opacity: 1;
	color: rgb(245, 245, 245);
	transition: all ease-in-out .2s;
}

footer .content_footer_bottom {
	margin: 40px 0 0 0;
}

footer .content_footer_bottom p {
	text-align: center;
	font-family: 'Satoshi-Medium';
	font-weight: 300;
	font-display: swap;
	font-style: normal;
	font-size: 10px;
	color: rgb(150, 150, 150);
}



/* MENTIONS LEGALES */

.mentions_legales {
	height: auto;
	max-width: 1240px;
	margin: 160px auto 0;
	padding: 0 20px;
}

.mentions_legales h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.mentions_legales h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: left;
}

.mentions_legales p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

/* POLITIQUES */

.politiques {
	height: auto;
	max-width: 1240px;
	margin: 160px auto 0;
	padding: 0 20px;
}

.politiques h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.politiques h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: left;
}

.politiques p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.politiques a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: goldenrod;
	text-decoration: none;
}

.politiques ul {
	margin: 5px 0 10px;
}

.politiques ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	margin: 5px auto;
	text-align: left;
}


/* NOS ENGAGEMENTS */

.nos_engagements {
	height: auto;
	max-width: 1240px;
	margin: 160px auto 0;
	padding: 0 20px;
}

.nos_engagements h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.nos_engagements h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: left;
}

.nos_engagements p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.nos_engagements a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: goldenrod;
	text-decoration: none;
}

.nos_engagements ul {
	margin: 5px 0 10px;
}

.nos_engagements ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	margin: 5px auto;
	text-align: left;
}

.nos_engagements .nos_engagements_ecologique {
	margin: 60px 0 0 0;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: center;
}

.nos_engagements .nos_engagements_ecologique .image_ecologique {
	width: 100%;
}

.nos_engagements .nos_engagements_ecologique .image_ecologique img {
	width: 100%;
	aspect-ratio: 5 / 5;
	object-fit: cover;
}

.nos_engagements .nos_engagements_social {
	margin: 60px 0 0 0;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: center;
}

.nos_engagements .nos_engagements_social .image_social {
	width: 100%;
}

.nos_engagements .nos_engagements_social .image_social img {
	width: 100%;
	aspect-ratio: 5 / 5;
	object-fit: cover;
}



/* SUR LE TERRAIN */


.title_brands_merch {
	width: 100%;
	margin: 40px auto;
}

.title_brands_merch .logo_brands_merch {
	width: 300px;
	margin: 0 auto;
}
.title_brands_merch .logo_brands_merch img {
	width: 100%
}

.reference_page {
	height: auto;
	max-width: 1240px;
	margin: 40px auto 0;
	padding: 0 20px;
}

.reference_page h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.reference_page .reference_page_title {
	margin: 40px auto;
	padding: 20px 20%;
	text-align: center !important;
	color: #000;
	background-position: center center;
}

.reference_page h3 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 30px;
	text-align: left;
}

.reference_page p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 18px;
	margin: 0 auto;
	text-align: left;
}

.reference_page a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: goldenrod;
	text-decoration: none;
}

.reference_page ul {
	margin: 5px 0 10px;
}

.reference_page ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 18px;
	margin: 5px auto;
	text-align: left;
}

.reference_page .collaborations {
	margin: 0 auto;
}

.reference_page .collaborations h3 {
	text-align: center;
	margin: 40px auto 20px;
}

.reference_page .collaborations .logos_grid ul {
	display: grid;
	grid-template-columns: 30% 30% 30%;
	justify-content: center;
	align-items: baseline;
}

.reference_page .collaborations .logos_grid ul li {
	margin: 20px auto;
}

.reference_page .collaborations .logos_grid ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.reference_page .collaborations .logos_grid ul li a img {
	width: 100px;
}

.reference_page .collaborations .logos_grid ul li a h4 {
	font-family: 'Satoshi-Medium';
	font-weight: 300;
	font-display: swap;
	font-style: normal;
	font-size: 14px;
	line-height: 18px;
	color: black;
	margin: 20px auto 0;
}

.reference_page .collaborations .logos_grid ul li a p {
	font-family: 'Satoshi-Medium';
	font-weight: 300;
	font-display: swap;
	font-style: normal;
	font-size: 10px;
	line-height: 12px;
	color: black;
	margin: 5px auto 0;
}





.reference_page .etude_de_cas {
	margin: 0 auto;
}

.reference_page .etude_de_cas h3 {
	text-align: center;
	margin: 40px auto 20px;
}

.reference_page .etude_de_cas .logos_grid ul {
	width: 100%;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: baseline;
	position: relative;
}

.reference_page .etude_de_cas .logos_grid ul li {
	margin: 20px auto;
	transition: all ease-in-out .2s;
}

.reference_page .etude_de_cas .logos_grid ul li:hover {
	transform: scale(1.02);
	transition: all ease-in-out .2s;
}

.reference_page .etude_de_cas .logos_grid ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}

.reference_page .etude_de_cas .logos_grid ul li a img {
	width: 100%;
	aspect-ratio: 7/4;
	object-fit: cover;
}

.reference_page .etude_de_cas .logos_grid ul li a h4 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	line-height: 34px;
	margin: 0;
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translate(-50%);
}

.reference_page .etude_de_cas .logos_grid ul li a p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 14px;
	line-height: 18px;
	margin: 0;
	text-align: left;
	color: #000;
}






.reference_page .brands {
	margin: 60px auto 0;
}

.reference_page .brands h3 {
	text-align: center;
	margin: 40px auto 20px;
}

.reference_page .brands .logos_grid {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reference_page .brands .logos_grid ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: scrollBrands 30s linear infinite;
}

.reference_page .brands .logos_grid ul:hover {
	animation-play-state: paused;
}

.reference_page .brands .logos_grid ul li {
	flex-shrink: 0;
	margin: 0;
}

.reference_page .brands .logos_grid ul li img {
	width: 80px;
	height: auto;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	filter: grayscale(100%);
}

@keyframes scrollBrands {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}





/* DANS LES COULISSES */

.dans_les_coulisses {
	height: auto;
	max-width: 1240px;
	margin: 160px auto 0;
	padding: 0 20px;
}

.dans_les_coulisses h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.dans_les_coulisses h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: left;
}

.dans_les_coulisses p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.dans_les_coulisses .les_coulisses_agence {
	margin: 60px 0 0 0;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: center;
}

.dans_les_coulisses .les_coulisses_agence .image_agence {
	width: 100%;
}

.dans_les_coulisses .les_coulisses_agence .image_agence img {
	width: 100%;
	aspect-ratio: 5 / 5;
	object-fit: cover;
}

.dans_les_coulisses .les_coulisses_equipe {
	margin: 60px 0 0 0;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: center;
}

.dans_les_coulisses .les_coulisses_equipe .image_equipe {
	width: 100%;
}

.dans_les_coulisses .les_coulisses_equipe .image_equipe img {
	width: 100%;
	aspect-ratio: 5 / 5;
	object-fit: cover;
}


/* EXPERIENCES */

.title_experience_details {
	height: 400px;
	margin: 160px auto 0;
	text-align: center !important;
	background-image: url(../images/RMMC/HAUT.PAGE.png);
	color: #fff;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	text-align: center;
}

.title_experience_details.sport,
.title_experience.sport {
	background-image: url(../images/Accueil.Sports.jpg);
}

.title_experience.sport {
	background-position: center -600px !important;
}

.title_experience.monte {
	background-image: url(../images/1.Hospi.2.png);
	background-position: center -650px !important;
}

.title_experience_details.f1,
.title_experience.f1 {
	background-image: url(../images/F1/HAUT.PAGE.png);
	background-size: cover;
}

.title_experience_details.competition,
.title_experience.competition {
	background-image: url(../images/paddle/HAUT.PAGE.png);
	background-size: cover;
}

.title_experience_details.seminaire,
.title_experience.seminaire {
	background-image: url(../images/seminaire/3.jpg);
	background-size: cover;
}

.title_experience_details.merch,
.title_experience.merch {
	background-image: url(../images/realisations/PAGE.HAUT.jpg);
	background-size: cover;
}

.title_experience_details.californie,
.title_experience.californie {
	background-image: url(../images/voyage/3.Voyage.2026.png);
	background-size: cover;
}

.title_experience_details.agence,
.title_experience.agence {
	background-image: url(../images/SiteV2/HAUT.PAGE.jpg);
	background-size: cover;
}

.title_experience_details.expertise,
.title_experience.expertise {
	background-image: url(../images/SiteV2/Haut.jpg);
	background-size: cover;
}

.title_experience_details.horizons,
.title_experience.horizons {
	background-image: url(../images/nouveaux-horizons/HAUT.PAGE.jpeg);
	background-size: cover;
}

.title_experience_details.sponsoring,
.title_experience.sponsoring {
	background-image: url(../images/sponsoring/HAUT.PAGE.png);
	background-size: cover;
}

.title_experience_details.regie,
.title_experience.regie {
	background-image: url(../images/regie/HAUT.PAGE.jpg);
	background-size: cover;
}

.title_experience_details.merchandising,
.title_experience.merchandising {
	background-image: url(../images/merchandising/HAUT.PAGE.jpg);
	background-size: cover;
}

.title_experience_details.voyage_corpo,
.title_experience.voyage_corpo {
	background-image: url(../images/realisations/PAGE.HAUT.jpg);
	background-size: cover;
}

.title_experience {
	transition: all ease-in-out .2s;
}

.title_experience:hover {
	transform: scale(1.01);
	transition: all ease-in-out .2s;
}


.experience_details {
	height: auto;
	max-width: 1240px;
	margin: 40px auto 0;
	padding: 0 20px;
}

.experience_details hr {
	height: 2px;
	max-width: 300px;
	margin: 0 auto 80px;
	border: none;
	color: goldenrod;
	background-color: goldenrod;
}

.experience_details_content_main {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 80px 0;
}

.experience_details_content_main.reverse {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
}

.experience_details_content_main .experience_details_content {
	width: 45%;
	text-align: center;
}

.experience_details_content_main .experience_details_content img {
	width: 80%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 10px;
}

.experience_details_content_main .experience_details_content.agence_logo img {
	width: 60%;
	aspect-ratio: initial;
}

.experience_details_content_main .experience_details_content h5 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 35px;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 40px 0 0 0;
	text-align: left;
}

.experience_details_content_main .experience_details_content p {
	margin: 20px 0 0 0;
}

.experience_details_content_main .experience_details_content p b {
	font-weight: 900;
	font-size: 18px;
}

.experience_details_content_main .experience_details_content ul li {
	margin: 25px 0 0 0;
}

.experience_details_content_main .experience_details_content ul li {
	margin: 5px 0 0 0;
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.experience_details_content_main .experience_details_content button,
.experience_details_content_main .experience_details_content a {
	min-width: 280px;
	margin: 30px auto 0 !important;
	padding: 10px 20px;
	border: 1px solid goldenrod;
	color: goldenrod;	
	font-family: 'Melodrama-Medium';
	text-transform: uppercase;
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	background: none;
	cursor: pointer;
	transition: all ease-in-out .2s;
	display: inline-block;
}

.experience_details_content_main .experience_details_content button:hover,
.experience_details_content_main .experience_details_content a:hover {
	color: #fff;	
	background: goldenrod;
	transition: all ease-in-out .2s;
}

.discover_more {
	width: 100%;
	text-align: center;
}

.discover_more button,
.discover_more a {
	min-width: 300px;
	margin: 30px auto 0 !important;
	padding: 10px 0;
	border: 1px solid goldenrod;
	color: goldenrod;	
	font-family: 'Melodrama-Medium' !important;
	text-transform: uppercase;
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	background: none;
	cursor: pointer;
	transition: all ease-in-out .2s;
	display: inline-block;
}

.discover_more button:hover,
.discover_more a:hover {
	color: #fff;	
	background: goldenrod;
	transition: all ease-in-out .2s;
}


.experience_details_content.carousel_spec {
    position: relative;
    overflow: hidden;
}

.experience_details_content.carousel_spec img {
    position: absolute;
    top: 0;
    left: 50%;
	transform: translate(-50%);
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.experience_details_content.carousel_spec img.active {
    opacity: 1;
}

/* Image fantôme qui donne sa hauteur au conteneur */
.experience_details_content.carousel_spec img.ghost {
    position: relative;
    opacity: 0;
    pointer-events: none;
}






.experience_details {
	margin: 0 auto 40px;
}

.experience_details p {
	margin: 20px 0 0 0;
}

.slider_sport {
    position: relative;
    overflow: hidden;
}

.slider_sport h5 {
    margin-bottom: 16px;
}

.slider_sport ul {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slider_sport ul li {
    flex: 0 0 calc(33% - 11px); /* 4 items visibles */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media screen and (max-width: 750px) {
	.slider_sport ul li {
		flex: 0 0 calc(33% - 11px); /* 3 items visibles */
		gap: 8px;
	}
}

.slider_sport .img_content {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.slider_sport .img_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_sport h5 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 40px;
	text-transform: uppercase;
	text-align: left;
	line-height: 45px;
	margin: 40px 0 20px;
}

.slider_sport h6 {
    font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 18px;
	line-height: 17px;
	margin: 10px 0 0;
}

/* Flèches */
.slider_arrow {
    position: absolute;
    top: calc(50% + 35px);
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    transition: opacity 0.2s;
}

.slider_arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.slider_arrow.prev { left: 8px; }
.slider_arrow.next { right: 8px; }





.experience_details .slider_sport {
	height: auto;
	max-width: 1240px;
	margin: 40px auto 0;
}


/* TERRAINS DE JEUX */

.experience_details {
	height: auto;
	max-width: 1240px;
	padding: 0 20px;
}

.experience_details h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.experience_details .title_terrain {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0px 0 20px;
	cursor: pointer;
}

.experience_details .title_terrain h2 {
	margin: 40px 0 20px;
	text-align: center;
	
}

.experience_details .title_terrain .more_infos_terrain {
	margin: 0 0 0 80px;
	position: relative;
	cursor: pointer;
	transition: all ease-in-out .2s;
}

.experience_details .title_terrain.active_section .more_infos_terrain {
	transform: rotate(45deg);
	transition: all ease-in-out .2s;
}

.experience_details .title_terrain .more_infos_terrain .line_more_infos_terrain {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 2px;
	background: #000;
}

.experience_details .title_terrain .more_infos_terrain .line_more_infos_terrain:first-child {
	transform: translate(-50%, -50%) rotate(90deg);
}

.experience_details h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: center;
}

.experience_details h4 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 30px;
	text-align: left;
	line-height: 34px;
	margin: 10px auto 15px;
}

.experience_details .title_experience p {
	text-align: center;
}

.experience_details a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: goldenrod;
	text-decoration: none;
}

.experience_details ul {
	margin: 5px 0 10px;
}

.experience_details ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	margin: 5px auto;
	text-align: left;
}

.experience_details .title_experience {
	margin: 40px auto;
	padding: 100px 20%;
	text-align: center !important;
	color: #fff;
	background-position: center center;
}

.experience_details .title_experience.football {
	margin: 40px auto;
	padding: 100px 20%;
	text-align: center !important;
	/* background-image: url(../images/stade_monaco.png); */
	color: #fff;
	background-position: center center;

}

.experience_details .full_experience {
	width: 100%;
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	align-items: baseline;
}

.experience_details .full_experience .experience_description {
	margin: 20px auto;
}

.experience_details .full_experience .experience_description .img_experience {
	width: 100%;
}

.experience_details .full_experience .experience_description .img_experience img {
	width: 100%;
	aspect-ratio: 7/4;
	object-fit: cover;
}

/* CARRIERE*/

.carriere {
	height: auto;
	max-width: 1240px;
	margin: 160px auto 0;
	padding: 0 20px;
}

.carriere h1, h2 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	line-height: 55px;
	margin: 60px auto 20px;
}

.carriere h3 {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 25px;
	line-height: 24px;
	margin: 40px auto 15px;
	text-align: left;
}

.carriere p {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
}

.carriere a {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: goldenrod;
	text-decoration: none;
}

.carriere ul {
	margin: 5px 0 10px;
}

.carriere ul li {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	margin: 5px auto;
	text-align: left;
}

.carriere .post {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-radius: 10px;
	border: 2px solid #000;
}

.carriere .post button {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	padding: 10px 20px;
	border-radius: 10px;
	color: #fff;
	background: #000;
	border: none;
	font-size: 16px;
	line-height: 20px;
	transition: transform ease-in-out .2s;
	cursor: pointer;
}

.carriere .post button:hover {
	transform: scale(1.02);
	transition: transform ease-in-out .2s;
}

.carriere .post p {
	font-size: 12px !important;
	line-height: 16px !important;
}

.team_agence {
	width: 100%;
}

.team_agence h5 {
	font-family: 'Melodrama-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 35px;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 60px 0 20px 0;
	text-align: center;
}

.team_agence ul {
	display: grid;
	justify-content: center;
	grid-template-columns: 28% 28% 28%;
	gap: 20px;
}

.team_agence ul li {
	margin: 40px auto;
	text-align: center;
	font-family: 'Satoshi-Medium';
	font-weight: 900;
	font-display: swap;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.team_agence ul li span {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 12px;
	text-transform: initial;
	letter-spacing: 4px;
}

.team_agence ul li span span {
	font-family: 'Satoshi-Medium';
	font-weight: 500;
	font-display: swap;
	font-style: normal;
	font-size: 9px;
	text-transform: initial;
	letter-spacing: 4px;
}

@media screen and (max-width:1024px) {
	.experience_hospitality {
		grid-template-columns: 48% 48%;
	}

	.reference_page .collaborations .logos_grid ul {
		display: grid;
		grid-template-columns: 48% 48%;
		justify-content: center;
		align-items: baseline;
	}

	.dans_les_coulisses .les_coulisses_agence {
		margin: 60px 0 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	.dans_les_coulisses .les_coulisses_agence .image_agence img {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.dans_les_coulisses .les_coulisses_equipe {
		margin: 60px 0 0 0;
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
		align-items: center;
	}

	.dans_les_coulisses .les_coulisses_equipe .image_equipe img {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}


	.nos_engagements .nos_engagements_ecologique {
		margin: 60px 0 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	.nos_engagements .nos_engagements_ecologique .image_ecologique {
		width: 100%;
	}

	.nos_engagements .nos_engagements_ecologique .image_ecologique img {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.nos_engagements .nos_engagements_social {
		margin: 60px 0 0 0;
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
		align-items: center;
	}

	.nos_engagements .nos_engagements_social .image_social {
		width: 100%;
	}

	.nos_engagements .nos_engagements_social .image_social img {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.experience_details_content_main {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 80px 0;
	}

	.experience_details_content_main.reverse {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.experience_details_content_main .experience_details_content {
		width: 100%;
	}

	.experience_details_content_main .experience_details_content img {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.team_agence ul {
		display: grid;
		justify-content: center;
		grid-template-columns: 45% 45%;
		gap: 20px;
	}



}

@media screen and (max-width:750px) {
	.experience_details h2 {
		font-family: 'Melodrama-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 35px;
		text-transform: uppercase;
		text-align: left;
		line-height: 40px;
		margin: 60px auto 20px;
	}
	.experience_details .full_experience {
		width: 100%;
		display: grid;
		grid-template-columns: 100%;
		justify-content: space-between;
		align-items: baseline;
	}

	.reference_page .etude_de_cas .logos_grid ul {
		width: 100%;
		display: grid;
		grid-template-columns: 100%;
		justify-content: space-between;
		align-items: baseline;
	}

	.team_agence ul {
		display: grid;
		justify-content: center;
		grid-template-columns: 80%;
		gap: 0px;
	}
}

@media screen and (max-width:640px) {
	header .logo img {
		width: 120px;
		margin: 0 auto;
	}

	.menu {
		padding: 180px 0 40px 40px;
	}

	.menu ul li {
		font-family: 'Melodrama-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 25px;
		text-transform: uppercase;
		letter-spacing: 4px;
		margin: 15px 0;
		cursor: pointer;
		position: relative;
		display: block;
	}

	.menu ul li a {
		font-family: 'Melodrama-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 25px;
		text-transform: uppercase;
		letter-spacing: 4px;
		color: #000;
		text-decoration: none;
	}

	.menu ul li ul li {
		margin: 16px 0;
	}

	.menu ul li ul li a {
		font-family: 'Melodrama-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 16px !important;
		text-transform: uppercase;
	}


	.menu ul.first_menu > li > a {
		font-size: 25px;
	}

	.menu ul.first_menu > li > a::after {
		height: 4px;
		bottom: -4px;
	}

	.menu .legatl_stuff ul li::after {
		position: absolute;
		width: 0;
		content: '';
		height: 4px;
		background: rgb(229, 12, 54);
		left: 0;
		top: 20px;
		transition: all ease-in-out .2s;
		cursor: pointer;
	}

	.menu ul li:hover::after {
		width: 100%;
		transition: all ease-in-out .2s;
		cursor: pointer;
	}

	.menu .legatl_stuff {
		margin: 60px 0 0 0;
		padding: 60px 0 0 0;
		border-top:1px solid #000 ;
	}

	.menu .legatl_stuff ul li {
		font-family: 'Satoshi-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 16px;
		text-transform: uppercase;
		letter-spacing: 4px;
		margin: 16px 0;
		cursor: pointer;
	}

	.menu .legatl_stuff ul li a {
		font-family: 'Satoshi-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 16px;
		text-transform: uppercase;
		letter-spacing: 4px;
		color: #000;
		text-decoration: none;
	}

	.title_experience_details {
		height: 250px;
		margin: 120px auto 0px;
		background-image: url("../images/RMMC/HAUT.PAGE.png");
		color: rgb(255, 255, 255);
		background-position: center center;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: Satoshi-Medium;
		font-weight: 500;
		font-style: normal;
		font-size: 25px;
		line-height: 24px;
		text-align: center !important;
	}



	footer {
		width: 100%;
		/* margin: 40px 0 0 0; */
		background: #000;
		color: rgb(180, 180, 180);
	}

	footer .content_footer {
		font-family: 'Satoshi-Medium';
		font-weight: 500;
		font-display: swap;
		font-style: normal;
		font-size: 14px;
		height: auto;
		max-width:100%;
		margin: 0 auto;
		padding: 0 20px;
		display: flex;
		flex-direction: column;
		align-items: baseline;
		justify-content: space-between;
	}


	footer .content_footer ul {
		margin: 25px 0;
	}
}

@media screen and (max-width:560px) {
	.experience_hospitality {
		grid-template-columns: 100%;
	}
	.reference_page .collaborations .logos_grid ul {
		grid-template-columns: 100%;
	}
}