@charset "UTF-8";

/* Variables CSS */
:root {
	--bs-blue: #0d6efd;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-primary: #0d6efd;
	--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Reset de base */
*,
::after,
::before {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	overflow-x: hidden;
	max-width: 100vw;
}

/* Typographie */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	font-family: Montserrat;
	color: #144443;
}

h1 {
	font-size: calc(1.375rem + 1.5vw);
}

h2 {
	font-size: calc(1.325rem + 0.9vw);
}

h3 {
	font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.75rem;
	}
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 13px;
	font-weight: 400;
	color: #144443;
	line-height: 28px;
	font-family: Poppins;
}

/* Liens */
a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

/* Layout - Grid System */
.container {
	width: 100%;
	padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
	padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
		padding: 3%;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -0.5);
	margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

/* Classes de colonnes */
.col-md-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-lg-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-xl-5 {
	flex: 0 0 auto;
	width: 41.66666667%;
}

.col-xl-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-sm-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-sm-12 {
	flex: 0 0 auto;
	width: 100%;
}

@media (max-width: 991.98px) {

	.col-md-6,
	.col-lg-6 {
		width: 100%;
	}
}

/* Formulaires */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
	height: 38px;
	border-radius: 13px;
	color: #144443;
	width: 100%;
	border: 1px solid #dedede;
	padding: 0.375rem 0.75rem;
	font-size: 14px;
	line-height: 1.5;
	background-color: #fff;
}

input[type="date"] {
	padding-left: 37px;
	padding-right: 36px;
}

input::placeholder,
textarea::placeholder {
	color: #999;
	font-size: 11px;
}

textarea {
	height: 100px;
	resize: vertical;
	padding-top: 10px;
}

select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2144443/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	padding-right: 2.25rem;
}

/* Boutons */
.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	border-radius: 0.25rem;
	transition: all 0.15s ease-in-out;
}

button.mt-20 {
	background: #144443 !important;
	padding: 15px !important;
	color: #fff !important;
	margin: auto !important;
	width: 50% !important;
	display: block !important;
	margin-top: 3% !important;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-family: poppins
}

/* Header - Navigation */
.mn1-header {
	background: #fff;
	padding: 10px 20px;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 11444430;
	box-shadow: 5px 1px 4px rgba(51, 51, 51, 0.55);
}

.mn1-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.mn1-logo a img {
	max-width: 240px;
	height: auto;
}

.mn1-checkbox {
	display: none;
}

.mn1-nav {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: #fff;
	display: none;
	flex-direction: column;
	padding: 10px 0;
}

.mn1-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.mn1-list li {
	padding: 15px 0;
	position: relative;
}

.mn1-list li a {
	text-decoration: none;
	color: #144443;
	display: block;
	font-family: Poppins, sans-serif;
	font-size: 13px;
	padding-left: 10px;
}

.mn1-submenu {
	margin-top: 10%;
}

.mn1-submenu li {
	padding: 5px 10px;
}

/* Section Choose */
.choose-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 50px;
  gap: 40px;
  width: 80%;
  margin: auto;
  margin-top: 2%;
  font-family: Poppins;
  margin-bottom:4%
}

.text-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: Poppins;
	width: 60%;
}

.image-col {
	position: relative;
	flex: 1;
	margin-top: 3%;
}

.image-col img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	aspect-ratio: 4 / 4;
	width: 100%;
	height: auto;
}

.section-label {
	color: #144443;
	font-weight: 400;
	text-transform: none;
	font-size: 13px;
	margin-bottom: 2%;
	margin-top: 5%;
}

.text-col h1 {
	font-size: 34px;
	margin: 10px 0;
	line-height: 1.3;
	font-family: 'Poppins';
	margin-bottom: 5%;
	color: #144443;
	font-weight: 700;
	    width: 95%;
}

@media (max-width: 1399px) {
	.text-col {
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-family: Poppins;
		width: 100%;
	}
}

.subtitle {
	margin-bottom: 30px;
	color: #144443;
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
	padding-left: 0;
}

.feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	font-size: 13px;
	color: #144443;
}

.check {
	color: #144443;
	font-size: 18px;
}

.cta-container1 a {
	font-size: 13px;
	font-family: 'Poppins';
	color: #fff;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
	font-weight: 500;
}

.cta-container {
	margin-top: 30px;
	border: 1px solid #144443;
	padding: 6px;
	border-radius: 10px;
	max-width: 260px;
	text-align: center;
	background: #144443;
	color: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 100%;
	margin: auto;
}

.cta-container a {
	font-size: 13px;
	font-family: 'Poppins';
	color: #fff;
	text-decoration: none;
	display: block;
	font-weight: 700;
	padding: 7px 20px;
}

/* Jobboard Carousel */
.jobboard {
	position: relative;
	width: 65%;
	margin: auto;
	display: flex;
	align-items: center;
	margin-bottom: 5%;

}

.banniere_jobboard {
	overflow: hidden;
	flex: 1;
}

.job-track {
	display: flex;
	transition: transform 0.4s ease-in-out;
}

.job-item {
	min-width: calc(100% / 6);
	text-align: center;
}

.job-item img {
	width: 50%;
	margin: auto;
	display: block;
}

.slide-btn {
	background: #fff;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	z-index: 2;
	padding: 5px 10px;
	color: #144443;
}

.slide-btn.left0 {
	margin-right: 10px;
}

.slide-btn.right {
	margin-left: 10px;
}

@media (max-width: 1024px) {
	.job-item {
		min-width: calc(100% / 4);
	}
}

@media (max-width: 768px) {
	.job-item {
		min-width: calc(100% / 3);
	}
}

@media (max-width: 480px) {
	.job-item {
		min-width: calc(100% / 2);
	}
}

/* Section Green - Accordion */
.green {
	background: #14444305;
	margin-top: 2%
}

.container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 50px 10%;
	max-width: 80% !important;
}

.left {
	flex: 1;
	max-width: 50%;
}

.left h2 {
	font-family: Forum;
	margin-bottom: 5%;
	color: #144443;
}

.text {
	font-size: 13px;
	line-height: 23px;
	margin-bottom: 30px;
	color: #144443;
	font-family: Poppins;
}

