
/* TEST BLOC */

@import url('https://fonts.cdnfonts.com/css/noah-head');
*{
	font-family: 'Noah Head', sans-serif;
}  

.page-content{
	
}

.page-content ul{

    list-style: none; /* Supprime les puces par défaut */
    padding-left: 0; /* Supprime le padding par défaut */
}

.page-content ul li::before {
    font-family: "FontAwesome"; /* Utilisation de Font Awesome */
    content: "\f054"; /* Code Unicode de l'icône fa-chevron-right */
    font-weight: 900; /* Style solide */
    font-size: 0.7em; /* Taille de l'icône */
    /* color: inherit; /* Garde la couleur du texte */
    color: #FD7074; 
    margin-right: 8px; /* Espacement entre l'icône et le texte */
}

.test{
	border:1px red solid;
}

.menu-link{
	font-family: 'Noah Head', sans-serif;
	font-weight:400;
}
.accordion-header{
	font-family: 'Noah Head', sans-serif;
	font-weight:400;
}
/* ////////// */
body {
	overflow-x: hidden;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
  }
  
  h2{
	font-size:2.5em;
	
  }
.logo-mobile{
	height:60px!important;
 }


 .fs-sm{
	font-size:0.85em;
 }
 .fs-xs{
	font-size:0.7em;
 }
 .lh-sm{
	line-height:1.1em;
 }

.deux-colonnes {
    column-count: 2; /* Divise le contenu en deux colonnes */
    column-gap: 10px; /* Espace entre les colonnes */
}
.deux-colonnes .item{
	break-inside: avoid!important; 
}
hr{
	opacity:0.9!important;
}
.pointer{
	cursor:pointer;
}

.tooltip-light {
    opacity:1!important;
	--bs-tooltip-bg: #ffffff; /* Couleur de fond clair */
    --bs-tooltip-color: #000000; /* Texte sombre */
    --bs-tooltip-border-color: #dddddd; /* Bordure optionnelle */
    --bs-tooltip-arrow-color: #ffffff; /* Couleur de la flèche */
    border: 1px solid var(--bs-tooltip-border-color); /* Ajoute une bordure subtile */
	
}
.tooltip-auto-w{
	
	padding:5px 10px;
	background-color:white;
	max-width: none !important;
	word-wrap: break-word;
}



@media (max-width: 1000px) {
	.deux-colonnes {
		column-count: 1; 
	
	}
	#logo {
		padding:15px;
	}

	
}
/* LIENS SOULIGNES */
a.souligne {
	font-family: 'Noah Head', sans-serif;
	font-weight:400;
    position: relative;
    text-decoration: none; /* Supprime le soulignement par défaut */
    color: var(--cnvs-themecolor);; /* Couleur du texte du lien */
}

a.souligne::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px; /* Épaisseur de la ligne */
    background-color: var(--cnvs-themecolor); /* Couleur de la ligne */
    transition: width 0.3s ease; /* Animation de l'effet */
}

a.souligne:hover::after {
    width: 100%; /* Fait s'étendre la ligne sur toute la largeur du lien */
}
/* ///////////////////////// */

/* CARD services */
.deplie, .depliegamme {
	
	overflow: hidden;
	max-height: 0;
	transition: max-height 1s ease;
}

/* Affiche l'élément avec effet de dépliement */
.deplie.show {
	max-height: 1000px; /* S'assure que le contenu s'agrandit complètement */
}
.rotate {
	transition: transform 0.3s ease-in;
	transform: rotateY(90deg); /* Rotation à 90 degrés */
}

.rotate-back {
	transform: rotateY(0deg); /* Retour à l'angle normal */
	transition: transform 0.3s ease;
}
.fade {
	transition: opacity 0.3s ease;
	opacity: 0; /* Rendre l'image invisible */
}

.visible {
	opacity: 1; /* Rendre l'image visible */
	transition: opacity 0.3s ease;
}
/* ////////////////////////// */
/* CARD GAMME PRODUIT */
/* ////////////////////////// */
.gamme-prod-card {
    border-radius: 15px;
    overflow: hidden;
	border:1px solid red;
    position: relative;
    width: 100%;
    padding-top: 170%; /* Ratio 10/17 */
    border: none; /* Supprime la bordure */
}

