@charset "utf-8";

/* ===================
   Fonts
=================== */
@font-face {
  	font-family: 'HelveticaNowDisplay-CnBlk';
  	src: url('../fonts/HelveticaNowDisplayCondensedBlack.woff2') format('woff2');
	font-display: swap;
}

@font-face {
  	font-family: 'HelveticaNowDisplayMedium';
  	src: url('../fonts/HelveticaNowDisplayMedium.woff2') format('woff2');
	font-display: swap;
}

@font-face {
  font-family: 'HelveticaNowText';
  src: url('../fonts/HelveticaNowTextRegular.woff2') format('woff2');
}

@font-face {
  font-family: 'RobotoCondensed';
  src: url('../fonts/RobotoCondensed-Medium.woff2') format('woff2');
}

/* ===================
   Variables
=================== */
:root {
 
  --header-height: clamp(200px, 26.67vw, 512px);
  --section-margin-top: clamp(48px, 6.67vw, 128px);

  --h1-size: clamp(32px, 3.54vw, 72px);
  --h2-size: clamp(40px, 3.54vw, 72px);
  --h2-margin-bottom: clamp(32px, 3.54vw, 68px);
  --h3-size: clamp(22px, 1.25vw, 24px);
  --h3-margin-bottom: clamp(24px, 2.5vw, 48px);
  --text-size: clamp(14px, 0.83vw, 16px);

  --button-width: clamp(160px, 13.75vw, 264px);
  --button-height: clamp(48px, 3.33vw, 64px);
  --button-radius: clamp(4px, 0.73vw, 7px);
  --button-font-size: clamp(16px, 1.25vw, 24px);
  --button-bg: #ff5000;
  --button-color: #ffffff;
  --button-margin-top: clamp(16px, 2.5vw, 32px);

  --icon-width: clamp(24px, 1.67vw, 32px);
  --icon-margin-left: clamp(16px, 1.25vw, 24px);

  --text-side-margin: clamp(64px, 7.29vw, 140px);
  --image-text-gap: clamp(64px, 6.67vw, 128px);
  --image-border-radius: clamp(16px, 1.67vw, 32px);
}


*, ::before, ::after {
    box-sizing: border-box;
	}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: var(--text-size);
  font-family: 'HelveticaNowText';
}

h1 {
  font-size: var(--h1-size);
  font-family: 'HelveticaNowDisplay-CnBlk';
	color: #1A1A1A;
	text-align: center;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: clamp(0.036rem, 0.03rem + 0.15vw, 0.25rem);
	margin-top: clamp(24px, 3.75vw, 72px);
	margin-right: clamp(24px, 3.75vw, 72px);
	margin-left: clamp(24px, 3.75vw, 72px);
}

h2{
  	font-size: var(--h2-size);
  	margin-bottom: var(--h2-margin-bottom);
	letter-spacing: clamp(0.036rem, 0.03rem + 0.15vw, 0.25rem);
  	font-family: 'HelveticaNowDisplay-CnBlk';
	line-height: 100%;
	color: #1A1A1A;
	text-align: center;
	text-transform: uppercase;
}

h3,
summary{
  	font-size: var(--h3-size);
  	margin-top: var(--h3-margin-bottom);
  	font-family: 'HelveticaNowDisplayMedium';
	color: #1A1A1A;
	line-height: 125%;
	letter-spacing: clamp(0.02em, 0.05vw, 0.05em);
}

h4{
	font-family: 'HelveticaNowDisplayMedium';
	color: #1A1A1A;
	font-size: clamp(18px, 1.8vw, 20px);
}

p,
li {
  font-size: var(--text-size);
	font-family: 'HelveticaNowText';
	line-height: 125%;
	color: #1A1A1A;
}

strong{
	font-weight: bold;
	letter-spacing: clamp(0.02em, 0.05vw, 0.05em);
}

/* ===================
   générique
=================== */
header {
  
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
}


 main, section{
	margin: clamp(24px, 3.75vw, 72px);
}