.accordion {
	flex: 1;
	max-width: 40%;
}

.accordion-item {
	border-bottom: 1px solid #3e6658;
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 15px 0;
	font-weight: 500;
	font-size: 15px;
	color: #144443;
	font-family: Poppins;
}

.accordion-header span {
	font-size: 20px;
	font-weight: 700;
	color: #144443;
	margin-bottom: 3%;
}

.accordion-content {
	display: none;
	padding: 10px 0 20px;
	font-size: 15px;
	color: #144443;
}

.accordion-content p {
	padding: 10px;
	background: #fbfbfb;
	border-radius: 18px;
	margin-top: -3%;
	color: #144443;
}

.accordion-item.active .accordion-content {
	display: block;
}

.accordion-item.active .accordion-header span {
	transform: rotate(45deg);
}

.tags-full {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 1%;
	padding: 4px 10%;
	font-family: Poppins;
	font-size: 13px;
	margin-bottom: 5%;
}

.tag {
	display: flex;
	align-items: center;
	background: #144443;
	border-radius: 25px;
	padding: 8px 18px;
	font-size: 12px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 4%;
}

.tag::before {
	content: "✓";
	margin-right: 8px;
	font-size: 14px;
	color: #fff;
}

/* Section Intro */
.section-intro {
	display: flex;
	align-items: center;
	gap: 3rem;
	margin: 5rem auto;
	width: 75%;
}

.section-intro .bloc-image {
	flex: 1;
	background: url(https://www.manuel-baranger.fr/assets/img/alimentaire2.webp) center/cover;
	height: 520px;
	border-radius: 8px;
	background-size: cover;
}

.section-intro .bloc-texte {
	flex: 1;
}

.bloc-texte h2 {
	color: #144443;
}

.bloc-texte p {
	color: #144443;
}

/* Section Services */
.section-services {
	width: 90%;
	max-width: 1200px;
	margin: 1rem auto;
	text-align: center;
	display: block;
}

.section-services h2 {
	margin-bottom: 2%;
	display: inline-block;
	font-family: 'Forum';
	    margin-top: 5%;
}

.section-services p {
	color: #144443;
}

.grille-services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.carte-service,
.carte-cta {
	border: 1px solid #ddd;
	padding: 1rem;
	border-radius: 8px;
	background: #fff;
	text-align: left;
	font-size: 20px;
	font-family: Poppins;
	font-weight: 600;
	height: 220px;
}

.carte-service p {
	color: #fff;
	font-size: 13px;
	text-align: center;
	margin-top: 7%;
	font-weight: 400;
	letter-spacing: 0.8px;
	background: rgba(0, 0, 0, 0.31);
}

.carte-cta {
	background: #144443;
	color: #fff;
}

.carte-cta h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	color: #fff;
}

/* Métiers backgrounds */
.metier1 {
	background: url(https://www.manuel-baranger.fr/assets/img/vigne.jpg) center/cover;
}

.metier2 {
	background: url(https://www.manuel-baranger.fr/assets/img/commercial.jpg) center/cover;
}

.metier3 {
	background: url(https://www.manuel-baranger.fr/assets/img/sante.jpg) center/cover;
}

.metier4 {
	background: url(https://www.manuel-baranger.fr/assets/img/supplychain.webp) center/cover;
}

.metier5 {
	background: url(https://www.manuel-baranger.fr/assets/img/it.jpg) center/cover;
}

.metier6 {
	background: url(https://www.manuel-baranger.fr/assets/img/mecanique.jfif) center/cover;
}

.metier7 {
	background: url(https://www.manuel-baranger.fr/assets/img/tourisme.webp) center/cover;
}

/* Section BTP Process */
.sec {
	height: auto;
	min-height: 50vh;
	padding-bottom: 2rem;
}

.bloc0 {
	width: 25%;
}

.bloc0 h2 {
	font-size: 25px;
	color: #144443;
	padding: 10px;
}

.bloc0 img {
	width: 40%;
	margin: auto;
	display: block;
}

.tp-section-title0 {
	font-weight: 500;
	font-size: 35px;
	letter-spacing: 0.08px;
	color: #144443;
	line-height: 1.2;
	margin-bottom: 5%;
	text-transform: none;
	font-family: Forum;
}

.tp-section-title-pre {
	font-family: Poppins;
	font-weight: 300;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	background: #144443;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	margin-bottom: 10px;
}

.section {
	display: flex;
	gap: 0.5rem;
	padding: 2rem 0;
}

.bloc1,
.bloc2,
.bloc3,
.bloc5,
.bloc6,
.bloc7,
.bloc8 {
	position: relative;
	color: #fff;
	width: 12%;
	padding: 2.5rem 1rem 1.5rem 1rem;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

/* BTP Backgrounds */
.bloc1 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/macon.jpg) center/cover;
}

.bloc2 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/peintre.avif) center/cover;
}

.bloc3 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/carreleur1.jpg) center/cover;
}

.bloc5 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/menuiserie.jpg) center/cover;
}

.bloc6 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/couvreur.jfif) center/cover;
}

.bloc7 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/receptionnise.webp) center/cover;
}

.bloc8 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover;
}

.bloc8 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover;
}

.bloc8 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover;
}

.bloc8 {
	background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover;
}

.etiquette {
	background: rgba(0, 0, 0, 0.18);
	border: 1.5px solid orange;
	border-radius: 28px;
	padding: 0.3rem 1.1rem;
	margin-bottom: 0.8rem;
	font-size: 12px;
	letter-spacing: 0.05em;
	font-weight: 300;
	display: inline-block;
	color: #feffff;
	font-family: Poppins;
}

.titre a {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.2;
	transition: color 0.2s;
	font-family: Poppins;
}

.titre a:hover {
	color: #85bdb6;
}

/* Contact Section */
.contact-section-3 {
	width: 95%;
	max-width: 1100px;
	margin: auto;
	font-family: Poppins;
}

.contact-box-style-3 h3 {
	font-family: 'Forum';
	color: #144443;
}

.contact-box-style-3 p {
	margin-bottom: 6%;
	color: #144443;
}

.formpons {
	padding: 10px;
}

.g5 {
	--bs-gutter-y: 0.5rem !important;
}

