@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
}

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

body.merci {
	background: url(../img/bg_merci.jpg) top center no-repeat;
	background-size: cover;
	text-align: center;
	color: #fff;
	padding-top: 22vh;
}

.blur-box {
	background: #fff;
	border-radius: 10px;
	padding: 40px 20px;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	max-width: 98%;
	margin: 0 auto;
	min-width: 40%
}

body.merci h1 {
	font-size: 62px;
	color: #000;
	font-weight: 600;
	margin: 30px 0 0 0;

}


body.merci .numForCTA {
	margin-top: 30px;
}

body.merci p {
	font-size: 18px;
	color: #000;
}

a.numForCTAThanks {
	background: url(../img/ic_call_thanks.svg) center left no-repeat;
	border: solid 2px #fff;
	color: #fff;
	text-decoration: none;
	height: 67px;
	display: inline-block;
	padding-left: 80px;
	padding-right: 20px;
	font-size: 28px;
	line-height: 64px;
	font-weight: 600;
	margin: 20px 0;
}

a.numForCTAThanks:hover {
	background: #fff url(../img/ic_call_thanks.svg) center left no-repeat;
	color: #000;
}

.container {
	display: flex;
	flex-wrap: inherit;
	justify-content: space-between;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
}

.scroll {

	opacity: 0;
	transition: all 1s ease-out;
	transform: translate3d(0, 2rem, 0);

}

.scrolled-in {

	opacity: 1;
	transform: translate3d(0, 0, 0);

}

body .eapps-widget-toolbar {
	display: none !important;
}

.global-styles,
.eapps-widget-toolbar {
	display: none !important;
}

.pictoSlice {
	background: url(../img/dots.png) top left no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 139px;
	height: 126px;
}

.oneCard {
	background: #fff;
	padding: 30px;
	position: relative;
	border-bottom: solid 5px #b89243;
	-webkit-box-shadow: 5px 8px 25px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 5px 8px 25px 0px rgba(0, 0, 0, 0.1);
	width: 50%;
}

.oneCard h6 {
	font-size: 20px;
	font-weight: 600;
	margin: 10px 0;
}

.oneCard p {
	color: #000B33;
	font-size: 15px;
	font-weight: 300;
	margin: 0;
}

section#types {
	padding: 100px 0;
}

.fourCards {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 30px;
	text-align: center;
	padding: 25px;
	padding-right: 80px;
}

/* Transition douce */
.navbar {
	transition: all 0.4s ease;
	background: transparent;
}

#disponibilite {
	padding: 100px 0;
}

.navbar .nav-link {
	color: #000;
	/* blanc au départ */
	transition: color 0.4s ease;
	font-weight: 500;
}

.nav-link.active::after {
	display: none
}

.nav-link.active {
	position: relative;
}

.scrolled .nav-link.active::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #fff;
	display: block;
}

.navbar.scrolled {
	background: #E7000B !important;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
	color: #fff !important;
	/* devient noir après scroll */
}

.navbar.scrolled .numForCTA span,
.navbar.scrolled .num {
	color: #fff;
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-collapse {
		justify-content: end;
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 20px;
		padding-right: 20px;
	}
}

body {
	position: relative;
}

.navbar-toggler {
	background: #fff !important;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
	position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link.active::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #fff;
}

.zoneAvantages li img {
	width: 28px;
}

.logo img {
	height: 40px;
	transition: all 0.4s ease;
}

body .forMob {
	display: none;
}

.forWeb {
	display: block;
}

.numForCTA {
	text-decoration: none;
	color: #64748B;
	font-size: 15px;
	display: flex;
	align-items: center;
}

.numForCTA span {
	color: #fff;
	font-size: 22px;
}

#bannerLP {
	background: url("../img/banner.jpg") top left no-repeat;
	background-size: cover;
	width: 100vw;
	height: inherit;
	position: relative;
	opacity: 0;
	animation: fadeIn 2s ease-out forwards;
	padding-bottom: 50px;
}

#bannerLP .container {
	align-items: center;
	padding-top: 25vh;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(1.05);
		/* Zoom léger au début */
		filter: blur(10px);
	}

	to {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}

#bannerLP h1 {
	font-size: 52px;
	color: #fff;
	position: relative;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	;
}

.tab-content {
	color: #000;
}

.descriptionClient p {
	font-size: 20px;
	color: #fff;
}

.fomulaireLP {
	max-width: 567px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 20px 20px 40px 20px;

	border-radius: 8px;
	position: relative;
	right: 0;
	-webkit-box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	min-height: 557px;

}

.fomulaireLP h2 {
	font-size: 20px;
	color: #000;
	text-align: center;
	margin: 10px auto;
	text-transform: none;
	border: none;
	background: transparent;
	font-weight: 600;

}

.partIMG {
	position: relative;
	flex: 1;
	background: url(../img/wall.png) top center no-repeat;
	width: 614px;
	height: 584px;
}

.oneRed {
	position: absolute;
	background: #FF0000;
	top: 15%;
	color: #fff;
	border-radius: 10px;
	padding: 20px 20px 20px 90px;
	right: 85px;
	font-size: 20px;
	text-align: left;
}

.forspan {
	display: block;
	font-size: 72px;
	font-weight: 700;
	line-height: 60px;
}

.partTexte {
	flex: 1;
}

.partIMG img {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

section h2 {
	font-size: 20px;
	color: #E7000B;
	font-weight: 400;
	display: flex;
	gap: 5px;
	align-items: center;
}

.oneDisponibilite {
	padding: 15px 30px;
	background: #E9EDE8;
	border-radius: 8px;
	border-left: solid 16px #E7000B;
	margin-bottom: 20px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	align-items: flex-start;
	font-size: 20px;
}

section#disponibilite h3 {
	font-size: 52px;
}