/* Image container to control the zoom within the card */
.card-image {
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card-title {
    margin: 0;
	text-align:left;
	width:100%;
}

.card-title,
.card-description,
.card-detail  {
	font-size:1em!important;
	line-height:1.1em;
}
.gamme-prod-card:hover .card-img {
    transform: scale(1.1); /* Zoom sur l'image seulement */
}

/* Overlay background on hover */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 11, 140, 0.8); /* Couleur bg-primary avec opacité */
    opacity: 0; /* Masqué au repos */
    transition: opacity 0.3s ease-in-out;
    z-index: 1; /* Derrière le texte mais au-dessus de l'image */
}

.gamme-prod-card:hover .overlay {
    opacity: 1;
}

/* Text overlay with title always visible */
.card-text-overlay {
    position: absolute;
	align-items: bottom;
    bottom: 0px;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    color: rgb(0, 11, 140); /* Couleur du titre au repos */
    z-index: 2; /* Au-dessus de l'overlay */
    transition: transform 0.3s ease-in-out, color 0.5s ease-in-out; /* Animation de translation et couleur */
    transform: translateY(0); /* Position de départ du texte */
	cursor:pointer;
}
.gamme-prod-card:hover .card-text-overlay {
    
	transform: translateY(-100px); /* Monte le texte et la description au survol */
    color: #ffffff; /* Texte en blanc au survol */
}

	
	.card-description{
		margin-bottom:0;
	}
	.card-title,
	.card-description,
	.card-detail  {
		font-size:0.8em!important;
		line-height:1.1em;
	}


@media (min-width: 1400px) {
	.card-text-overlay{
		padding:20px!important;
	}
	
}



/* Title and icon container styling */
.title-container {
    display: flex;
    justify-content: space-between; /* Espace entre le titre et l'icône */
    align-items: center; /* Aligne verticalement le texte et l'icône */
	border-bottom :1px solid rgb(0, 11, 140);
	padding-bottom:10px;
}


.far {
    font-size: 1rem; /* Taille de l'icône */
    transition: color 0.3s ease; /* Transition pour la couleur de l'icône */
}
.fa-circle-minus{
	display:none;
}
.fa-circle-plus{
	display:flex;
}

.gamme-prod-card:hover .fa-circle-minus {
	display:flex;
}
.gamme-prod-card:hover .fa-circle-plus {
	display:none;
}
.gamme-prod-card:hover i {
    color: #ffffff!important; /* L'icône devient blanche au survol */
}

/* Title is always visible, description appears on hover */

.card-description,
.card-detail {
    display: none; /* Masqué au repos */
    margin-top: 5px;
	font-size:1em;
	text-align:left;
}
.gamme-prod-card:hover .card-text-overlay{
	bottom: -90px;
}
.gamme-prod-card:hover .title-container{
	border-bottom:1px solid rgb(255, 255, 255);
}

/* Display description and detail text on hover */

.gamme-prod-card:hover .card-description,
.gamme-prod-card:hover .title-container,
.gamme-prod-card:hover .card-title,
.gamme-prod-card:hover .card-detail {
    display: flex; /* Apparait au survol */
	width:100%;
	margin-bottom:5px;
    color: #ffffff; /* Texte en blanc au survol */
}