.col-sm-12 {
	margin-top: 2% !important;
}

.mi {
	width: 50% !important;
}

.choixdate h5 {
	font-size: 12px;
	color: #144443;
	margin-top: 3%;
	padding-left: 5px;
	font-family: 'Poppins';
}

/* Footer */
.bg-grey {
	background: #144443 !important;
}

.container-fluid {
	padding: 0 0;
	overflow: hidden;
}

footer {
	color: grey;
}

footer p,
footer a {
	font-size: 12px;
	font-family: Poppins, sans-serif;
}

footer h6 {
	font-family: Poppins, serif;
	margin-bottom: 40px;
	position: relative;
	color: #fff;
	font-size: 12px;
}

footer h6:after {
	position: absolute;
	content: "";
	background: grey;
	width: 12%;
	height: 1px;
	left: 0;
	bottom: -20px;
}

footer ul {
	padding-left: 0;
	max-width: 400px;
}

footer ul li {
	list-style: none;
	display: block;
	width: 350px;
	margin-bottom: 10px;
	margin-top: 10px;
}

footer ul li a {
	text-decoration: none;
	color: #fff;
}

.logo-footer {
	margin-bottom: 0;
}

.logo-footer p {
	margin-bottom: 40px;
}

.logo-part {
	border-right: 1px solid grey;
	height: 100%;
}

.logo-part span {
	width: 81%;
	display: block;
	padding: 10px;
	font-family: Poppins;
	font-weight: 200;
	text-align: left;
	color: #fff;
	text-align: center;
	margin: auto;
}

img.w-50.logo-footer {
	max-width: 90px;
	margin: auto;
	display: block;
}

.btn-footer {
	color: #fff;
	text-decoration: none;
	border: 1px solid;
	border-radius: 43px;
	font-size: 13px;
	padding: 7px 30px;
	line-height: 47px;
}

.containerv2 {
	font-size: 12px;
	font-family: Poppins;
	text-align: center;
	padding-bottom: 30px;
	color: #fff;
}

.stx01 {
	margin-top: 3vh;
	margin-bottom: 3vh;
}

.px-014 {
	margin-top: 3vh;
	margin-bottom: 3vh;
}

/* Social Buttons */
#social-buttons2 {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0;
	z-index: 1144443;
}

.social-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #144443;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	transition: background 0.3s, transform 0.2s;
}

.social-btn:hover {
	background-color: #144443;
	transform: scale(1.1);
}

.social-btn i {
	font-size: 18px;
	color: #fff !important;
}

.fb,
.linkedin,
.twitter,
.whatsapp,
.fb1 {
	background-color: #144443;
}

/* Back to top */
.back-to-top-wrapper {
	position: fixed;
	right: 50px;
	bottom: 0;
	height: 44px;
	width: 44px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

.back-to-top-btn {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background: #144443;
	box-shadow: 0 8px 16px rgba(3, 4, 28, 0.3);
	color: #fff;
	border-radius: 0;
	transition: all 0.3s ease-out;
}

/* Modal */
#confirmation-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1144443;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: 700;
	cursor: pointer;
}

/* Utility classes */
.d-flex {
	display: flex !important;
}

.d-block {
	display: block !important;
}