.oneDisponibilite h4 {
	margin-bottom: 0;
	color: #E7000B;
	font-weight: 600;
}

.blocAvantages {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.blocProcessus {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	position: relative;
}

.blocProcessus::before {
	position: absolute;
	content: "";
	height: 2px;
	width: 80%;
	top: 30%;
	background: rgba(231, 0, 11, 0.3);
	left: 0;
	right: 0;
	margin: 0 auto;
}

.oneAvantage {
	color: #4A5565;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	flex-direction: column;
	box-shadow: 1px 1px 4px 2px #87878733;

}

.oneAvantage img {
	margin-top: 3px;
}

.oneAvantage h4 {
	font-size: 18px;
	margin: 0 0 10px 0;
	font-weight: 600;
	color: #0A0A0A;
}

section h3 {
	font-size: 46px;
	margin-bottom: 30px;
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: #0A0A0A;
	font-family: "Inter", sans-serif;
}

section .zoneDescription h3 {
	font-size: 30px;
}

section .zoneDescription p {
	font-size: 16px;
	color: #000;
}

section .zoneDescription .listeEncarts ul {
	color: #000;
	margin-bottom: 40px;
}

section .zoneDescription,
section .zoneIMG {
	flex: 1;
}

section#aboutUS p {
	color: #364153;
	font-size: 17px;
}

.sousDecription {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}

.sousDecription ul {
	padding: 0;
}

.sousDecription li {
	list-style: none;
	margin: 7px 0;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	font-weight: 700;
}


.slider {
	position: relative;
	height: 0px;
	padding-bottom: 80%;
	margin-top: 24px;
	margin-bottom: 24px;
	max-width: 580px;
}

.slider__after {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url('../img/apres.jpg');
	pointer-events: none;
	background-position-y: center;

}

.slider__before {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 50%;
	height: 100%;
	background-image: url('../img/avant.jpg');
	pointer-events: none;
	overflow: hidden;
	background-position-y: center;
}



.slider__separator {
	position: absolute;
	left: 50%;
	width: 5px;
	top: 0px;
	bottom: 0px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.5);
	cursor: ew-resize;
	z-index: 3;
	transform: translateX(-50%);
}

.slider__range {
	position: absolute;
	width: 100%;
	bottom: 0px;
	z-index: 3;
	appearance: none;
	background: rgba(255, 255, 255, 0.3);
	outline: none;
	margin: 0px;
}

.slider__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px;
	height: 16px;
	background: white;
}

.slider__range::-moz-slider-thumb {
	-moz-appearance: none;
	width: 12px;
	height: 16px;
	background: white;
}

.slider__before:before {
	content: 'Avant';
	position: absolute;
	left: 8px;
	top: 8px;
	background: rgba(0, 0, 0, 0.7);
	padding: 2px 5px;
	border-radius: 5px;
	font-size: 14px;
	color: #fff;
}

.slider__after:before {
	content: 'Après';
	position: absolute;
	right: 8px;
	top: 8px;
	background: rgba(0, 0, 0, 0.7);
	padding: 2px 5px;
	border-radius: 5px;
	font-size: 14px;
	color: #fff;
}

section#expertise .container h3 {
	font-size: 24px;
}

.tab-pane .col-md-5 img {
	width: 100%;
}

.zoneIcones {
	display: flex;
	gap: 40px;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: solid 2px #000;
}

.oneI {
	display: flex;
	font-size: 16px;
	gap: 10px;
	align-items: flex-start;
}

.oneI font {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.oneI font strong {
	font-weight: 600;
	color: #fff;
	font-size: 17px;
}



.oneI img {
	margin-top: 3px;
}

a.btContactUS {
	background: #E7000B;
	color: #fff;
	font-weight: 400;
	border-radius: 10px;
	text-decoration: none;
	padding: 12px 20px;
	font-size: 18px;
	margin-top: 10px;
	display: block;
	text-align: center;
	max-width: max-content;
	margin: 30px 0;
	position: relative;
	border: solid 1px #E7000B;
}

/* Animation subtile uniquement au hover */
a.btContactUS:hover {
	background: #000;
	color: #fff;
	border: solid 1px #000;
}

a.btContactUS svg {
	fill: #fff;
}

a.btContactUS:hover svg {
	fill: white;
}

section#aboutUS {
	padding: 100px 0;
}

section#aboutUS .container {
	align-items: flex-end;
	gap: 30px;
}

.withBorder {
	padding: 0 5%;
	border-left: solid 2px #000;
}

.numberClients {
	background: rgba(135, 93, 87, 0.4);
	color: #fff;
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: max-content;
	-webkit-box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	border: solid 1px rgba(255, 255, 255, 0.4);
}

.plusInfos {
	display: flex;
	margin: 30px 0 80px 0;
	padding-top: 30px;
	border-top: solid 2px rgba(255, 255, 255, 0.3);
	gap: 30px;
	color: #D1D5DC;
}

#pourquoi {
	background: #F6F6F7 url(../img/img_residentiel.jpg) top center no-repeat;
	background-size: cover;
	color: #000;
	padding: 20vh 0;
	background-attachment: fixed;
}

section#emplois {
	padding: 0;
}

section#emplois .container {
	border-radius: 10px;
	padding: 0 40px;
	background: #E7000B;
	position: relative;
}

section#emplois .zoneAvantages {
	position: absolute;
	right: -80px;
	top: 20%;
	background: rgba(207, 216, 202, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(30px);
	padding: 30px 20px 20px 60px;
	border-radius: 8px;
	-webkit-box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	z-index: 0;
	border: solid 1px rgba(255, 255, 255, 0.2);
}

section#emplois h3 {
	color: #fff;
	margin-bottom: 20px;
	padding: 0;
}