nav{
	padding: clamp(24px, 3.75vw, 72px);
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

a {
  display: inline-block;
  position: relative;
	text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.5px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: transform 0.25s ease-out;
	 transform-origin: bottom left;
}

a:hover::after {
  transform: scaleX(1);
	transform-origin: bottom right;
}


footer{
	background-color: #1A1A1A;
	color: #ffffff;
	padding: clamp(24px, 3.75vw, 72px);
	overflow: hidden;
	position: relative;
}

footer h3{
	margin: 0;
}

details a{
	color: #ff5000;
	text-decoration: none;
	font-weight: bold;
}

summary{
	margin-bottom: var(--h3-margin-bottom);
	width: 100%;
	background-color: #ff5000;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: var(--button-height);
	border: none;
	border-radius: var(--button-radius);
	cursor: pointer;
	
}

.mentions header{
	background-color: #1A1A1A;
	min-height: 4rem;
}

.mentions h2{
	font-family: 'HelveticaNowDisplayMedium';
	font-size: clamp(24px, 1.875vw, 36px);
	text-align: left;
	margin-bottom: 0;
	margin-top: var(--h2-margin-bottom);
}

.mentions a{
	color: #1A1A1A;
	text-decoration: underline;
	font-size: 14px;
	font-weight: bold;
	
}

/* ===================
    classes header,
	footer et navigation
=================== */

.logo{
	
	height: clamp(1.25rem, 1.625rem + 1vw, 2.5rem);
	width: auto;
}

.menu {
	list-style: none;
	display: flex;
	gap:  2rem;
	font-family: 'HelveticaNowText';
	align-items: center;
	justify-content: center;
}

.menu li {
	display: inline;
	font-family: 'HelveticaNowDisplayMedium';
	
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

 .close-menu {
		visibility: hidden;
    }

.bar {
    height: 3px;
    width: 25px;
    background: white;
    margin: 3px 0;
}

.sixt{
	text-transform: uppercase;
}

.layout{
	max-height: 60%;
	min-height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ou space-between selon le besoin */
	background-color: #ff5000;
	align-items: center;
}

.subline{
	font-family: 'HelveticaNowDisplayMedium';
	font-size: clamp(16px, 1.875vw, 36px);
	margin-top: 0;
	text-align: center;
	margin-bottom: clamp(24px, 3.75vw, 72px);
	letter-spacing: 0;
	color: #1A1A1A;
	font-weight: normal;
	text-transform: none;
	margin-left: clamp(24px, 3.75vw, 72px);
    margin-right: clamp(24px, 3.75vw, 72px);
}

.entete{
	display: flex;
	-webkit-box-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.rs{
	list-style: none;
	display: flex;
	flex-flow: wrap;
	    margin: 1rem calc(0.5rem) 0px;
}

.text_footer{
	color: #ffffff;
	
	text-align: left;
}

.footerrow{
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: space-between;
	margin-top: clamp(24px, 3.75vw, 72px);
}

.centered-element{
	 display: flex;
    justify-content: center;
    align-items: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--button-width);
  height: var(--button-height);
  border: none;
  border-radius: var(--button-radius);
  background-color: var(--button-bg);
  margin-top: var(--button-margin-top);
  cursor: pointer;
  text-decoration: none;
  font-family: 'HelveticaNowDisplayMedium';
}

.button a {
	font-family: 'HelveticaNowDisplayMedium';
	font-size: var(--button-font-size);
	color: var(--button-color);
	text-decoration: none;
}

.bck{
	background-color: #1A1A1A;
	 width: clamp(240px, calc(10vw + 40px), 400px);
	margin: 0.5rem;
	height: clamp(2.5rem, calc(0.25rem + 2vw), 4rem); /* Pour la hauteur */
	min-width: 12.5rem;
	display: inline-flex;
	margin-bottom: clamp(24px, 3.75vw, 72px);
}

.bck a{
	font-size: 1rem;
	 white-space: nowrap;  /* Empêche le texte de passer à la ligne */
}

.wht{
	background-color: #ffffff;
	 width: clamp(240px, calc(10vw + 40px), 400px);
	margin: 0.5rem;
	height: clamp(2.5rem, calc(0.25rem + 2vw), 4rem); /* Pour la hauteur */
	min-width: 12.5rem;
	display: inline-flex;
	margin-bottom: clamp(24px, 3.75vw, 72px);
}

.wht a{
	font-size: 1rem;
	color: #1A1A1A;
	 white-space: nowrap;  /* Empêche le texte de passer à la ligne */
}

.lienpage{
	font-family: 'HelveticaNowText';
	font-weight: bold;
	color: #ff5000;
}

/* ===================
   Flex
=================== */

.flex-row{
	display: flex;
	flex-direction: row;
	gap: 2rem;
	align-items: center;
}

.flex-btn{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.choix{
	--grid-columns: 12;
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(1.5rem / -2);
	margin-right: calc(1.5rem / -2);
	padding-left: 5rem;
	padding-right: 5rem;
	justify-content: center;
	max-width: calc(100rem);
}

.centerav, .sixtr{
	display: flex;
	justify-content: center;
}

.avantages{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	gap: 3rem;
}

.choix h3{
	margin: 0;
	font-size: 16px;
}

.choix p{
	margin: 0;
}

.arguments{
	display: flex;
    	gap: 0.625rem;
    	flex-direction: column;
	padding-right: 2rem;
	flex: 1;
}

.arguments p{
	font-size: clamp(20px, 1.25vw + 14px, 24px);
	font-weight: bold;
}

.footerrow{
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: space-between;
	margin-top: clamp(24px, 3.75vw, 72px);
}

.col_reponsive{
	display: flex;
	flex-direction: column;
	column-gap: 0.625rem;
}

.flex-row > * {
  	flex: 1 1 100%; /* Pour les petits écrans */
}


.flex-row.reverse {
  	flex-direction: row-reverse;
}

.flex-row img {
 	border-radius: var(--image-border-radius);
  	max-width: 100%;
  	height: auto;
}

.flex-row.reverse img {
  	border-radius: var(--image-border-radius);
}

.justification{
	display: flex;
	justify-content: flex-end !important;
}

/* ===================
   survol
=================== */

.hover-underline-animation {
 	display: inline-block;
  	position: relative;
}

.hover-underline-animation::after {
 	content: '';
  	position: absolute;
  	width: 100%;
  	transform: scaleX(0);
  	height: 0.5px;
  	bottom: 0;
  	left: 0;
  	background-color: #ffffff;
  	transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
 	 transform: scaleX(1);
}

.hover-underline-animation.right::after {
 	transform-origin: bottom left;
}

.hover-underline-animation.right:hover::after {
  	transform-origin: bottom right;
}

/* ===================
   Pictogrammes
=================== */
.icon {
 	width: var(--icon-width);
  	margin-right: var(--icon-margin-left);
	border-radius: 0 !important;
}

/* ===================
    accueil
=================== */

.accueil{
	 width: 100vw;
  	height: 55vh;
	background-image: linear-gradient(to bottom left, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0) 73.79%),
	 url("../img/68ca1403-ad7d-4421-a2d7-2ed76213d1ed.webp");
	 background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
}

/* ===================
image header 
=================== */


.banbusiness{
	 width: 100vw;
  	height: 55vh;
	background-image:  url("../img/bannièrebusiness.webp");
	 background-size: cover;
  	background-repeat: no-repeat;
  	background-position: top;	
}

.slpl{
	width: 100vw;
  	height: 55vh;
	background-image: linear-gradient(to bottom left, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0) 73.79%), url("../img/bannièreslpl.webp");
	 background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;	
}

.cgl{
	width: 100vw;
  	height: 55vh;
	background-image:  url("../img/bannièrecgl.webp");
	 background-size: cover;
  	background-repeat: no-repeat;
}

.faq{
	 width: 100vw;
  	height: 55vh;
	background-image:  url("../img/bannièrefaq.webp");
	background-size: cover;
  	background-repeat: no-repeat;
}


/*grilles*/

.produits{
	display: grid;
  	grid-template-rows: auto 1fr; /* Deux rangées : première rangée pour l'élément du haut */
  	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.location{	
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/tesla_heck_ppl_wf05_lay.webp") ;
	grid-column: 1 / -1; /* S'étend sur les deux colonnes */
}

.utilitaires{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/Maxus_eDeliver_3_side_lay.webp");
	grid-row: 2; /* Se positionne dans la deuxième rangée */
  	grid-column: 1; /* Première colonne de la rangée du bas */
}

.business{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/DE_36_Audi_A8_Front_People_Couple_RGB.webp");
	grid-row: 2; /* Se positionne dans la deuxième rangée */
  	grid-column: 2; /* Deuxième colonne de la rangée du bas */
	
}

/* ===================
  textes des produits
=================== */

.text_produits{
	align-self: flex-end;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-bottom: 2rem;
}

.text_produits p{
	color: #ffffff;
	padding-left: 0;	
}

.text_produits h3{
	font-family: 'RobotoCondensed';
	text-transform: uppercase;
	 font-size: clamp(28px, 5vw, 40px);
	text-align: start;
	color: #ffffff;
	padding-left: 0;
}

.btn_produits{	 
  	background-color: transparent; 
  	border: 2px solid white; /* Bordure blanche */
  	border-radius: 50vmax; 
  	color: white;
  	text-align: center; 
  	cursor: pointer; 
	align-items: center;
	justify-content: center;
	padding: 0px 1.5rem;
	height: 2.25rem;
	min-width: 6rem;
	width: auto;
	display: inline-flex
}

.btn_produits a{
	 color: white;
  	text-decoration: none;
	font-family: 'HelveticaNowText';
	text-align: center;
	font-size: 700 0.75rem / 1.5;
}

/* ===================
  caroussel services
=================== */

.grid2 {
   	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
 	gap: 2rem;
}

.grid3 {
 	display: grid;
  	grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  	gap: 2rem;
}


.grid {
  	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  	gap: 2rem;
	padding: 0 10rem;
}

.card-bg{
	border-radius:  var(--image-border-radius);
	background-size: cover;
  	background-repeat: no-repeat;
	background-position: center;
	height: 82vh;
	display: flex;
}

.card-bgbis{
	border-radius:  var(--image-border-radius);
	background-size: cover;
  	background-repeat: no-repeat;
	background-position: center;
	 aspect-ratio: 1 / 1; /* Force les éléments à être carrés */
	display: flex;
}
	

.sixtplus{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/index_sixtplus.webp");
}

.sixtoccasions{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/index_sixtoccasions.webp");
}

.sixtride{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/index_sixtride.webp");
}

.loccourte{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/busloccourt.webp");
}

.locut{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/buslocut.webp");
}

.musicotherapie{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/musicotherapie.webp");
}

.arbre{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/arbredenoel.webp");
}

.mde{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/mde.webp");
}

.fastlane{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/fastlane.webp");
}

.flottepremium{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/flottepremium.webp");
}

.programfid{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/programfid.webp");
}

.soutien{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/soutien.webp");
}

.agence{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/agence.webp");
}

.administration{
	background-image: linear-gradient(rgba(0, 0, 0, 0) 26.21%, rgb(0, 0, 0) 79.8%, rgb(0, 0, 0) 100%), url("../img/administratif.webp");
}

.carousel-controls {
 	display: flex;
  	justify-content: center;
  	gap: 1rem;
  	margin-top: 20px;
  	visibility: hidden; /* Cacher les contrôles par défaut */
}

.dot {
 	width: 0.75rem;
  	height: 0.75rem;
  	border-radius: 50%;
  	background-color: #1a1a1a;
	opacity: 40%;
  	cursor: pointer;
}

.dot.active {
 	background-color: #1A1A1A;
	opacity: 100%
}

/* ===================
    ride
=================== */

.fondride{
	background-color: #272727;
}

.fondride p{
	color: #ffffff;
}

.fondride .flex-row li{
	color: #ffffff;
}

.fondride h2{
	color: #ffffff;
}

.fondride h3{
	color: #ffffff;
}

.fondride section{
	margin: 0;
	padding: clamp(24px, 3.75vw, 72px);
}

.ride{
	 width: 100vw;
  	height: 55vh;
	background-image: linear-gradient(to bottom left, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0) 73.79%), url("../img/bannièreride.webp");
	 background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;	
}

.layoutride{
	max-height: 60%;
	min-height: 30%;
  	display: flex;
  	flex-direction: column;
 	 justify-content: center; /* ou space-between selon le besoin */
	background-color: #1A1A1A;
	align-items: center;
}

.layoutride h1{
	color: #ff5000;
}

.layoutride .subline{
	color: #ffffff;
	font-weight: normal;
}

.colortitre{
	color: #ffffff;
}

.colororange{
	color: #ff5000;
	padding-bottom: 0.5rem;
}

.titres{
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

.warning{
	padding-left: 2rem;
}

/* ===================
   Timeline
=================== */
.timeline {
	position: relative;
  	list-style: none;
  	padding-left: 2rem;
  	margin: auto;
  	max-width: var(--container-max-width);
  	counter-reset: step;
	z-index: 0;
}

.timeline li {
  	position: relative;
  	margin-bottom: clamp(24px, 3vw, 48px);
  	padding-left: 48px;
  	opacity: 0;
  	transform: translateY(20px);
  	transition: all 0.6s ease;
	z-index: 0;
}

/* Cercle numéroté */
.timeline li::before {
  	content: counter(step);
  	counter-increment: step;
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: clamp(28px, 1.67vw, 32px);
  	height: clamp(28px, 1.67vw, 32px);
  	font-size: clamp(20px, 1.25vw, 24px);
  	background-color: #ff5000;
  	color: #ffffff;
  	border-radius: 50%;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	z-index: 1;
  	font-family: 'HelveticaNowDisplay-CnBlk';
}

/* Ligne verticale */
.timeline::after {
	content: "";
  	position: absolute;
  	top: 0;
  	left: 45px;
  	width: 4px;
  	height: 100%;
  	background-color: #ffffff;
  	z-index: -1;
}

/* Révélation */
.timeline li.visible {
  	opacity: 1;
  	transform: translateY(0);
}

.titrecentre{
	text-align: center;
}

.warning{
	padding-left: 2rem;
}

.sixtr{
	background-color: #1e1e1e;
}

.qualite{
	background-color: #1A1A1A;
}

.clients-text{
	text-align: center;
}

.clients{
	margin-left: auto;
    	margin-right: auto;
    
    width: 100%;
	align-self: center;
}

.baseline{
	display: flex;
	-webkit-box-align: baseline;
    	align-items: baseline;
	justify-content: center;
}

.logbase{
	height: 2.5rem;
}

.titrebase{
	font-family: 'HelveticaNowText';
	position: relative;
    	bottom: 0.0625rem;
    	left: 0.5rem;
	font-size: clamp(20px, 3vw, 40px);
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0;
}

.logosclients{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	place-items: center;
	gap: 2rem;
	margin-top: 2.5rem;	
}

.logosclients img {
	width: 100%;
	max-width: 15rem;
	height: auto;
  	display: block;
}

.picto{
	width: clamp(40px, 4.17vw, 80px);
}

/* ===================
  sixt business
=================== */

.table-wrapper {
  	max-width: 100%;
  	overflow-x: auto;
  	padding: 0 10rem;
}


.comparison-table {
  	width: 100%;
  	border-collapse: collapse;
  	margin: 0;
   	font-family: 'HelveticaNowText';
  	color: white; /* Tout le texte en blanc */
}

/* En-tête */
.comparison-table th {
 	font-family: 'HelveticaNowDisplayMedium';
  	color: #fff;
	font-size: 1rem;
  	padding: 15px 20px;
  	text-align: left;
  	text-align: center;
  	border-bottom: 3px solid #fff; /* Bordure plus épaisse entre l'entête et le corps du tableau */
}

/* Corps du tableau */
.comparison-table td {
  	padding: 15px 20px;
	font-size: var(--text-size);;
  	text-align: center;
  	border-bottom: 1.5px solid #fff; /* Bordure horizontale de séparation */
}

/* Pas de bordures verticales et bords extérieurs */
.comparison-table td:first-child, 
.comparison-table th:first-child {
  	border-left: none;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  	border-right: none;
}

/* Suppression des bordures latérales (gauche/droite) */
.comparison-table {
  	border-left: none;
  	border-right: none;
}

.check{
	color: #ff5000;
}

.annotations{
	list-style: none;
	display: flex;
	gap:  2rem;
	font-family: 'HelveticaNowText';
	align-items: center;
	justify-content: center;
}

.annotations li{
	display: inline;
	font-family: 'HelveticaNowDisplayMedium';
	font-size: clamp(10px, calc(10px + (12 - 10) * ((100vw - 320px) / (1280 - 320))), 12px);
	color: #ffffff;
}

/* ===================
 	FAQ
=================== */

.tuiles{
	padding: 0 10rem;
}

.tabs {
      display: flex;
      flex-direction: row;
      justify-content: left;
      padding: 1rem;
}

.tab {
      padding: 1rem 2rem;
      cursor: pointer;
      background-color: #f4f5f6;
      color: #1A1A1A;
      margin-right: 1rem;
      border-radius: 0.5rem 0.5rem 0 0;
      transition: background 0.3s;
}

.tab.active {
	background-color: #1A1A1A;
      	color: white;
}

.faq-container {
	padding: 2rem;
	display: none;
}

.faq-container.active {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.tile {
	background-color: #f4f5f6;
	border-radius: 1rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	padding: 2rem;
	min-height: 11.5rem; /* ≈183px */
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	transition: transform 0.2s;
}

.tile:hover {
	transform: scale(1.02);
}

.question {
	text-align: center;
	font-family: 'HelveticaNowDisplayMedium';
	color: #ff5000;
}

.answer {
	margin-top: 1rem;
	display: none;
	color: #1A1A1A;
	text-align: left;
	font-size: var(--text-size);
	font-family: 'HelveticaNowText';
	line-height: 125%;
    }

.tile.open .answer {
	display: block;
}

/* ===================
 	mockup slpl
=================== */

.feed{
	display: flex;
	justify-content: center;
	align-item: center;
}

.mockup{
	width: 15%;
}

/* ===================
 	Recrutement
=================== */

.heros{
	background-color: #1A1A1A;
	min-height: 548px;
	padding-block: 48px;
	overflow: clip;
	position: relative;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-flow: column wrap;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.box{
	max-width: 1440px;
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
}

.row{
	--bs-gutter-x: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

.align-items-center{
	-webkit-box-align: center !important;
	align-items: center !important;
}

.textcentre{
	text-align: center !important;
}

.row>* {
	-ms-flex-negative: 0;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
	margin-bottom: calc(var(--bs-gutter-x) * .5)
}

.framecontaineur{
	padding-bottom: 0;
	overflow: hidden;
	text-align: center;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape) {	
	.card-bgbis {
		aspect-ratio: auto; 
		height: auto;
		width: 100%;
	}
	
	.card-bgbis .text_produits{
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}	
}

/* === Tablet 600px–1024px === */
@media (min-width: 600px) and (max-width: 1024px) {
	.accueil, .rent, .ride, .slpl{
		height: 25vh;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

.banbusiness{
		height: 40vh;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	.ride{
		background-position: left;
	}
	
	.menu {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		background-color: white;
		width: 100vw;
		height: 100vh;
		gap: 2rem;
		z-index: 999;
		padding: 4rem 2rem;
		transition: all 0.3s ease-in-out;
	}
	
	.menu.active {
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.menu a {
		color: #1A1A1A;
		font-size: 1.5rem;
	}

	.menu-toggle {
		display: flex;
		z-index: 1000;
	}

	.close-menu {
		visibility: visible;
		position: fixed;
		top: 1.5rem;
		right: 2rem;
		font-size: 32px;
		font-weight: bold;
		cursor: pointer;
		color: #1A1A1A ;
	}
	
	.cgl{
		background-position: center;	
	}
	
	.faq{
		background-position: center;
	}

	
	.flex-row > * {
		flex: 1 1 45%; /* espace pour le gap */
	}
	
	.footerrow{
		display: grid;
		grid-template-columns: 1fr 1fr; /* deux colonnes égales */ 
		gap: 2rem;
		margin-top: clamp(24px, 3.75vw, 72px);
		margin-bottom: clamp(24px, 3.75vw, 72px);
	}
	
	.footerrow > div{
		display: flex;
	}
	
	.avantages, .produits{
		display: flex;
		flex-direction: column;
		gap: 3rem;
	}
	
	.conainteur{
		overflow-y: hidden;
	}
	
	.conainteur::-webkit-scrollbar {
		display: none;
	}
	
	.grid2, .grid3 {
		display: flex; /* Passe en flexbox */
		flex-direction: row; /* Éléments en ligne */
		transition: transform 0.3s ease;
		scroll-snap-type: none;
		touch-action: pan-y;
	}
	
	.item {
		flex: 0 0 98%; /* Chaque élément prend 100% de la largeur */
		scroll-snap-align: center; /* Chaque élément s'aligne au début lors du scroll */
		display: flex;
		align-self: flex-end;
		align-items: center;
		box-sizing: border-box;
	}
	
	.carousel-controls{
		visibility: visible
		
	}
	
	.titrebase{
		font-size: 2.125rem;
	}
	
	.choix{
		margin: clamp(24px, 3.75vw, 72px);
		padding: 0;
	}

	.arguments{
		width: 100%;
		flex: 1;
	}
	
	.logosclients{
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		justify-content: center;
		margin-top: 2.5rem;
		gap: 2rem;
		-webkit-box-align: center;
		align-items: center;
	}
	
	.tuiles{
		padding: 0 ;
	}
	
	.faq-container.active {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
    }
	
	.box{
		max-width: 1024px;
	}

	.mockup{
		width: 25%;
	}
}

/* === Tablet portrait === */

@media screen and (min-width: 599px) and (max-width: 1024px) and (orientation: portrait) {
	.grid2{
		gap: 1.5rem;
	}

	.grid3{
		gap: 1rem;
	}

}


@media (min-width: 768px) {
	.col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}
}

/* === Mobile ≤599px === */
@media (min-width: 300px) and (max-width: 599px) {
	.accueil, .rent, .ride, .slpl, .cgl{
		height: 25vh;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	.ride{
		background-position: left;
	}

	.banbusiness{
		height: 40vh;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	.menu {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		background-color: white;
		width: 100vw;
		height: 100vh;
		gap: 2rem;
		z-index: 999;
		padding: 4rem 2rem;
		transition: all 0.3s ease-in-out;
	}
	
	.menu.active {
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.menu a {
		color: #1A1A1A;
		font-size: 1.5rem;
	}

	.menu-toggle {
		display: flex;
		z-index: 1000;
	}

	.close-menu {
		visibility: visible;
		position: fixed;
		top: 1.5rem;
		right: 2rem;
		font-size: 32px ;
		font-weight: bold;
		cursor: pointer;
		color: #1A1A1A;
	}
	
	.cgl{
		background-position: center;	
	}
	
	.faq{
		background-position: center;	
	}
	
	.flex-row,
	.flex-row.reverse {
		flex-direction: column;
	}

	.flex-row > *,
	.flex-row.reverse > * {
		flex: 0 0 100%;
	}

	.flex-row img,
	.flex-row.reverse img {
		border-radius: var(--image-border-radius);
		width: 100%;
		height: auto;
	}

	.flex-btn{
		flex-direction: column;
	}
	
	.bck{
		margin-bottom: 0.5rem;;
	}
	
	.footerrow{
		display: flex;
		flex-direction: column;
		gap: 0.625rem;
		margin-top: clamp(24px, 3.75vw, 72px);
		margin-bottom: clamp(24px, 3.75vw, 72px);
	}
	
	.avantages, .produits{
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
	
	.conainteur{
		 overflow-y: hidden;	
	}
	
	.conainteur::-webkit-scrollbar {
		display: none;
	}
	
	 .grid2, .grid3 {
		display: flex; /* Passe en flexbox */
		flex-direction: row; /* Éléments en ligne */
		transition: transform 0.3s ease;
		scroll-snap-type: none;
		touch-action: pan-y;
		gap: 1rem; /* Espace entre les colonnes (horizontal) */
	}
	
	.grid, .tuiles{
		padding: 0;
	}
	
	.tabs{
		flex-direction: column;
		gap: 2rem;
	}
	
	.faq-container.active {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 2rem;
	}
	
	.item {
		flex: 0 0 98%; /* Chaque élément prend 100% de la largeur */
		scroll-snap-align: center; /* Chaque élément s'aligne au début lors du scroll */
		max-height: 500px; /* Hauteur maximale pour tous les éléments */
		width: 100%;
		display: flex;
		align-self: flex-end;
		align-items: center;
		box-sizing: border-box;
	}
	
	.carousel-controls{
		visibility: visible
	}

	.clients{
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
	
	.choix{
		margin: clamp(24px, 3.75vw, 72px);
		padding: 0;
	}
	
	.arguments{
		width: 100%;
	}
	
	.logbase{
		height: 1.975rem;
	}
	
	.logosclients{
		display: grid;
		margin-top: 2.5rem;
		gap: 1.5rem;
		-webkit-box-align: center;
		align-items: center;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		justify-content: center;
		padding-right: 25%;
		padding-left: 25%;	
	}
	
	.table-wrapper{
		padding: 0;
	}
	
	.box{
		max-width: 599px;
	}

	.col{
		 -webkit-box-flex: 0;
		flex: 0 0 auto;
	}
	
	.mockup{
		width: 25%;
	}	
}
	