.d-none {
	display: none !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.align-items-center {
	align-items: center !important;
}

.text-center {
	text-align: center !important;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-4 {
	height: 100px;
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.g-4 {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
	.choose-section {
		display: block !important;
		width: 95% !important;
		margin: auto;
		font-family: Poppins;
	}

	.container {
		flex-direction: column;
	}

	.accordion,
	.left {
		max-width: 100% !important;
		width: 100% !important;
	}

	.cta-container1 {
		margin-top: 30px;
		padding: 17px;
		max-width: 100%;
		margin-bottom: 3%;
	}

	.cta-container1 a {
		font-size: 17px;
	}

	.jobboard {
		width: 95% !important;
	}

	.mi {
		width: 100% !important;
	}
}

@media (min-width: 700px) and (max-width: 1399px) {
	.choose-section {
		display: block !important;
		width: 80% !important;
		margin: auto;
		font-family: Poppins;
	}
}

@media (max-width: 992px) {

	.section-intro,
	.choose-section {
		flex-direction: column;
		text-align: center;
	}

	.section-intro .bloc-texte,
	.text-col {
		text-align: left;
	}
}

@media (min-width: 1400px) {
	.section-intro {
		font-size: 1.1rem;
		line-height: 1.7;
		color: #5a6c7d;
		max-width: 1400px !important;
		margin: auto;
		width: 100%;
		padding: 18px;
	}
}

@media (max-width: 1400px) {
	.features {
		display: grid;
		grid-template-columns: 1fr !important;
		gap: 20px;
		margin-bottom: 30px;
	}
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.col-lg-06 {
	width: 100%;
	padding: 15px;
}
}

@media (min-width: 992px) {
	.col-lg-06 {
		flex: 0 0 auto;
		width: 25%;
		padding: 15px;
	}
}

@media (max-width: 790px) {
	.marge {
		height: 80px;
		display: block !important;
	}

	#social-buttons2 {
		position: fixed;
		top: auto;
		bottom: 0;
		right: 50%;
		transform: translateX(50%);
		display: flex;
		flex-direction: row;
		gap: 0;
	}

	.social-btn {
		width: 65px;
		height: 50px;
	}

	.choose-section {
		margin-top: 15% !important;
	}

	.px-014 {
		margin-top: 5vh !important;
		margin-bottom: 15vh !important;
		width: 35%;
		margin: auto;
	}

	.logo-part span {
		text-align: center;
	}

	img.w-50.logo-footer {
		margin: auto;
	}
}

@media (max-width: 639px) {
	.section-services {
		width: 100%;
		padding: 10px;
		margin: 7rem auto;
		text-align: center;
		display: inline-block;
	}

	.bloc1,
	.bloc2,
	.bloc3,
	.bloc5,
	.bloc6,
	.bloc7,
	.bloc8 {
		width: 98% !important;
		margin-left: 5px;
		margin-bottom: 5px;
	}

	.bloc0 {
		width: 100% !important;
	}

	.section {
		display: block;
		gap: 0.5rem;
		padding: 2rem 0;
	}

	.bloc0 img {
		width: 11% !important;
		margin: auto;
		display: block;
		margin-bottom: 4% !important;
	}

	.sec {
		margin-bottom: 8%;
	}
}

@media (max-width: 1400px) {
	.logo-part {
		border-right: 0px solid grey !important;
		height: 100%;
	}
}

@media (min-width: 640px) and (max-width: 989px) {

	.bloc1,
	.bloc2,
	.bloc3,
	.bloc5,
	.bloc6,
	.bloc7,
	.bloc8 {
		width: 49% !important;
		float: left;
		margin-left: 5px;
		margin-bottom: 5px;
	}
}

@media (min-width: 990px) and (max-width: 1700px) {

	.bloc1,
	.bloc2,
	.bloc3,
	.bloc5,
	.bloc6,
	.bloc7,
	.bloc8 {
		width: 32% !important;
		float: left;
		margin-left: 5px;
		margin-bottom: 5px;
	}
}

@media (max-width: 575px) {
	.back-to-top-wrapper {
		right: 20px;
		bottom: 20px;
	}

	.container {
		padding: 20px !important;
		max-width: 100% !important;
	}

	.choose-section {
		margin-top: 25%;
		padding-left: 5%;
		padding-right: 5%;
	}

	.col-xxl-5.col-lg-6 {
		display: none;
	}

	p {
		font-size: 14px;
	}

	.mi {
		width: 100% !important;
	}
}

@media (max-width: 500px) {
	.px-014 {
		width: 80%;
		display: block;
		margin: auto;
	}

	.stx01 {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.stx01 .stxcontact,
	.stx01 .stxcontact2 {
		margin: 10px 0;
	}

	.stx01 .btn-footer {
		width: 100%;
		max-width: 200px;
		text-align: center;
	}
}

@media (min-width: 500px) and (max-width: 790px) {
	.stx01 {
		display: flex !important;
		justify-content: center !important;
		flex-wrap: nowrap;
		width: 100% !important;
	}

	.stx01 h6 {
		display: none;
	}

	.stx01 .stxcontact,
	.stx01 .stxcontact2 {
		margin: 0 10px;
		flex: 0 1 auto;
	}

	.stx01 .btn-footer {
		display: inline-block !important;
		width: auto;
	}
}

/* VPB Section */
.vc_row.wpb_row.vc_row-fluid.vc_custom_1736858955103 {
	background-size: cover;
	background-position: center center;
	background-image: url(https://www.manuel-baranger.fr/assets/images/team3.png);
	background-attachment: scroll;
	width: 100%;
	left: 0;
	min-width: 100%;
}

.wpb_animate_when_almost_visible.wpb_fadeInUp.fadeInUp.wpb_column.vc_column_container.vc_col-sm-12 {
	background-size: cover;
	background-position: center center;
	background-image: url(https://www.manuel-baranger.fr/assets/images/team3.png);
	background-attachment: scroll;
	width: 100%;
	left: 0;
	min-width: 100%;
}

.wpb_wrapper {
	padding-top: 2% !important;
	padding-bottom: 4% !important;
}

.wpb_wrapper h2 {
	color: #fff;
	text-align: center;
	letter-spacing: 0.5px;
	font-weight: 200;
	font-size: 40px;
	font-family: poppins
}

.vc_btn3-container.vc_btn3-center.vc_do_btn {
	text-align: center;
	font-size: 16px;
}

.vc_btn3-container.vc_btn3-center.vc_do_btn:hover {
	color: #144443;
}

a.vc_general.vc_btn3.vc_btn3-size-sm.vc_btn3-shape-round.vc_btn3-style-outline-custom {
	border-color: #fff;
	color: #fff;
	background-color: transparent;
	border-radius: 25px;
	padding: 12px;
	margin-bottom: 15px;
	width: 80%;
	max-width: 200px;
}

@media screen and (max-width: 990px) {
	.wpb_wrapper h2 {
		font-size: 20px;
		letter-spacing: 1px;
		margin-top: 20px;
	}
}

/* Font Awesome Icons */
.fa,
.fas,
.fab {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.fab {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.fa-phone-alt:before {
	content: "\f879";
}

.fa-envelope:before {
	content: "\f0e0";
}

.fa-facebook-f:before {
	content: "\f39e";
}

.fa-linkedin-in:before {
	content: "\f0e1";
}

.fa-twitter:before {
	content: "\f099";
}

.fa-whatsapp:before {
	content: "\f232";
}

.fa-location-dot:before {
	content: "\f3c5";
}

.fa-phone:before {
	content: "\f095";
}

/* Offcanvas */
.offcanvas__area {
	position: fixed;
	left: 0;
	top: 0;
	width: 400px;
	height: 100%;
	transform: translateX(calc(-100% - 80px));
	background: #fff;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	overflow-y: scroll;
}

.offcanvas__wrapper {
	position: relative;
	padding: 40px;
	z-index: 999;
	min-height: 100%;
}

.offcanvas__close {
	position: absolute;
	top: 35px;
	right: 30px;
}

.offcanvas__close-btn {
	position: relative;
	display: inline-block;
	font-size: 16px;
	height: 44px;
	width: 44px;
	line-height: 40px;
	border-radius: 10px;
	background-color: #f5f5f5;
	color: #67687A;
}

.offcanvas__contact h4 {
	font-size: 24px;
	color: #1b1d21;
	font-weight: 700;
	margin-bottom: 10px;
}

.offcanvas__contact-content {
	margin-bottom: 10px;
	display: flex;
}

.offcanvas__contact-content-icon i {
	color: #6ec1e4;
	margin-right: 10px;
}

.offcanvas__contact-content-content a {
	font-size: 16px;
	font-family: Montserrat;
}

.body-overlay {
	background-color: #144443;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

/* Transitions */
.transition-3,
a,
button,
input,
li,
p,
select,
textarea {
	transition: all 0.3s ease-out;
}

.marge {
	display: none;
}

.mn1-logo a img {
	max-width: 240px;
	height: auto;
	border: none;
}

.contactbg {
	clear: both;
	padding-top: 3rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
	height: 38px;
	border-radius: 13px;
	color: #144443;
	width: 100%;
	border: 1px solid #dedede;
	padding: 0.375rem 0.75rem;
	font-size: 14px;
	line-height: 1.5;
	background-color: #fff;
	font-family: Poppins, sans-serif;
}

input[type="date"] {
	padding-left: 37px;
	padding-right: 20px;
}

input::placeholder,
textarea::placeholder {
	color: #999;
	font-size: 11px;
	font-family: Poppins, sans-serif;
}

textarea {
	height: 100px;
	resize: vertical;
	padding-top: 10px;
	font-family: Poppins, sans-serif;
	margin-top: 10px;
}

select {
	background-image: none);
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	padding-right: 2.25rem;
	font-family: Poppins, sans-serif;
}

/* Styles de base importés de votre CSS */
.bord {
	padding: 0rem 0;
}

.sec {
	height: auto;
	min-height: 50vh;
	padding-bottom: 2rem;
}

.bloc0 {
	width: 25%;
	text-align: center;
	flex-shrink: 0;
}

.bloc0 h2 {
	font-size: 30px;
	color: #144443;
	padding: 15px
}

.bloc0 img {
	width: 40%;
	margin: auto;
	display: block;
}

.tp-section-title0 {
	font-weight: 500;
	font-size: 35px;
	letter-spacing: 0.08px;
	color: #144443;
	line-height: 1.2;
	margin-bottom: 5%;
	text-transform: none;
	font-family: Forum;
	padding: 0 20px;
}

.tp-section-title-pre {
	font-family: Poppins;
	font-weight: 300;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	background: #144443;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	margin-bottom: 10px;
}

.mb-70 {
	margin-bottom: 70px;
}

.text-center {
	text-align: center;
}

/* Protection overflow horizontal */
html,
body {
	overflow-x: hidden;
	max-width: 100vw;
}

/* Structure principale */
.section {
	display: flex;
	gap: 0.5rem;
	padding: 2rem 0;
	align-items: flex-start;
	overflow-x: hidden;
	margin-top: 5%;
}

.metiers-carousel-wrapper {
	flex: 1;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	touch-action: pan-y;
}

.metiers-carousel-container {
	overflow: hidden;
	width: 100%;
}

.metiers-carousel {
	display: flex;
	gap: 1rem;
	transition: transform 0.5s ease-in-out;
	touch-action: pan-x;
}

/* Contrôles de navigation */
.carousel-controls {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.carousel-btn {
	background: #144443;
	border: none;
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(251, 60, 6, 0.3);
}

.carousel-btn:hover {
	background: #e0350a;
	transform: scale(1.1);
}

.carousel-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: scale(1);
}

/* Fiches métiers */
.metier-card {
	position: relative;
	color: #fff;
	width: 300px;
	min-height: 400px;
	padding: 2rem 1rem 1.5rem 1rem;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}


.metier-chocolatier {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/chocolatier.jpeg) center/cover;
}

.metier-boulanger {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/boulanger.jpeg) center/cover;
}

.metier-patissier {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/patissier.jpg) center/cover;
}

.metier-boucher {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/boucher.webp) center/cover;
}

.metier-poissonnier {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/poissonnier.webp) center/cover;
}

.metier-technicien-agro {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/technicien-agroalimentaire.webp) center/cover;
}

.metier-technico-agro {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/technico-commercial-agroalimentaire.jpg) center/cover;
}