section#emplois p {
	color: #fff;
}

#pourquoi .container {
	align-items: flex-end;
}

.espaceMAn {
	position: absolute;
	right: 150px;
	HEIGHT: 100%;
}

.forMan {
	position: absolute;
	background: url(../img/man.png) bottom center no-repeat;
	width: 100%;
	height: 500px;
	background-size: contain;
	BOTTOM: 0;
	z-index: 1;

}

.textEmplois {
	padding: 50px 0;
}

ul.listepourquoi {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.listepourquoi li {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	margin-top: 20px;
}

ul.listepourquoi li h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

ul.listepourquoi li p {
	margin: 0;
	font-weight: 300;
}


#galerie .container {
	flex-direction: column;
}

section#galerie h2 {
	justify-content: center;
}

section#galerie h3 {
	color: #0A0A0A;
	text-align: center;
	margin: 0;
}

section#galerie p.des {
	color: #4A5565;
	text-align: center;
	font-size: 18px;
}

section#FAQ h3 {
	color: #000;
}

#Proprietes {
	background: #000 url(../img/bg_proprietes.jpg) top center no-repeat;
	background-size: cover;
	padding: 100px 0;
}

#pourquoi p {
	color: #000;
}

#pourquoi li {
	list-style: none;
	margin: 10px 0;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
}



#Proprietes h3,
#Proprietes p {
	color: #fff;
}

#investissement {
	background: url(../img/bg_investir.jpg) top center no-repeat;
	padding: 100px 0 300px 0;
	text-align: center;
	background-size: cover;
}

#investissement a.btContactUS {
	max-width: inherit;
	text-transform: inherit;
}

#investissement h3 {
	color: #fff;
}

#investissement p {
	color: #fff;
	font-size: 16px;
}

.allItems {
	display: flex;
	align-items: center;
	gap: 20px;
}

.oneItem {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	background: #000;
	color: #fff;
	padding: 20px 25px;
	align-items: center;
	min-height: 126px;
}

.oneItem h4 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #fff;
}

.oneItem p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

section#avant_apres {
	background: url(../img/bg_lavage.jpg) top left no-repeat;
	background-size: cover;
	padding: 100px 0
}

section#avant_apres h2 {
	color: #fff;
}

section#avant_apres p {
	color: #fff;
	font-size: 18px;
}

.listeEncarts ul {
	list-style: none;
	color: #fff;
	margin: 0;
	padding: 0
}

.listeEncarts ul li {
	margin: 7px 0;
	font-size: 16px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

a.otherColor {
	background: #fff;
	color: #E7000B;
	border-radius: 4px;
	text-decoration: none;
	padding: 10px 20px;
	margin-top: 10px;
	display: block;
	text-align: center;
	max-width: max-content;
	margin: 20px 0;
	position: relative;
	border: solid 1px #fff;
}

/* Animation subtile uniquement au hover */
a.otherColor:hover {
	background: #000;
	color: #fff;
	border: solid 1px #000;
}

a.otherColor svg {
	fill: #E7000B;
}

a.otherColor:hover svg {
	fill: #fff;
}

section#avant_apres .container {
	align-items: center;
}

section#avant_apres .oneItem p {
	font-size: 16px;
}

section#avant_apres .oneItem h4 {
	font-size: 16px;
}

section#avant_apres a.btContactUS {
	margin-top: 50px;
}

section#nettoyage_entrepot {
	padding: 100px 0;
	background: #DFE4DC;
}

section#nettoyage_usine {
	padding: 0 0 100px 0;
	background: #DFE4DC;
}

section#avant_apres h3 {
	color: #fff;
	font-size: 52px;
}

.left-panel {
	width: 50%;
	padding: 30px;
	box-sizing: border-box;
}

.right-panel {
	width: 50%;
	padding: 30px 40px;
	box-sizing: border-box;
}

.service-item {
	padding: 10px 20px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	margin-bottom: 10px;
	border: solid 2px #000;
}

.qualification {
	background: #fff;
}

.qualification p {
	margin: 0;
}

.service-item:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	color: #fff;
	background-color: #000;
	border: solid 2px #fff;
}

.service-item:hover h3,
.service-item:hover p {
	color: #fff;
}

.service-item.active {
	background-color: #000;
	color: #fff;
	border: solid 2px #fff;
}

.service-item.active p {
	color: #fff;
	margin: 0;
}

.svg-icon {
	transition: fill 0.3s ease;
}

.service-item.active .svg-icon,
.service-item:hover .svg-icon {
	fill: #fff;
}

.iconSVG {
	border-radius: 50%;
	padding: 10px;
	background: rgba(89, 89, 89, 0.09);
	width: 76px;
	height: 76px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-item.active .iconSVG {
	background: #000
}

.service-item h3 {
	display: flex;
	align-items: center;
	gap: 15px;
}

section .service-item h3::after {
	display: none
}

.service-item.active h3 {
	color: #fff;
}

.service-content {
	display: none;
}

.service-content.active {
	display: block;
	animation: fadeIn 0.5s;
}


@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.highlight {
	font-style: italic;
	color: #3498db;
	margin: 20px 0;
}

.oneCard {
	width: 100%;
}

section#services {
	background: #FFF;
	padding: 100px 0;
}

section#services .container {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

section#services .container.container2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card {
	position: relative;
	text-align: left;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Image de fond */
.card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform 0.4s ease;
}

.service-card:hover .card-img {
	transform: scale(1.05);
}

/* Overlay sombre qui s'intensifie au hover */
.service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.85) 0%,
			rgba(0, 0, 0, 0.3) 50%,
			rgba(0, 0, 0, 0.1) 100%);
	transition: background 0.4s ease;
}