/* ////////////////// */

 p{
	margin-bottom:10px;
 }
  .container {
	padding: 5rem;
  }
  
  .sticky_parent {
	height: 500vh;
  }
  
  .sticky {
	overflow: hidden;
	position: sticky;
	top: 0;
	height: 100vh;
	border: 1px solid red;
  }
  
  .scroll_section {
	position: absolute;
	top: 0;
	height: 100%;
	width: 500vw;
	will-change: transform;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5vw;
  }
  
  .nowrap{
	white-space:nowrap;
  }
  
  .inter-thin {
	font-family: "Noah Head", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
  }
  .inter-light {
	font-family: "Noah Head", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
  }
  .inter-regular {
	font-family: "Noah Head", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
  }
  .inter-bold {
	font-family: "Noah Head", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
  }
  .inter-black {
	font-family: "Noah Head", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
  }
  
  .roboto-thin {
	font-family: "Roboto", serif;
	font-weight: 100;
	font-style: normal;
  }
  
  .roboto-light {
	font-family: "Roboto", serif;
	font-weight: 300;
	font-style: normal;
  }
  
  .roboto-regular {
	font-family: "Roboto", serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .roboto-medium {
	font-family: "Roboto", serif;
	font-weight: 500;
	font-style: normal;
  }
  
  .roboto-bold {
	font-family: "Roboto", serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .roboto-black {
	font-family: "Roboto", serif;
	font-weight: 900;
	font-style: normal;
  }
  
  .roboto-thin-italic {
	font-family: "Roboto", serif;
	font-weight: 100;
	font-style: italic;
  }
  
  .roboto-light-italic {
	font-family: "Roboto", serif;
	font-weight: 300;
	font-style: italic;
  }
  
  .roboto-regular-italic {
	font-family: "Roboto", serif;
	font-weight: 400;
	font-style: italic;
  }
  
  .roboto-medium-italic {
	font-family: "Roboto", serif;
	font-weight: 500;
	font-style: italic;
  }
  
  .roboto-bold-italic {
	font-family: "Roboto", serif;
	font-weight: 700;
	font-style: italic;
  }
  
  .roboto-black-italic {
	font-family: "Roboto", serif;
	font-weight: 900;
	font-style: italic;
  }

  

  .owl-next::after{
	font-family: "fontawesome";
	content:"\f054";
}
.owl-prev::after{
	  font-family: "fontawesome";
		content:"\f053";
}
.owl-next,.owl-prev{
	background-color:transparent!important;
	color:RGB(255, 114, 118)!important;
}
.owl-next, .owl-prev{
	width:45px!important;
	height:45px!important;
	font-size:1.4em!important;
	line-height:1px!important;
	border-radius:25px!important;
	padding:3px 0px 0px 0px!important;
	text-align:center!important;
	margin-right:-20px!important;
}
.owl-prev{
	margin-left:-20px!important;
}

@media ((max-width: 1530px)) {
	.owl-next, .owl-prev{

		margin-left:0px!important;
		margin-right:0px!important;
	}

}




.outtslider {
	position: relative; /* Position relative pour placer l'image et le texte */
	width: 100%;
	
	min-height: 40vh/* Hauteur fixe ou dynamique selon vos besoins */
}

.outtslider_text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center; /* Centre verticalement le texte */
	justify-content: flex-start; /* Aligne le texte à gauche */
   
	z-index: 1; /* Au-dessus de l'image */
	padding-left: 20px; /* Ajoute un décalage à gauche pour le texte */
}
.outtslider_img{

	height:100%;
	background-size:contain; 
	background-position:right; 
	background-repeat:no-repeat

}
.outtslider_img img {
	position: absolute;
	top: 0;
	right: 0%;
	max-height: 120%;
	max-width: 120%;
	width: auto; /* Garde le ratio de l'image */
	height: auto; /* Garde le ratio de l'image */
	z-index: 0; /* Derrière le texte */
}


.fs-1{
	font-size:3rem!important;
	line-height:1em;
	
}

.outtbulle{
	background-color:white; 
	padding:30px 15px;
	line-height:1.2em;
	font-size:1.8em;
	border-radius:10px ;
	text-align:start; 
	white-space:nowrap;
	
}
#bulledemanderdevis{
	opacity: 0; /* Initialement invisible */
    transition: opacity 0.5s ease-in-out; /* Transition pour le fondu */
	position:fixed;
	z-index:999999999999;
	bottom:20px; 
	left : 20px;
}

#bulledemanderdevis.visible {
    opacity: 1; /* Visible quand la classe visible est ajoutée */
}

.outtbulledevis{
	width:auto;
	max-width:150px;
	font-size:1em;
	line-height:1.1em;
	padding:10px 15px;
	background-color:#FD7074; 
	border-radius:10px ;
	text-align:center; 
}