.metier-responsable-qualite {
	background: linear-gradient(#14444387, #144443e0), url(https://www.manuel-baranger.fr/assets/img/responsable-qualite-agroalimentaire.jpg) center/cover;
}

.etiquette {
	background: rgba(0, 0, 0, 0.18);
	border: 1.5px solid #627a7a;
	border-radius: 28px;
	padding: 0.3rem 1.1rem;
	margin-bottom: 0.8rem;
	font-size: 12px;
	letter-spacing: 0.05em;
	font-weight: 300;
	display: inline-block;
	color: #feffff;
	font-family: Poppins;
}

.titre a {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.2;
	transition: color 0.2s;
	font-family: Poppins;
}

.titre a:hover {
	color: gold;
}

/* Indicateurs de scroll */
.scroll-indicator {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #071212c7;
	color: white;
	padding: 10px;
	border-radius: 5px;
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.scroll-indicator.left4 {
	left: 10px;
}

.scroll-indicator.right4 {
	right: 10px;
}

.metiers-carousel-wrapper:hover .scroll-indicator {
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
	.section {
		flex-direction: column;
	}

	.bloc0 {
		width: 100%;
		margin-bottom: 2rem;
	}

	.metier-card {
		width: 280px;
	}

	.metiers-carousel-wrapper {
		max-width: calc(100vw - 2rem);
	}

	.scroll-indicator {
		width: 105px;
	}
}

@media (max-width: 992px) {
	.metier-card {
		width: 250px;
		min-height: 180px;
	}

	.carousel-controls {
		bottom: -50px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

@media (max-width: 639px) {
	.section {
		padding: 1rem 0;
	}

	.bloc0 {
		width: 100%;
		margin-bottom: 1rem;
	}

	.metiers-carousel {
		gap: 0.5rem;
	}

	.metier-card {
		width: 220px;
		min-height: 160px;
		padding: 1.5rem 1rem 1rem 1rem;
	}

	.carousel-controls {
		bottom: -40px;
	}

	.carousel-btn {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.tp-section-title0 {
		font-size: 24px;
	}

	.bloc0 img {
		width: 30%;
	}

	.metiers-carousel-wrapper {
		max-width: calc(100vw - 1rem);
	}
}

@media (min-width: 500px) and (max-width: 790px) {
	.metier-card {
		width: 240px;
	}
}

/* Section FAQ */
.faq-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), #ff6b35);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
}

.section-title {
	font-family: 'Forum', serif;
	font-size: 2.5rem;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--primary-color);
	margin: 20px auto;
	border-radius: 2px;
}

.faq {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

.faq-item:hover {
	box-shadow: 0 8px 25px rgba(251, 60, 6, 0.15);
	transform: translateY(-2px);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 15px 15px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: 300;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
}

.faq-question:hover {
	background: linear-gradient(135deg, rgba(251, 60, 6, 0.05), rgba(255, 107, 53, 0.05));
}

.faq-item.active .faq-question::after {
	content: '−';
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(248, 249, 250, 0.5);
}

.faq-answer.active {
	max-height: 200px;
}

.faq-answer-content {
	padding: 0 30px 25px;
}

.faq-answer-content li {
	font-size: 13px;
	line-height: 23px;
	margin-left: 3%;
}

.faq-answer p {
	color: var(--text-light);
	font-size: 13px;
	line-height: 23px;
	margin: 0;
	padding: 15px;
}

.faq-answer strong {
	color: var(--text-dark);
}

/* Animation d'apparition */
.faq-item {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) {
	animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
	animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
	animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.faq-question {
		padding: 20px 20px;
		font-size: 12px;
	}

	.faq-answer-content {
		padding: 0 20px 20px;
	}

	.faq-answer p {
		font-size: 12px;
	}
}

@media (max-width: 1400px) {

	.carousel-controls,
	.scroll-indicator {

	}
}

.containerv3 {
	max-width: 1200px;
	margin: auto;
	width: 100%;
	display: block;
	font-family: poppins
}

h3.secteur-titre2 {
	font-family: 'Poppins';
	font-size: 14px;
}
}

ul.metiers-list2 a {
	font-family: 'Poppins';
	color: #144443;
	font-size: 12px;
}

section.section-autres-domaines {
	display: block;
	width: 100%;
	float: left;
}

.secteur-bloc2 {
	display: flex;
	width: 33%;
	flex-direction: column;
	float: left;
	min-height: 280px;
}

.metiers-list2 li {
	list-style: none;
}

ul.metiers-list2 li a {
	color: #fff;
	font-size: 12px;
	line-height: 24px;
}

/* Section autres domaines d'expertise */
.section-autres-domaines {
	padding: 80px 0;
	background: #f8f9fa;
}

.section-autres-domaines .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header de section */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.section-intro {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #5a6c7d;
	max-width: 1200px;
	margin: auto;
	width: 100%;
	padding: 18px;
}

/* Grille des secteurs */
.secteurs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

/* Blocs secteur */
.secteur-bloc {
	background: white;
	border-radius: 12px;
	padding: 30px 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secteur-bloc:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Titres des secteurs */
.secteur-titre {
	font-size: 1.4rem;
	font-weight: 600;
	color: #144443;
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
	border-bottom: 2px solid #144443;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Listes de métiers */
.metiers-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.metiers-list li {
	margin-bottom: 8px;
}

.metiers-list a {
	color: #4a5568;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.5;
	padding: 6px 0;
	display: block;
	border-left: 3px solid transparent;
	padding-left: 15px;
	transition: all 0.3s ease;
	position: relative;
}

.metiers-list a::before {
	content: "▶";
	position: absolute;
	left: 0;
	color: #144443;
	font-size: 0.7em;
	opacity: 0.7;
}

.metiers-list a:hover {
	color: #144443;
	border-left-color: #144443;
	background: rgba(251, 60, 6, 0.05);
	padding-left: 20px;
	font-weight: 500;
}

/* Footer de section */
.section-footer {
	text-align: center;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #e2e8f0;
}

.cta-finale {
	background: linear-gradient(135deg, #144443 0%, #e63946 100%);
	border-radius: 15px;
	padding: 40px;
	color: white;
	max-width: 600px;
	margin: 0 auto;
}

.cta-finale h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-family: 'Forum', serif;
}

.cta-finale p {
	font-size: 1.1rem;
	margin-bottom: 25px;
	opacity: 0.95;
}

.btn-contact-secteurs {
	display: inline-block;
	background: white;
	color: #144443;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact-secteurs:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	color: #e63946;
}

/* Responsive Design */
@media (max-width: 768px) {
	.section-autres-domaines {
		padding: 50px 0;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.section-intro {
		font-size: 1rem;
	}

	.secteurs-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-bottom: 40px;
	}

	.secteur-bloc {
		padding: 25px 20px;
	}

	.secteur-titre {
		font-size: 1.2rem;
	}

	.metiers-list a {
		font-size: 0.9rem;
	}

	.cta-finale {
		padding: 30px 20px;
	}

	.cta-finale h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.section-autres-domaines .container {
		padding: 0 15px;
	}

	.section-header h2 {
		font-size: 1.7rem;
	}

	.secteur-bloc {
		padding: 20px 15px;
	}

	.metiers-list a {
		padding-left: 10px;
	}

	.metiers-list a:hover {
		padding-left: 15px;
	}
}

*

/***** /*
/* =========================
Business Solution Section
========================= */
.feature-left-content-1 {
	padding: 40px 60px;
	height: 100%;
	background-color: #E4F4F2;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199.98px) {
	.feature-left-content-1 {
		padding: 40px 30px;
	}

	.feature-left-content-1 h2 {
		font-size: 30px;
	}
}

.feature-left-content-1 h2 {
	font-size: 40px;
	font-weight: 600;
}

.feature-left-content-1 .down-shape {
	position: absolute;
	top: 28px;
	right: 14px;
	z-index: -1;
}

.feature-left-content-1 .spiral-shape {
	position: absolute;
	left: 37px;
	bottom: 75px;
	z-index: -1;
}

.feature-left-content-1 .client-image {
	display: flex;
	align-items: center;
	margin: 25px 0 20px;
}

.feature-left-content-1 .client-image img {
	border-radius: 50%;
	border: 1px solid #fff;
}

.feature-left-content-1 .client-image .icon-2,
.feature-left-content-1 .client-image .icon-3,
.feature-left-content-1 .client-image .icon-4 {
	margin-left: -15px;
}

.feature-left-content-1 h4 {
	font-size: 20px;
	line-height: 1;
}

.feature-left-content-1 .star i {
	color: #FFC65E;
}

.feature-left-content-1 .star span {
	font-size: 14px;
	font-weight: bold;
	color: #0B3130;
}

/* Items bloc 1 */
.feature-business-solution-items-1 {
	background: #144443;
}

.feature-business-solution-items-1 .business-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	z-index: 2;
}

.feature-business-solution-items-1 .business-image img {
	width: 100%;
	height: 100%;
	display: block;
	background-size: cover;
	transition: 0.5s;
}



.feature-business-solution-items-1 .business-image img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}

.feature-business-solution-items-1 .content {
	padding: 40px 40px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199.98px) {
	.feature-business-solution-items-1 .content {
		padding: 40px 20px;
        margin-bottom: 10%;
	}
	.feature-business-solution-items-1 .business-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;

}
ul.losange {
    list-style-type: none;
    padding-left: 1.2em;
    display: none;
}
}

.feature-business-solution-items-1 .content .icon {
	background: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
	background-size: 200%;
	border-radius: 50%;
	color: #fff;
	font-size: 35px;
	width: 70px;
	height: 70px;
	line-height: 65px;
	margin-bottom: 25px;
	text-align: center;
	transition: 0.4s;
	position: relative;
}

.feature-business-solution-items-1 .content h3 {
    color: #fff;
    font-family: poppins;
    font-weight: 600;
    padding-bottom: 3%;
    font-size: 12px;
}

.feature-business-solution-items-1 .content p {
color: #fff;
    font-size: 18px;
   height: 140px;
}

/* Items bloc 2 */
.feature-business-solution-items-2 {
	background: #144443;
}

.feature-business-solution-items-2 .business-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	z-index: 2;
}