.service-card:hover::after {
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.92) 0%,
			rgba(0, 0, 0, 0.6) 50%,
			rgba(0, 0, 0, 0.3) 100%);
}

/* Contenu */
.card-content {
	position: relative;
	z-index: 1;
	padding: 20px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
}


/* Titre */
.card-title {
	color: #fff;
	font-size: 23px;
	font-weight: 600;
	margin: 0;
}

/* Description — cachée par défaut, visible au hover */
.card-desc {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.88rem;
	line-height: 1.55;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.4s ease;
}

.service-card:hover .card-desc {
	max-height: 200px;
	opacity: 1;
}

/* Tags */
.card-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tag {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 14px;
	padding: 5px 12px;
	border-radius: 20px;
	backdrop-filter: blur(8px);
}


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

footer h2 {
	font-size: 46px;
	font-weight: 700;
	color: #0A0A0A;
}

footer p {
	color: #99A1AF;
	font-size: 16px;
	margin: 20px 0;
}

.forRBQ {
	color: #99A1AF;
}

.forRBQ strong {
	color: #fff;
}

.oneDetails a,
.oneDetails {
	display: flex;
	gap: 10px;
	align-items: flex-start;
    text-align: left;
}

.oneDetails a {
	color: #4A5565;
	font-size: 15px;
}

.oneDetails a strong {
	color: #000;
	font-size: 16px;
}

.oneDetails i {
	font-size: 13px;
}

.oneDetails {
	margin: 15px 0;
}

.oneDetails font {
	display: flex;
	flex-direction: column;
}

.blocHabitation {
	background: #F9FAFB;
	padding: 20px;
	border-radius: 14px;
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	color: #4A5565;
}

.bottomFooter {
	background: #000;
	padding: 80px 0 0 0;
}

.partieHaut {
	display: flex;
	width: 100%;
	align-items: center;
}

footer .numForCTA {
	max-width: max-content;
	color: #fff;
	margin-left: 0;
	margin-top: 20px;
}

footer .numForCTA:hover {
	background: #b11720;
}

footer h3 {
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	margin-bottom: 10px;
}

footer ul {
	padding: 0;
	margin: 0;
}

footer ul li {
	list-style: none;
	margin: 8px 0;
}

footer ul li,
footer ul li a {
	color: #99A1AF;
	font-size: 16px;
}

footer ul li a:hover {
	color: #fff;
}

section#expertise {
	padding: 100px 0;
	background: url(../img/wall.jpg) top center no-repeat;
	background-size: cover;
}

section#aide_financiere .container {
	flex-direction: column;
	background: url(../img/bg_aide.jpg) top center no-repeat;
	background-size: cover;
	padding: 40px;
	color: #000;
	border-radius: 8px;
}

section#aide_financiere .container p {
	font-size: 20px;
}

section#aide_financiere {
	background: #FFF;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(135, 93, 87, 1) 50%);
	padding: 0;
}

section#aide_financiere h3 {
	color: #000;
	margin: 0;
}

section#aide_financiere h2 {
	background: rgba(255, 255, 255, 0.2);
	color: #000;
	border: solid 1px rgba(255, 255, 255, 0.2);
}

.blocExpertise {
	justify-items: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	margin-top: 30px;
}

.oneExpertise {
	background: rgba(255, 255, 255, 0.7);
	padding: 60px 40px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.forCount {
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

span#counter {
	font-weight: 800;
	font-size: 64px;

}

.numberClients h5 {
	font-weight: 300;
}

.oneBlack {
	background: #000;
	color: #fff;
}

section#expertise .container {
	flex-direction: column;
	align-items: center;
}

section#expertise .container h3 {
	font-size: 28px;
	font-weight: 800;
}

section#expertise .container h3::after {
	display: none;
}

section .service-item h3 {
	font-size: 24px;
	text-transform: none;
	margin-bottom: 10px;
	padding: 0;
	font-weight: 600;
	color: #000;
}

section .service-item p {
	font-size: 16px;
	color: #000;
	margin: 0;
}


.zoneControls {
	border-bottom: solid 2px #000;
	display: flex;
	justify-content: flex-end;
	position: relative;
	height: 50px;
	margin-top: 10px;
}

button.carousel-control-prev,
button.carousel-control-next {
	background: #000;
	width: 32px;
	height: 32px;
	font-size: 4px;
	padding: 5px;
	opacity: 1;
}

.carousel-control-prev {
	right: 35px;
	left: inherit;
}

.service-content {
	max-width: 520px;
	color: #fff;
}

#blocServices {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

#blocServices .row {
	text-align: left;
	align-items: center;
}

#blocServices ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: solid 2px rgba(223, 224, 222, 1);
}

#blocServices .tab-content ul {
	border: none;
}

#blocServices .tab-content ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #000;
}

#blocServices .tab-content ul li img {
	margin-top: 3px;
}

.footerTabs {
	background: rgba(126, 150, 115, 0.2);
	border-top: solid 2px #E7000B;
	display: flex;
	align-items: center;
	padding: 5px 20px;
	justify-content: space-between;
	border-radius: 0 0 5px 5px;
	font-size: 20px;
	color: #000;
}

.tab-content {
	background: #F7F8F6;
}

.nav-tabs .nav-link {
	font-size: 20px;
	font-weight: 600;
}

.nav-fill .nav-item .nav-link {
	padding: 25px 10px;
	background: #F7F8F6;
	color: #000;
	border: none !important;
	font-size: 18px;
}

.nav-tabs .nav-link.active {
	background: #DFE4DC;
}

.service-content p {
	font-size: 16px;
	margin-top: 20px;
	font-weight: 300;
	text-align: justify;
}

.service-content p strong {
	font-weight: 600;
}

.accordion-item {
	border: none;
	background: #F5ECEA;
	margin-bottom: 15px;
	padding: 10px;
	border-radius: 8px !important;
}