#pieddepage{
	font-size:0.8em;
	
}
.hidden {
    display: none;
	transition: opacity 0.3s ease;
}

.visible {
    display: block;
	transition: opacity 0.3s ease;
}
.visible-inline {
    display: inline-block;
	transition: opacity 0.3s ease;
}
.oc-clients{
	width:80%;
}
@media ((max-width: 1000px)) {
	.container{
		padding:1rem;
	}
	.oc-clients{
		width:100%;
	}
	.outtslider {
		position: relative; /* Position relative pour placer l'image et le texte */
		width: 100%;
		min-height: 70vh/* Hauteur fixe ou dynamique selon vos besoins */
	}
	.outtslider_img{
		opacity:0.3;
		height:120%;
		background-size:contain; 
		background-position:center; 
		background-repeat:no-repeat
	
	}
	.outtslider_img img {
		position: relative;
		opacity:0.5;
		top: auto;
		right: auto;
		max-height: 100%;
		max-width: 100%;
		width: auto; /* Garde le ratio de l'image */
		height: auto; /* Garde le ratio de l'image */
		z-index: 0; /* Derrière le texte */
	}
	.fs-1{
		font-size:2rem!important;
		line-height:1em;
		
	}

	.flip-card-back{
		display:none;

	}
	.flip-card {
		transform-style:none;
		perspective: 1000px;
		padding:10px;
	  }
	  :has(> .flip-card) {
		padding: 0 !important;
	}
	  .flip-card-front, .flip-card-back {
		height:100%;
	  }
	  .flip-card-front:hover .flip-card-front, .flip-card-front:hover .flip-card-back, .flip-card-back:hover .flip-card-front, .flip-card-back:hover .flip-card-back {
		transition: none!important;
	  }
	  .flip-card:hover .flip-card-front {
		transform:none;
		transform-style: none;
	  }
	  .portfolio-video{
		height:500px;
		padding:10px!important;
	  }
	  /* tous les # qui commencent par #depliegamme_im */
	  [id^="depliegamme_im"]{
		height:100%!important;
	  }
	  .col{
		max-width:50%;
	  }
	  #portfolio_link{
		
		}
		.grid-filter li .gamme_bouton{
			border:1px solid #EFEFEF!important;
			padding:5px;
		}

}
#portfolio_link{
	position:absolute; bottom:40px; left:40px;
}
.accordion-button::after {
    content: "\f055"; /* Unicode Font Awesome pour fa-circle-plus */
    font-family: "Font Awesome 6 Pro"; /* Assure-toi d'avoir bien chargé la police */
    font-weight: 300; /* Light version */
    font-size: 1.2rem;
    color: #FD7074; /* Couleur secondaire */
    background-image: none; /* Désactiver l'icône par défaut */
    transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
}
.accordion-button:not(.collapsed) {
    color: #FD7074!important;
    background-color: transparent!important;
    box-shadow: none!important;
}
/* Pour l'état ouvert de l'accordéon */
.accordion-button:not(.collapsed)::after {
    content: "\f056"; /* Unicode Font Awesome pour fa-circle-minus */
    transform: rotate(0deg); 
}

.jauge {
	padding: 40px;
	box-sizing: border-box; /* pour inclure le padding dans la largeur totale */
  }
.gauge .background {
    fill: #ddd;
}
.jauge text {
	font-size: 30px !important;
	font-weight: 800;
	fill: #003399;
  }

.gauge .value {
    fill: #777;
    font-size: 1.9rem;
    font-weight:800;
}

.gauge .value tspan {
    font-size: 1rem;
   
}

.gauge .scale text {
    fill: #999;
    font-size: 0rem;
}

.surligne {
	font-weight: bold;
	color: #001f7f;
   line-height:1.7em;
   margin-top:-0.7em;
	background: linear-gradient(to top, #F5A5A9 100%, transparent 100%)!important;
	background-repeat: no-repeat!important;
	background-size: 100% 0.6em!important;
	background-position: 5px 15px!important; 
  
	box-decoration-break: clone; /* pour compatibilité multiligne */
	-webkit-box-decoration-break: clone;
  }