.feature-business-solution-items-2 .business-image img {
	width: 100%;
	height: 100%;
	display: block;
	background-size: cover;
	transition: 0.5s;
}



.feature-business-solution-items-2 .business-image img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}

.feature-business-solution-items-2 .content {
	        padding: 40px 20px;
        margin-bottom: 0%;
	position: relative;
	z-index: 9;
	margin-top: 0;
}

@media (max-width: 1199.98px) {
	.feature-business-solution-items-2 .content {
		padding: 40px 35px 0;
	}
}

.feature-business-solution-items-2 .content .icon {
	background: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
	background-size: 200%;
	border-radius: 50%;
	color: #fff;
	font-size: 34px;
	width: 70px;
	height: 70px;
	line-height: 65px;
	margin-top: 20px;
	margin-bottom: -35px;
	text-align: center;
	transition: 0.4s;
}

.feature-business-solution-items-2 .content h3 {
	color: #fff;
	font-family: poppins;
	font-weight: 600;
	padding-bottom: 3%;
	    font-size: 12px;
}

.feature-business-solution-items-2 .content p {
color: #fff;
    font-size: 18px;
   height: 140px;
}

.g-0,
.gy-0 {
	--bs-gutter-y: 0;
}

.g-0,
.gx-0 {
	--bs-gutter-x: 0;
}