.accordion-button {
	background: #F5ECEA !important;
	border: none !important;
	color: #000 !important;
	font-weight: 600;
	font-size: 16px !important;
}

section#FAQ h2.accordion-header {
	background: transparent;
}

.accordion-body {
	font-size: 15px;
	color: #000;
	padding-top: 0;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}




.blocEncarts {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	border-top: solid 1px rgba(0, 0, 0, 0.2);
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);
	padding: 20px;
}


.oneE {
	color: #fff;
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: flex-end;
	gap: 20px;
	justify-content: center;
}


section#aboutUS .oneE h4 {
	font-size: 16px;
	font-weight: 500;
	color: #2E3729;
}

section#avantages {
	padding: 100px 0;
	background: #FFE2E2;
}

section#avantages .container,
section#processus .container {
	flex-direction: column;
}

section#processus {
	background: url(../img/bg_section_processus.png) top center no-repeat;
	padding: 100px 0;
	background-size: cover;
}

section#processus h2 {
	justify-content: center;
}

section#processus h3 {
	color: #fff;
}

.card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 15px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	border-bottom: none;
}



.card-number {
	font-size: 44px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1;
	letter-spacing: -2px;
}

.card-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}

.card-description {
	font-size: 15px;
	color: #99A1AF;
	line-height: 1.65;
	margin-bottom: 2rem;
}

.zoneAvantages {
	position: absolute;
	right: 0;
	top: 30%;

	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(30px);
	padding: 30px 20px 20px 60px;
	border-radius: 8px;
	-webkit-box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 4px 17px -1px rgba(0, 0, 0, 0.2);
	z-index: 0;
	border: solid 1px rgba(255, 255, 255, 0.2);
}

.zoneAvantages li {
	list-style: none;
	color: #fff;
	font-size: 21px;
	margin-bottom: 10px;
}

footer {
	background: #fff;
	padding: 100px 0 0 0;
	position: relative;
	z-index: 1;
}

body.merci footer {
	background: none;
	position: fixed;
	bottom: 0;
	width: 100%;
}


footer h4 {
	margin: 50px 0 20px 0;
	position: relative;
	font-size: 36px;
	padding-bottom: 20px;

	color: #000;
}

.partenariat {
	display: flex;
	margin-top: 50px;
	align-items: center;
	gap: 20px;
	font-size: 14px;
}


.partenariat img {
	border-right: solid 1px #eee;
	padding-right: 30px;
}

.zoneForm {
	padding: 20px;
	text-align: center;
	background: #F7F7FC;
	border-radius: 8px;
	max-width: 600px;
	margin-bottom: 80px;
}



.zoneCoordonnes {
	position: relative;
}

.zoneForm h2 {
	font-size: 20px;
	color: #000;
	text-align: center;
	margin: 20px 0;
	font-weight: 600;
}

.copyright {
	background: #000;
	padding: 20px 0;
	font-size: 16px;
	color: #8C8C8C;

}

body.merci .copyright .container {
	border-top: none;
	padding: 0;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
}

.copyright .container {
	border-top: solid 1px #1E2939;
	padding: 30px 0 20px 0;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
}

.numForCTA {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	background: #E7000B;
	padding: 8px 20px;
	border-radius: 4px;
	font-weight: 600;
	margin-left: 20px;
}

.scroll-indicator {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 30px;
}

.mouse {
	width: 28px;
	height: 45px;
	border: 2px solid white;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.wheel {
	width: 4px;
	height: 8px;
	background-color: white;
	border-radius: 2px;
	animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	100% {
		transform: translateY(10px);
		opacity: 0;
	}
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav {
		align-items: center;
	}
}

.phone-icon {
	transition: transform 0.2s ease-in-out;
}

.numForCTA:hover {
	background: #000;
}

.numForCTA:hover .phone-icon {
	animation: vibrate 0.3s infinite alternate;
}

@keyframes vibrate {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-5deg);
	}

	50% {
		transform: rotate(5deg);
	}

	75% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(5deg);
	}
}

.feature-wrapper {
	margin: 0 auto;
	background: #E7000B;
	background: linear-gradient(90deg, rgba(220, 77, 88, 1) 50%, rgba(255, 255, 255, 0) 50%);
	margin-bottom: -80px;
	position: relative;
}

.features-section {
	background-color: #E7000B;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 80px 60px 0px;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	color: #fff;
	width: 100%;
}

.feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
}










.subtitle {
	font-size: 0.95rem;
	color: #888;
	font-weight: 300;
	margin-bottom: 48px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* ── GRID ── */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

/* ── CARD ── */
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
	aspect-ratio: 4/3;
	background: #ddd;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── OVERLAY ── */
.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.82) 0%,
			rgba(0, 0, 0, 0.35) 55%,
			rgba(0, 0, 0, 0) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 22px;
}