@media (min-width: 1200px) {
	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}
}

@media (min-width: 992px) {
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}
}

@media (min-width: 1200px) {
	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}
}

@media (min-width: 992px) {
	.col-lg-8 {
		flex: 0 0 auto;
		width: 100%;
	}
}

.col-lg-61 {
	flex: 0 0 auto;
	width: 33%;
}

@media (max-width: 1400px) {
	.col-lg-61 {
		flex: 0 0 auto;
		width: 50%;
	}
}

@media screen and (max-width: 900px) {
  .feature-business-solution-items-1 .content p,
  .feature-business-solution-items-2 .content p {
    color: #fff;
    font-size: 14px;
    max-height: 140px;
    line-height: 22px;
  }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .feature-business-solution-items-1 .content p,
  .feature-business-solution-items-2 .content p {
    color: #fff;
    font-size: 14px;
    max-height: 80px;
    line-height: 22px;
  }
}

@media (max-width: 900px) {
	.col-lg-61 {
		flex: 0 0 auto;
		width: 100%;
		margin: auto;
	}
	.feature-business-solution-items-1 .content h3 {
    color: #fff;
    font-family: poppins;
    font-weight: 300;
    padding-bottom: 3%;
    font-size: 11px;
}
.feature-business-solution-items-2 .content h3 {
    color: #fff;
    font-family: poppins;
    font-weight: 300;
    padding-bottom: 3%;
    font-size: 11px;
}
	
	.feature-business-solution-items-1 .business-image {
	margin-top: 10%;}
	.feature-business-solution-items-2 .business-image {
	margin-top: 10%;}

	.col-lg-61.col-md-61 img {

	}

	.container002 {
		width: 100%
	}
}

.container002 {
	margin: auto;
	width: 90%;
	display: block;
}

ul.losange {
	list-style-type: none;
	/* on enlève les puces par défaut */
	padding-left: 1.2em;
}

ul.losange li::before {
	content: "*";
    color: #fff;
    font-size: 8px;
    display: inline-block;
    width: 2em;
    margin-left: -2.2em;
}

.boutonplus {
	
	padding: 7px;
	
	text-align: center;
	border-radius: 15px;
	margin-bottom: 0%;
	font-size: 12px;
	display: block;
	    margin-top: 7%;
    margin-left: -6%;
}

.boutonplus a{
    background: #92b1af;
    padding: 10px 20px;
    color: #144443;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 12px;
}

.espace {
	height: 20px;
}

@media (min-width: 1400px) {
	.boutonplus {
		margin-top: 25px;
	}

	.espace {
		height: 0px;
		display: none
	}
}

section.bas {
	height: 45px;
}