.gallery-item:hover .overlay {
	opacity: 1;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

/* ── TAG ── */
.gallery-tag {
	display: inline-block;
	background: #E7000B;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 10px;
	width: fit-content;
	transform: translateY(12px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s,
		opacity 0.3s ease 0.05s;
}

.gallery-item-title {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	transform: translateY(16px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
		opacity 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-tag,
.gallery-item:hover .gallery-item-title {
	transform: translateY(0);
	opacity: 1;
}

/* ── ZOOM ICON ── */
.zoom-icon {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(6px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.3s ease 0.15s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.zoom-icon svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.gallery-item:hover .zoom-icon {
	opacity: 1;
	transform: scale(1);
}

/* ── LIGHTBOX ── */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
	padding: 24px;
}

.lightbox.active {
	opacity: 1;
	pointer-events: all;
}

.lightbox-inner {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	gap: 20px;
}

.lightbox img {
	max-width: 80vw;
	max-height: 85vh;
	border-radius: 10px;
	object-fit: contain;
	display: block;
	transform: scale(0.92);
	transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lightbox.active img {
	transform: scale(1);
}

.lb-info {
	position: absolute;
	bottom: -52px;
	left: 0;
	display: flex;
	align-items: center;
	gap: 14px;
}

.lb-tag {
	background: #E7000B;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 15px;
	border-radius: 100px;
}

.lb-title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
}

/* Nav buttons */
.lb-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	flex-shrink: 0;
}

.lb-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.lb-close {
	position: absolute;
	top: -52px;
	right: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.lb-close:hover {
	background: var(--accent);
	border-color: var(--accent);
}

/* counter */
.lb-counter {
	position: absolute;
	top: -52px;
	left: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

#galerie {
	padding: 100px 0;
	background: #F9FAFB;
}

#temoignages {
	padding: 100px 0;
	text-align: center;
}

#temoignages .container {
	flex-direction: column;
	text-align: center;
	display: flex;
	align-items: center;

}

#temoignages h2 {
	justify-content: center;
}

#blocElfsight {
	margin: 20px 0 30px 0;
}

#certifications {
	padding: 100px 0;
	background: url(../img/bg_section-certifications.png) top center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
}

#listeCertifications {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

#certifications .container {
	flex-direction: column;
}

#certifications h2 {
	justify-content: center;
}

#certifications h3 {
	color: #fff;
	text-align: center;
	margin: 0;
}

#certifications p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	margin-bottom: 30px;
}

.oneCertification {
	border-radius: 10px;
	padding: 40px 20px;
	background: #fff;
	text-align: center;
}

.oneCertification h4 {
	font-weight: 700;
	font-size: 24px;
	color: #0A0A0A;
	margin: 20px 0 10px 0;
}

#certifications .oneCertification p {
	margin: 0;
	font-size: 14px;
	color: #4A5565;
}

#blocRBQ {
	background: #E7000B;
	border-radius: 14px;
	padding: 30px;
	text-align: center;
	color: #fff;
	margin-top: 30px;
}

#blocRBQ h4 {
	font-weight: 700;
}

#blocRBQ p {
	margin: 0;
	color: #FFE2E2;
	font-size: 16px;
	font-weight: 300;
}

li.language-selector {
	margin-left: 10px;
}

.lang-btn-single {
	padding: 12px 20px;
	background: rgb(231 0 11);
	backdrop-filter: blur(10px);
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	height: 49px;
	border: none;
}

.lang-btn-single:hover {
	background: #000;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lang-btn-single:active {
	transform: translateY(0);
}


@media only screen and (min-width:786px) {

	.fomulaireLP iframe,
	.zoneForm iframe {
		height: 440px !important;
	}

}

@media only screen and (max-width:1140px) {
	.numForCTA {
		margin: 0;
	}

	.header.header-6 .navbar-nav .nav-item a {
		padding: 7px
	}

	.plusInfos {
		flex-direction: column;
		margin: 30px 0 0 0;
	}

	.oneRed {
		right: 30px;
	}
}

@media only screen and (max-width:1308px) {
	.forWoman {
		margin-left: -80px;
	}

	section#emplois .zoneAvantages {
		position: absolute;
		right: -130px;
	}

	.forMan {
		background-size: 40%;
	}

	.espaceMAn {
		right: 180px;
	}
}

@media only screen and (max-width: 1195px) {
	section h3 br {
		display: none;
	}

	.forWoman {
		background-size: 53%;
	}

	.zoneAvantages {
		top: 50%;
	}

	.zoneAvantages li img {
		max-width: 24px;
	}
}

@media only screen and (max-width: 1023px) {
	body .forMob {
		display: flex;
		background: #E7000B;
		padding: 2%;
		text-align: center;
		border-radius: 2px;
		box-shadow: none;
		border: none;
		justify-content: center;
		gap: 10px
	}

	body img.forMob {
		background: transparent;
		padding: 0;
		margin: 20px 0 40px 0;
	}

	.forWeb {
		display: none;
	}

	section#avantages .container {
		flex-direction: column;
	}

	section#avantages .col-12 {
		width: 100%;
	}

	.forWoman {
		position: relative;
		background: url(../img/woman.png) bottom center no-repeat;
		height: 500px;
		background-size: contain !important;
		margin-left: 0;
		width: 100%;
	}

	.zoneAvantages {
		margin: 0 auto;
		margin-bottom: 20px;
		position: relative;
		padding: 20px 40px 20px 20px;
		max-width: max-content;
	}
}

@media only screen and (max-width: 1100px) {
	.oneItem {
		width: 100%;
		gap: 10px;
		padding: 10px;
	}

	.oneItem h4 {
		font-size: 16px;
	}

	.oneItem img {
		max-width: 50px;
	}

	.allItems {
		gap: 10px;
	}
}

@media only screen and (max-width:1540px) {
	section h3 {
		font-size: 40px;
	}

	#bannerLP h1 br {
		display: none;
	}
}