.mobile-carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.mobile-carousel-btn {
	pointer-events: auto;
	background: rgba(251, 60, 6, 0.9);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.mobile-carousel-btn:hover:not(:disabled) {
	background: rgba(251, 60, 6, 1);
	transform: scale(1.1);
}

.mobile-carousel-btn:disabled {
	cursor: not-allowed;
}

.metiers-carousel-wrapper {
	position: relative;
	overflow: hidden;
}

.mobile-prev {
	margin-left: 10px;
}

.mobile-next {
	margin-right: 10px;
}

.bloc0 p {
	padding: 15px;
	font-size: 13px;
}

.cta-container1 button {
	color: #fff;
	padding: 16px 60px;
	border-radius: 15px;
	max-width: 256px;
	text-align: center;
	background: #144443;
	font-family: poppins;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 700;
}

.cta-container1 {
	margin: auto;
}

/* ==============================================
MODAL RAPPEL (version compacte)
============================================== */
.modal-rappel {
	max-width: 500px;
}

.modal-header-rappel {
	background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
	color: white;
	padding: 30px 25px;
	border-radius: 12px 12px 0 0;
	text-align: center;
}

.header-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.header-icon i {
	font-size: 28px;
	color: white;
}

.modal-header-rappel h2 {
	margin: 0 0 8px 0;
	font-size: 24px;
	font-weight: 700;
}

.modal-header-rappel p {
	margin: 0;
	opacity: 0.95;
	font-size: 14px;
}

.modal-form-rappel {
	padding: 25px;
}

.form-row-rappel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.form-checkbox-compact {
	margin: 20px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.form-checkbox-compact input[type="checkbox"] {
	margin-top: 2px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.form-checkbox-compact label {
	font-size: 12px;
	color: #666;
	line-height: 1.4;
	cursor: pointer;
	margin: 0;
}

.form-checkbox-compact a {
	color: #27ae60;
	text-decoration: underline;
}

.btn-submit-rappel {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-submit-rappel:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-submit-rappel:active {
	transform: translateY(0);
}

.form-footer-rappel {
	text-align: center;
	font-size: 12px;
	color: #27ae60;
	margin-top: 12px;
	font-weight: 500;
}

.form-footer-rappel i {
	margin-right: 5px;
}

/* Confirmation rappel */
.confirmation-icon-rappel {
	width: 80px;
	height: 80px;
	background: #27ae60;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin: 0 auto 20px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.btn-close-confirmation-rappel {
	background: #27ae60;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-close-confirmation-rappel:hover {
	background: #219653;
}

/* Responsive */
@media (max-width: 576px) {
	.modal-rappel {
		margin: 0;
	}

	.modal-header-rappel {
		padding: 25px 20px;
	}

	.modal-header-rappel h2 {
		font-size: 20px;
	}

	.modal-form-rappel {
		padding: 20px;
	}

	.form-row-rappel {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
.defile {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap; /* permet de passer à la ligne si trop d'éléments */
    justify-content: center;
    gap: 1%; /* espace entre les villes */
}

.ville {
    flex: 1 1 13%; /* largeur de base 13%, mais flexible */
    min-width: 120px; /* largeur minimale pour petits écrans */
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.ville p {
    background: #144443;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
} 

.villes {
    width: 90%;
    margin: 1rem auto;
    text-align: center;
}

.villes h2 {
    margin-bottom: 2%;
    font-family: 'Forum';
    font-size: 1.5rem;
}

/* Responsive : pour les petits écrans */
@media (max-width: 1024px) {
    .ville {
        flex: 1 1 20%; /* 5 villes par ligne environ */
    }
}

@media (max-width: 768px) {
    .ville {
        flex: 1 1 30%; /* 3-4 villes par ligne */
    }
}

@media (max-width: 480px) {
    .ville {
        flex: 1 1 45%; /* 2 villes par ligne */
    }
    .villes h2 {
        font-size: 1.2rem;
    }
}


.hidden {
    display: none;
}

button#toggleBusinessSection {
    background: #144443;
    border: none;
    padding: 18px;
    font-family: 'Poppins';
    color: #fff;
    font-size: 16px;
    display: block;
    width: 100%;
    max-width: 350px;
	    margin: auto;
		margin-bottom: 10%;
		cursor:pointer;
		    margin-top: 2%;
}

.liste_metiers {
    margin: auto;
    width: 100%;
    display: block;
}

.pourquoi-nous-choisir {
    background: #f8f8f8;
    padding: 3rem 1rem;
    text-align: center;
}

.pourquoi-nous-choisir h2 {
    font-family: 'Forum';
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pourquoi-nous-choisir p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.points-forts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.point {
    background: #144443;
    color: #fff;
    padding: 1.5rem;
    flex: 1 1 200px;
    border-radius: 8px;
    text-align: left;
}

.point h3 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 22px;
    font-family: poppins;
    font-weight: 100;
    width: 80%;
}

.point p {
    margin: 0;
    font-size: 12px;
	line-height:24px;
	color:#fff;
		font-family:poppins;
		    padding: 0!important
}

/* Responsive */
@media (max-width: 768px) {
    .points-forts {
        flex-direction: column;
        align-items: center;
    }
}

.container_pourquoi p {
    text-align: left;
    padding: 0 25px;
}

.container_pourquoi{
	
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px 0px !important;
    max-width: 95% !important;
	    display: flex;
    justify-content: space-between;
align-items: flex-start;}


@media (min-width: 970px) and (max-width: 1200px) {
    .container_pourquoi {
        display: block;
    }
}
@media (max-width: 970px) {
    .point {
        margin-bottom: 3%;
    }
    .points-forts {
        display: block;
    }
	.container_pourquoi {
        display: block;
    }
}

/* Message de confirmation stylisé */
.confirmation-message {
    text-align: center;
    padding: 60px 40px;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.confirmation-message h3 {
    font-size: 28px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.confirmation-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.btn-close-confirmation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-close-confirmation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-close-confirmation:active {
    transform: translateY(0);
}

/* Animation du bouton submit pendant l'envoi */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 620px) {
.logomercato img {
    width: 20%;
    display: block;
}
.logomercato {
    width: 600px;
	    margin: auto;
    margin-bottom: 5%;
}

.logomercato p {
    float: left;
    padding-top: 2%;
    font-weight: 400;
    color: #194a53;
    font-size: 12px;
}
}

/* Responsive pour les écrans <= 620px */
@media (max-width: 620px) {
  .logomercato {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Centrer le texte dans le <p> */
  }

  .logomercato p {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logomercato img {
		max-width: 50%;
        height: auto;
        margin-bottom: 10%;
        margin-top: -5%;
  }
}
@media (min-width: 1200px) {
.col-lg-61.col-md-61.wow.fadeInUp {
    flex: 0 0 auto;
    width: 33%;
    min-height: 700px;
}
.feature-business-solution-items-1 .content p {
    color: #fff;
    font-size: 17px;
    height: 115px;
}
.feature-business-solution-items-2 .content p {
    color: #fff;
    font-size: 17px;
     height: 115px;
}
}

.section-subtitle01 {
    font-size: 15px;
    color: #144443;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}