@media only screen and (max-width:1080px) {
	.features-section {
		background-color: #E7000B;
		display: grid;
		justify-content: space-between;
		align-items: flex-start;
		padding: 60px 80px 60px 0px;
		border-top-right-radius: 100px;
		border-bottom-right-radius: 100px;
		color: #fff;
		width: 100%;
		flex-direction: column;
		gap: 30px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-height:786px) {

	.descriptionClient p br {
		display: none;
	}
}


@media only screen and (max-width:991px) {
	#bannerLP a.btContactUS {
		margin: 20px auto;
		display: flex;
		text-align: left;
	}

	.scroll-indicator {
		display: none;
	}

	.oneRed {
		top: 30px;
	}

	.partIMG {
		flex: inherit;
	}

	.partieHaut {
		flex-direction: column;
		gap: 30px;
	}

	#blocServices {
		grid-template-columns: repeat(1, 1fr);
	}

	.blocProcessus {
		grid-template-columns: 1fr;
	}

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.oneRed {
		padding: 20px;
	}

	.gallery {
		grid-template-columns: repeat(1, 1fr);
	}

	.blocAvantages {
		grid-template-columns: 1fr;
	}

	.navbar img {
		max-width: 200px;
	}

	.nav-fill .nav-item .nav-link {
		text-align: left;
	}

	.zoneAvantages {
		max-width: inherit;
	}

	.footerTabs {
		flex-direction: column;
		padding: 20px;
	}

	#bannerLP .container {
		align-items: center;
		padding-top: 0;
	}

	.col-12 {
		width: 100%;
	}

	.features-section {
		grid-template-columns: repeat(1, 1fr);
	}

	.features-section img {
		max-width: 50px;
	}

	.feature {
		font-size: 18px;
	}

	.feature br {
		display: none;
	}

	section#nettoyage_entrepot {
		padding: 40px 0;
	}

	.listeEncarts ul li {
		align-items: flex-start;
	}

	.listeEncarts ul li img {
		margin-top: 3px;
	}

	#disponibilite .container,
	#emplois .container {
		flex-direction: column;
	}

	.forMan {
		display: none;
	}

	.textEmplois {
		padding-bottom: 20px;
	}

	.espaceMAn {
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	section#emplois .zoneAvantages {
		position: relative;
		right: 0;
		left: 0;
		margin: 0 auto 20px;
		padding: 10px;
		text-align: left;
	}

	section#emplois .container {
		border-radius: 10px;
		padding: 0 20px;
	}

	#disponibilite {
		padding: 40px 0;
	}

	#disponibilite p {
		font-size: 16px;
	}

	.zoneAvantages li {
		list-style: none;
		color: #fff;
		font-size: 16px;
	}

	.zoneAvantages ul {
		margin: 0;
		padding: 0;
	}

	.espaceMAn {
		position: relative;
	}

	.oneE {
		justify-content: flex-start;
		align-items: center;
	}

	.desE h4 {
		margin: 0;
	}

	.desE br {
		display: none;
	}

	.numberClients {
		background: rgba(135, 93, 87, 0.6);
		padding: 15px !important;
	}

	span#counter {
		font-size: 52px;
	}

	.blocEncarts {
		flex-direction: column;
	}

	section#pourquoi {
		padding-bottom: 0 !important;
		background: #fff;
	}

	section#services,
	section#aboutUS,
	section#gallery,
	section#FAQ,
	section#avant_apres,
	section#avantages,
	section#processus,
	#certifications {
		padding: 40px 0;
	}

	footer h2 {
		font-size: 32px;
	}

	.bottomFooter {
		padding-top: 40px;
	}

	#gallery .partLeft,
	#gallery .carousel {
		width: 100%;
	}

	section#expertise .container h3,
	section#expertise .container h2 {
		text-align: center;
	}

	.blocExpertise {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.service-content img {
		width: 100%;
		max-width: inherit !important;
	}

	.service-content {
		max-width: inherit;
	}

	.slider {
		margin: 0 auto;
	}

	.descriptionClient,
	.fomulaireLP {
		width: 100%;
	}

	.fomulaireLP {
		max-width: inherit;
	}

	#bannerLP,
	#temoignages {
		position: relative;
	}


	.partIMG {
		text-align: right;
	}

	.partIMG img {
		width: 100%;
		max-width: inherit;
	}

	#pourquoi .col-12,
	#aboutUS .col-12,
	#FAQ .col-12,
	#nettoyage_entrepot .col-12,
	#nettoyage_usine .col-12 {
		width: 100%;
	}

	.imgFAQ img,
	.zoneIMG img {
		width: 100%;
		max-width: inherit;
	}

	#pourquoi .container {
		flex-direction: column;
	}

	#temoignages {
		padding: 100px 0
	}

	.zoneCoordonnes {
		position: relative;
		text-align: center;
	}

	footer h4:after {

		left: 0;
		right: 0;
		margin: 0 auto;
	}

	footer .numForCTA {
		justify-content: center;
		margin: 20px auto;
	}

	.zoneCoordonnes img {
		max-width: 250px;
	}

	footer .gap-5 {
		gap: 20px !important;
	}

	footer h4 {
		margin: 30px 0 20px 0;
		position: relative;
		font-size: 24px;
	}

	#bannerLP .container,
	#temoignages .container {
		position: relative;
		z-index: 1;
	}

	.service-item {
		padding: 10px 20px;
		margin-bottom: 10px;
		cursor: pointer;
		transition: all 0.3s ease;
		color: #C0C0C0;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		margin-bottom: 30px;
	}

	.left-panel,
	.right-panel {
		padding: 10px;
	}

	#pourquoi a.btContactUS,
	#avant_apres a.btContactUS,
	#Proprietes a.btContactUS,
	#pourquoi a.btContactUS,
	#services a.btContactUS,
	#types a.btContactUS {
		margin-top: 20px;
	}

	section .service-item h3 {
		font-size: 20px;
	}

	section .service-item p {
		font-size: 16px;
	}

	.logo {
		text-align: center;
		padding: 10px 0;
	}

	.logo img {
		max-width: 220px;
	}

	.descriptionClient {
		background: transparent;
		padding: 0;
	}

	body.merci {
		padding: 15vh 0
	}

	body.merci h1 {
		font-size: 42px;
	}

	body.merci p {
		font-size: 20px;
		padding: 0 10px;
	}


	.fotR {
		min-width: inherit;
	}

	body.merci p br {
		display: none;
	}

	body.merci #contact:after,
	body.merci #contact:before {
		display: none;
	}


	section#services .container,
	section#bannerLP .container,
	section#aboutUS .container,
	section#avant_apres .container,
	section#gallery .container,
	footer#contact .container,
	#FAQ .container,
	#nettoyage_entrepot .container,
	#nettoyage_usine .container {
		flex-direction: column;
	}

	.imgFAQ {
		order: 2;
	}

	section#aide_financiere .container {
		width: 96%;
		padding: 20px;
	}

	section#avant_apres {
		background: url(../img/bg_lavage.jpg) top right no-repeat;
		background-size: cover;
	}

	section#aide_financiere .container p {
		font-size: 16px;
	}

	section#aide_financiere .container p br {
		display: none;
	}

	.left-panel,
	.right-panel,
	.col-6,
	.col-7,
	.col-4,
	.col-8,
	.col-5 {
		width: 100%;
	}

	img {
		max-width: 100%;
	}

	.fomulaireLP {
		bottom: inherit;
		right: inherit;
		min-height: inherit;
		position: relative;
		box-shadow: none;
		border: none;
		margin-bottom: 30px;
		margin-top: 20px;
	}

	#bannerLP h1 {
		font-size: 26px;
		margin: 20px 0 !important;
		line-height: 36px;
		font-family: "Inter", sans-serif;
		text-align: center;
	}

	.descriptionClient p {
		font-size: 18px;
		text-align: center;
	}

	.descriptionClient p strong {
		font-weight: normal;
	}

	#bannerLP {
		height: inherit;
		text-align: center;
	}

	.partTexte p {
		margin-left: 0;
	}

	.sousDecription {
		margin-left: 0;
		display: flex;
		justify-content: space-between;
		margin-top: 30px;
		flex-direction: column;
	}

	.withBorder {
		padding: 5% 0 0 0;
		border-left: none;
		margin: 0 auto;
	}

	#blocElfsight {
		min-width: inherit;
	}

	.zoneForm {
		padding: 0;
		text-align: center;
		max-height: inherit;
		margin-bottom: 30px;
		max-width: inherit;
		order: 2;
	}

	.zoneCoordonnes:after {
		display: none;
	}

	section#nettoyage_usine .zoneIMG {
		order: 2;
	}

	h3.mb-5 {
		margin-bottom: 1rem !important;
	}

	#listeCertifications {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}

	.zoneIcones {
		display: flex;
		gap: 20px;
		align-items: flex-start;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: solid 2px #000;
		flex-direction: column;
	}

	.zoneIcones br {
		display: none;
	}

	#blocServices {
		grid-template-columns: repeat(1, 1fr);
	}

	body .forMob .num {
		color: #fff;
		font-size: 24px;
		font-weight: 600;
	}

	#bannerLP .container {
		align-items: center;
	}


	header .container {
		justify-content: center;
	}

	.partIMG,
	.imgCommercial {
		order: 2;
	}

	.partTexte,
	.contentCommercial {
		order: 1;
	}

	section#galerie,
	section#pourquoi,
	section#pourquoi {
		padding: 40px 0;
	}

	section h3 {
		font-size: 28px !important;
	}


	.numForCTA span {
		margin-left: 0;
	}

	section#temoignages h3 {
		width: inherit;
		margin-bottom: 20px;
		color: #fff;
	}

	section#pourquoi h2 {
		margin-top: 30px;
	}

	#investissement {
		padding: 40px 0;
	}

	#Proprietes {
		background: #000 url(../img/bg_proprietes.jpg) top right no-repeat;
		background-size: cover;
		padding: 40px 0;
		position: relative;
	}

	section#pourquoi h2.accordion-header {
		margin-top: 0;
	}

	footer {
		padding-top: 40px;
	}


	#temoignages {
		padding: 40px 0;
		position: relative;
		z-index: 2;
		margin: 0;
	}

	section#emplois {
		padding: 40px 10px;
		text-align: center;
	}

	.fourCards {
		display: flex;
		align-items: stretch;
		justify-content: center;
		gap: 30px;
		text-align: center;
		padding: 20px;
		flex-direction: column;
	}

	#types .container {
		flex-direction: column;
	}

	section#types {
		padding: 40px 0;
	}

	a.btContactUS {
		font-size: 16px;
	}

	.fomulaireLP h2 {
		font-size: 20px;
		margin: 10px auto;
	}

	#contact:before,
	#contact:after {
		display: none;
	}

	#Proprietes .container {
		background: rgba(0, 0, 0, 0.6);
		padding: 20px;
		width: 90%;
	}

	.tab-content.p-5 {
		padding: 1rem !important;
	}

	section .zoneDescription h3 {
		margin-bottom: 10px;
		padding: 0;
	}

}

@media only screen and (max-width:600px) {

	.allItems {
		display: flex;
		text-align: center;
		gap: 10px;
		flex-direction: column;
	}

	.oneItem {
		width: 100%;
		gap: 10px;
		padding: 10px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.oneItem br {
		display: none;
	}

	.zoneForm iframe {
		height: 600px !important;
	}
}

#sticky {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 10px;
	background: #875D57;
	color: #fff;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	box-shadow: 2px 2px 6px #3434343b;

}

#sticky p {
	margin: 0;
}

@media only screen and (max-width:786px) {
	#sticky {
		font-weight: 500;
		font-size: 15px;
		line-height: 20px;
	}

	#sticky p br,
	#sticky img {
		display: none;
	}

}

@media (max-width: 991px) {
	section {
		min-height: auto;
		/* laisse la hauteur s'adapter au contenu */
		padding-top: 100px;
		/* plus de marge pour la navbar burger */
		padding-bottom: 60px;
		/* espace de respiration en bas */
	}
}