    :root {
      --color-primary: #1e7bc0;
      --color-secondary: #3f4a7c;
       --color-third: #fff;
      --color-text: #555;
      --color-alert: #dd0b0bf6;
    }  
  
  
  html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;

}

h1,h2,h3,h4,h5{
  color:var(--color-primary);
}

h2{
  font-size: 2rem;
}

h3{
  font-size: 1.5rem;
}
h4{
  font-size: 1.2rem;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction:column;
}


main {
  flex: 1 0 auto;
}

/* === FOOTER === */
footer {
  margin-top: auto;
  flex-shrink: 0;
}

.footer {
  background-color: #18476a;
  color: #fff;
  font-size: 0.95rem;
}


.footer-bg {
       position: relative;
        background: linear-gradient(135deg, #2f5fa5 0%, #3f497b 50%, #3a76bd 100%);
    overflow: visible;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}



.footer-top {

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  filter: brightness(1.1);
      width: 20%;
    border-radius: 10px;
}

.footer-about {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}

.footer-title::after {
 content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #78c5ff;
    margin-top: 6px;

}

@media(max-width:992px){
  .footer-title::after {
        margin-left: auto;
    margin-right: auto;
  }
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 5px;
}

    .footer-contact li a {
        color: #fff;
        text-decoration:none;
    }
        .footer-contact li a:hover{
            text-decoration:underline;
        }
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: .9rem;
        }

.footer-links a:hover {
  text-decoration: underline;
 
}

.footer-contact i {
  color: #fff;
  margin-right: 8px;
}

.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #1e7bc0;
}

.footer-bottom {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.85rem;
     
    
    
}
.footer-bottom img {
  height: 25px;
}
.footer-bottom .powered-by {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.9rem;
}

.highlight{     color: #000000;
    
    
  }
    /* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    
   
}

header.menu-top {
    top:-100px
   
    }





   /* MENU*/


/* Style du Menu1 */
.Menu1 {
  text-align: right;
 
}

.Menu1 .nav-link {
  
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}

.Menu1 .nav-link:hover {
  text-decoration: underline;
}
.Menu1 .navbar-nav .nav-link{ color:rgb(0, 0, 0)!important;} 
/* Style du Menu2 */
.Menu2 .navbar-nav {
display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(67, 73, 123, 0.95);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.39);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding-right: 30px;
    padding-left: 15px;
  
    margin-top: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}



@media(max-width:1325px) {
  .Menu2 .navbar-nav{
     margin-top: 60px;
  }
  
}

.Menu2 .nav-link {
  font-weight: 500;
  text-decoration: none;
}

.Menu2 .nav-link:hover {
  color: #1e7bc0;
}
.navbar {
  /*  background: transparent !important;*/
 
  position: relative;
  z-index: 20;

  


 
}

.navbar-brand {
  color: #ffffff !important;
   font-size: 2.2rem;
 display: flex;        
   align-items: center; /* centre verticalement image + texte */
  gap: 8px; /* petit espace entre le logo et le texte */
}
.navbar-brand img{    
  height: 40px;
    border: 1px solid #fff;
    border-radius: 5px;
  
  }
  .navbar-nav > .nav-item {
  position: relative;
}
.navbar-nav > .nav-item:hover {
    z-index: 1000;
}

.navbar-nav > .nav-item > .nav-link {
  
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 16px;
  transition: color 0.3s ease;


}

@media(max-width:992px){
  .navbar-nav > .nav-item > .nav-link {
    font-size: 1rem;
     padding: 5px 12px;
  }
}

@media(max-width:880px){
  .navbar-nav > .nav-item > .nav-link {
 
     padding: 5px 3px;
  }
}

.nav-item .nav-link {
  display: inline-flex;
  align-items: center;  /* centre verticalement les éléments internes */
  gap: 6px;             /* espace entre le texte et le bouton DCL */
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-nav > .nav-item > .nav-link:hover {
    color: var(--color-secondary)!important;
    background-color: var(--color-third);
    border-radius: 10px;
}

@media(max-width:768px){
.navbar-nav > .nav-item > .nav-link:hover {
      padding-left: 10px;
}

}

.navbar .nav-link.active {
    color: var(--color-secondary)!important;
    background-color: var(--color-third);
    border-radius: 10px;
}

.subMenu .nav-link.active {
  
    border-radius: 0px;
}


.Menu2{ position: relative;}

/* === Sous-menu === */
.navbar-nav .subMenu {
      position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #444980;
    border-radius: 6px;
       box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
  visibility:hidden;

    z-index: 99;

   /*opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;*/
}

/* affiche le sous-menu au survol */
.navbar-nav .nav-item:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* items du sous-menu */
.navbar-nav .nav-item ul li {
  width: 100%;
}

.navbar-nav .nav-item ul li a {
  display: block;
  padding: 10px 16px;
  color: var( --color-third);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.navbar-nav .nav-item ul li a:hover {
  background-color: #e6ebef;
  color: #2c4b77;
  padding-left: 22px;
}


.navbar .nav-item a{ color: var( --color-third); font-size: 1rem;}

/*Langue*/
.custom-select {
    position: relative;
 
    background: #1e7bc0;
    color: #162936;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 5px;
 
}

.custom-select .selected {
    padding: 4px 6px

}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1e7bc0;

  border-radius: 6px;
  display: none;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.custom-select .options li {
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-select.open .options {
  display: block;
}



/* === HERO SECTION === */
.hero {
  position: relative;
 gap: 4%;
}


.hero h2{
  color: var(--color-third);
}
/* Colonne gauche */
.hero-left {
     background-color: #1e7bc0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom-right-radius: 60px;
   
    min-height: 400px;

}

@media(min-width:2000px)
{
  .hero-left {

   border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  
}
}

@media(max-width:1300px)
{
.hero-left {
    
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    
   margin-top: 153px;
}
}

@media(max-width:992px)
{
.hero-left {
    
  
   margin-top: 145px;
}
}

@media(max-width:768px)
{
.hero-left {
    
  
   margin-top: 90px;
}
}



.hero-left .content {
  max-width: 500px;
   text-align: center;
   padding: 20px;

}

@media(max-width:1150px)
{
.hero-left .content h2{
font-size: 1.5rem;

}
.hero-left .content p{
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-left .content .btn-primary{
  font-size: 1rem;
}
}
.hero-title-breadcrumb{ 
  position: absolute;
  background-color:var(--color-primary);
  text-align: left;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  border-bottom-right-radius: 20px;
  z-index: 1;
}
.hero-title-breadcrumb h1{
    font-size: 1.5rem;
  color:var(--color-third);

}

.hero-title{ 
  position: absolute;
  background-color:#fff;
  text-align: left;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  border-bottom-right-radius: 20px;
  z-index: 1;
}

@media(min-width:2000px){
  .hero-content{ 
    margin-left: 5%;
  }
 
}

@media (max-width: 767.98px) {
  .hero-title,.hero-title-breadcrumb {
    display: none;
  }
}

.hero-title img, .hero-title-breadcrumb img{ 
 height: 40px;
    border-radius: 5px;
    margin-right: 5px;
   
}
.hero-title h1{
  color:var(--color-primary);
  font-size: 1.5rem;
}

@media(max-width:1300px)
{
.hero-title{ 
   background-color:var(--color-primary);
}
.hero-title h1{
  color:var(--color-third);

}
}




.content-breadcrumb {
  position: relative;
  margin-top: 155px;
  height: 300px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

}
.content-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); 
  z-index: 1;
  pointer-events: none;
}

.content-breadcrumb .content-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb-back2 {
  
     background-image: url("/images/devClientFemme.png"), url("/images/devClientFond.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: contain, cover;
}

@media(max-width:768px)
{
.breadcrumb-back2 {
     background-size: cover, cover;
}
}

.breadcrumb-back3 {
  
     background-image: url("/images/breadCrumb-pompe2c.webp"), url("/images/breadCrumb-fond2.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: contain, cover;
}

@media(max-width:768px)
{
.breadcrumb-back3 {
     background-size: contain, cover;
}
}

.breadcrumb-back4 {
  
     background-image: url("/images/fond-route.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size:  cover;
}

@media(max-width:768px)
{
.breadcrumb-back4 {
     background-size: cover;
}
}





@media(max-width:992px)
{
.content-breadcrumb {
    margin-top: 145px;
}
}


@media(max-width:768px)
{
.content-breadcrumb {
    margin-top: 105px;
}
}

/* VIDEO BACKGROUND */
.content-breadcrumb .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CONTENU */
.content-breadcrumb .content-inner {
  display: flex;
   flex-direction: column;
   height: 100%;
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}
.breadCrumb-title h1{
    width: fit-content;
    color:var(--color-third);
  background-color: rgb(0, 0, 0,.5);
font-size: 1.7rem;
    font-weight: 300;
padding-top: 10px;
padding-bottom: 10px;
    padding-right: 20px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  position: relative;

}

.breadCrumb-title h1::after{
  content: "";
  position: absolute;
  top:0px;
  left: -50px;
  width: 50px;
  height: 100%;
  background-color: rgb(0, 0, 0,.5);

  z-index: 1;
 
}
.breadCrumb-link {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.breadCrumb-link ul {
  position: relative;
  margin: 0;
  padding: 8px 20px 8px 24px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-third);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.breadCrumb-link ul::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24px;   /* déborde à droite */
  width: 24px;    /* largeur de l’extension */
  background-color: var(--color-third);
}

.breadCrumb-link ul li {
  display: inline-flex;
  align-items: center;
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 500;
}
.breadCrumb-link .iconeBreadCrumb{
  color:var(--color-primary);
    
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    vertical-align: -.17em!Important;
}

.breadCrumb-link ul li a {
    color: var(--color-secondary);
    text-decoration: none;
}
  
.partners{
background-color: #1e7bc0;
}

/* Colonne droite */
.hero-right {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  padding-top: 100px;
}

@media(max-width:1325px) {
  .hero-right {
    padding-top: 140px;
  }
}

.hero-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media(max-width:992px) {
 .hero-right img {
  padding-top: 40px;
    max-width: 70%;
  }
}

.hero-card-bg {
       position: relative;
    background: linear-gradient(135deg, #2f5fa5 0%, #3a76bd 50%, #6aa3ff 100%);
    overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}




.hero-card-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%
    );
    transform: rotate(8deg);
}


.hero-card-bg::after {
       content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}
.hero-card-bg::before,
.hero-card-bg::after {
    pointer-events: none;
}


/* Responsive */
@media (max-width: 767px) {
  .hero-left, .hero-right {
    justify-content: center;
    text-align: center;
  }

  .hero-right img {
    width: 90%;
    margin-left: auto;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-left, .hero-right {
    flex: none;
   
  }
  .hero-right {
    padding-top: 0;
  }
}


/*Footer*/
footer{ background-color: #000; color:#fff;}


/* === Boutons DCL === */

.btn-dcl {
  display: inline-block;
  font-weight: 600;
  text-transform: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary{
    padding: 10px;
    background-color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    color: #40497c;
    border-radius: 10px;
        border-color: transparent;

}

.btn{
  transition: transform .25s ease;
}

.btn:hover{
  background-color: var(--color-secondary);
border-color: transparent;

transform: scale(1.03);
}
/* === BOUTON STYLE DCL === */
.btn-dcl-logo {
 position: relative;
    display: inline-block;
    background-color: #e6ebef;
    color: #2c4b77;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    /* padding: 14px 40px; */
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    border: none;
    overflow: hidden;
    transition: all 0.3s 
ease;
    border: 1px solid #fff;

     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Bandes bleues haut et bas */
.btn-dcl-logo::before,
.btn-dcl-logo::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px; /* épaisseur de la bande */
  background-color: #1e7bc0;
  transition: all 0.3s ease;
}

.btn-dcl-logo::before {
  top: 0;
}

.btn-dcl-logo::after {
  bottom: 0;
}

/* Effet hover : légère ombre et texte inversé */
.btn-dcl-logo:hover {
 /* background-color: #1e7bc0;
  color: #fff;*/
 /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);*/
}

.btn-dcl-logo:hover::before,
.btn-dcl-logo:hover::after {
 /* background-color: #2c4b77;*/
}

/*menu lien DCL*/


.menu-bg {
       position: relative;
        background: linear-gradient(135deg, #2f5fa5 0%, #3f497b 50%, #3a76bd 100%);
    overflow: visible;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}


.menu-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%
    );
    transform: rotate(8deg);
}



.menu-bg::before {
    pointer-events: none;
    z-index: 0;
}

.menu-bg > li {
    position: relative;
    z-index: 2;
}


/*sub menu*/

.subMenu-bg {
       position: relative;
        background: linear-gradient(135deg, #2f5fa5 0%, #3f497b 50%, #3a76bd 100%);
    overflow: visible;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}




.subMenu-bg > li {
    position: relative;
    z-index: 2;
}


.btn-dcl-menu {
    position: relative;
    display: inline-block;
    background-color: #e6ebef;
    color: #2c4b77;
    font-weight: 700;
    font-size: 1.2rem;
    /* text-transform: uppercase; */
    text-decoration: none;
    /* padding: 14px 40px; */
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    border: none;
    overflow: hidden;
    transition: all 0.3s 
ease;
    border: 1px solid #fff;


 display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  

}

/* Bandes bleues haut et bas */
.btn-dcl-menu::before,
.btn-dcl-menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px; /* épaisseur de la bande */
  background-color: #1e7bc0;
  transition: all 0.3s ease;
}

.btn-dcl-menu::before {
  top: 0;
}

.btn-dcl-menu::after {
  bottom: 0;
}

/* Effet hover : légère ombre et texte inversé */
.btn-dcl-menu:hover {
 /* background-color: #1e7bc0;
  color: #fff;*/
 /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);*/
}

.btn-dcl-menu:hover::before,
.btn-dcl-menu:hover::after {
 /* background-color: #2c4b77;*/
}


.shadow-sm {
    box-shadow:none!important;
}

/*Avantages */
.section-features {
 /* background-color: #f6f6f6;*/
  background-color: #ffffff !important;
  position: relative;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  position: relative;
}

@media(max-width:550px){
    .section-title {
      
        font-size: 1.5rem;
       
    }
}

.feature-box {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 280px;
  margin-bottom: 40px;
}

.feature-box h5 {
  font-weight: 700;
  color: var(--color-primary); 
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.feature-box-right {
  padding-left: 20px;
}

.feature-number {

    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 1;
    line-height: 1;
    background-color: var(--color-primary); 
    border-radius: 10px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    
}

@media(max-width:1400px){
.feature-number {
 font-size: 2.0rem;
}
}

@media(max-width:992px){
.feature-number {
 font-size: 1.5rem;
}
}

.text-md-start .feature-number {
  left: -80px;
  right: auto;
  
}

.feature-image-wrap {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  
}




.feature-image {
    width: 100%;
    height: auto;
    /* transform: rotate(3deg); */
    /* border: 8px solid #1e7bc0; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); */
 

}


.text-md-start {
        
        padding-left: 45px;
    }


/* === SECTION MAP === */
.section-map {
  background-color: #ffffff;
  position: relative;
  /*padding-bottom: 0px !important;*/
}

.section-map .section-title {
  color: #1e7bc0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

/* === SECTION PARTENAIRES === */
.section-partners {
  background-color: transparent;
  position: relative;
  display: flex;
  justify-content: center;
}

.partners-box {
    background-color: #1e7bc0;
    color: #fff;
    border-radius: 20px;
    width: 99%;
    /* max-width: 1200px; */
    padding: 50px 30px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.partners-box h2 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.partners-box p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
  color: #f9f9f9;
}

.partners-logo{
 /*height: 60px;*/
    margin-top: 30px;
}

.partners-logo img {  width: 7%;
padding-right: 2%;}

.section-subtitle {
  color: #555;
  font-size: 16px;
 /* max-width: 650px;*/
  margin: 0 auto 20px auto;
}

.map-search-box {
  max-width: 600px;
  margin: 0 auto;
}



/* === SECTION questions === */
.section-ask {
  background-color: #ffffff;
  position: relative;
  padding-bottom: 1rem !important;
    color: #1e7bc0;
}

.section-ask .section-title {
  color: #1e7bc0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-ask .section-subtitle2 {
  color: #555;
  font-size: 16px;
  max-width: 85%;
  margin: 0 auto 20px auto;
}
/* === SLIDER QUESTIONS === */
.section-faq-slider {
    background-color: #ffffff;
  position: relative;
  overflow: hidden;
      padding-bottom: 30px;
}

.faq-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px 10px;
  scrollbar-width: none; /* masque la scrollbar */
}

.faq-slider::-webkit-scrollbar {
  display: none;
}

.faq-slide {
  flex: 0 0 300px;
  background-color: #1e7bc0;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-decoration: none;
}


.faq-slide h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.faq-slide p {
  font-size: 0.95rem;
  color: #e9f2f9;
  padding-bottom: 10px;
}

.faq-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.faq-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-faq {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1e7bc0;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.btn-faq:hover {
  color: #2a579b;
  transform: scale(1.1);
}

#searchCity::placeholder {
  color: #6c757d; /* gris clair élégant */
 
  opacity: 1; /* pour que la couleur soit bien visible */
  letter-spacing: 0.3px;
  font-size: 16px;
}


/* ===== Header mobile  ===== */
.header-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.mobile-brand img {
  height: 42px;
  width: auto;
  border-radius: 6px;

}

.mobile-brand span {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-secondary);
  white-space: nowrap;
}

@media(max-width:550px){
  .mobile-brand span {
      font-size: 1.1rem;
  }
    .mobile-brand img {
       display:none;
    }
}

.mobile-lang {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: 0;
  padding: 6px 8px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* ===== Desktop ===== */
@media (min-width: 768px) {
  .header-mobile-row {
    display: block;
  }

  .mobile-brand {
    display: none;
  }

  .mobile-lang {
    display: none;
  }
}

/* ===== Mobile ===== */
@media (max-width: 767.98px) {
  header {
  /*  background: #f3f4f6;*/
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
          background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)!important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2)!important;
  }

  .header-mobile-row {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-brand {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-lang {
    order: 3;
  }

    #mainNav {
        order: 4;
        width: 100%;
        align-items: stretch;
        margin-top: 12px;
        margin-right: -20px;
    }

  @media (min-width: 768px) {
  #mainNav {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
}

  .Menu2 {
    width: 100%;
  }

  .Menu2 .navbar-nav {
    width: 100%;
    margin-top: 0;
    padding: 18px 20px;
    border-radius: 20px 0 0 20px;
    align-items: flex-start;
    gap: 10px;
  }

  .Menu2 .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav > .nav-item > .nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.25rem;
    padding: 10px 0;
  }

  .navbar .nav-link.active {
    display: inline-flex;
    width: auto;
    padding: 8px 14px;
  }

  .custom-select {
    min-width: 62px;
    text-align: center;
            margin-right: 10px;
  }

  /* on masque les doublons mobile */
  .Menu2 .navbar-nav > .nav-item:last-child {
    display: none;
  }

  /* sous-menu mobile */
  .navbar-nav .subMenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 100%;
    margin-top: 6px;
    display: none;
    box-shadow: none;
    background: rgba(255,255,255,0.08);
  }

  .navbar-nav .nav-item:hover > .subMenu {
    display: block;
  }

  .navbar-nav .subMenu li a {
    padding: 8px 12px;
    font-size: 1rem;
  }
}

.Menu2 .navbar-nav {
  transition: transform 0.5s ease;
}

.Menu2 .navbar-nav.menu-scrolled {
  transform: translateY(-90px);

}

@media(max-width:1325px)
{
.Menu2 .navbar-nav.menu-scrolled {
  transform: translateY(-135px);
}
}


/*Hp animation aiguille*/


.jauge-wrapper {
    width: 100%;
    max-width: 343px;
    aspect-ratio: 343 / 196;
    margin: 0 auto;
}

@media(max-width:768px){
.jauge-wrapper {
  display: none;
}

}

.jauge {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-image: url("/images/compteur-fond.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.aiguille {
    position: absolute;
    bottom: 7.65%;
    left: 13.12%;
    width: 39.07%;
    height: 22.45%;

    transform-origin: 95% 85%;
    transform: rotate(0deg);
   

    background-image: url("/images/compteur-aiguille.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* animation HP aiguille compteur */

.startAiguille.animate{
 animation: animAiguille 2s ease-out forwards;
}

@keyframes animAiguille {
  from {
    transform: rotate(0deg);
  }
  to {
  transform: rotate(150deg);
  }
}



@media (max-width: 767.98px) {
  .feature-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-row .feature-box {
    max-width: 100%;
    text-align: center;
  }

  .feature-row .feature-number {
    display: none;
    
  }
}



.partners-bg {
       position: relative;
    background: linear-gradient(135deg, #2f5fa5 0%, #3a76bd 50%, #6aa3ff 100%);
    overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}




.partners-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%
    );
    transform: rotate(8deg);
}


.partners-bg::after {
       content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}
.partners-bg::before,
.partners-bg::after {
    pointer-events: none;
}





.box {
transition: transform .25s ease, box-shadow .25s ease;
  min-height: 250px;
   
    background-color: #1e7bc0;
    color: var(--color-third);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); 
    text-align: center;
    padding: 20px;
    padding-top: 10px;
  
}


.box:hover {
  transform: translateY(-6px);

}
.amt .col-lg-4:nth-child(2) .box:hover {
  transform: translateY(-24px);

}

@media(max-width:992px){
.amt .col-lg-4:nth-child(2) .box:hover {
  transform: translateY(-8px);
 
}
}

.choice-card span{
  color:var(--color-secondary)
}
.choice-card strong{
  color:var(--color-secondary);
  
}

.box p,.box ul, .choice-card ul{
  
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
}
.box ul, .choice-card ul{
  padding-left: 0;

  list-style: none;
}


    .box ul li, .choice-card ul li {
        list-style: none;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #d5d5d5;
    }

.box h2,.box h3, .choice-card h2{
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  color:var(--color-secondary);
}
.box h2::before,.box h3::before{
     content: "";
    position: absolute;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    background:var(--color-third);
    z-index: -1;
    top:-20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
}

.box-bg {
       position: relative;
    background: linear-gradient(135deg, #2f5fa5 0%, #3a76bd 50%, #6aa3ff 100%);
    overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.box-T2{
  min-height:300px;
}
.box-T3{
  min-height:270px;
}
@media(max-width:1200px){
  .box-T2{
  min-height:400px;
}
}

@media(max-width:992px){
  .box-T2{
  min-height:auto;
}
}


.box-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%
    );
    transform: rotate(8deg);
}


.box-bg::after {
       content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}
.box-bg::before,
.box-bg::after {
    pointer-events: none;
}
.store{
  height: 50px;
  padding-bottom: 10px;
}
.store2{
  height: 80px;
  padding: 10px;
}

.amt .col-lg-4:nth-child(2) .box {
  transform: translateY(-16px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
@media(max-width:992px){
  .amt .col-lg-4:nth-child(2) .box {
  transform: translateY(0px);
 
}
}
#map img{
  width: 100%;
}

.faq-slide .bi{
  display: block;
  padding-bottom: 10px;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.5));
}

.faq-slide span{
   display: inline-block;
    color: #fff;
    font-weight: 600;
    background-color: #435083;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
      transition:transform 0.2s ease;
}
.faq-slide span:hover{
  
 transform: scale(1.1);

}

.btn-faq:disabled {
  opacity: 0.35;
  cursor: default;
}


.newCard-cta .background {
  height: 350px;
  background-color: var(--color-primary);
  color:#fff;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  background-image: url("/images/carte-promo.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
        padding-top: 20px;

}
.newCard-cta h2{
  color:var(--color-third);
}
@media(max-width:550px)
{
    .newCard-cta h2 {
        font-size: 1.3rem!Important;
    }
}
.newCard-cta p{
  display: block;
  font-size: 1.2rem;
}
@media(max-width:550px) {
    .newCard-cta p {
      
        font-size: 1rem;
    }
}


    .newCard-cta .background2 {
        height: 300px;
        background-color: var(--color-primary);
        color: #fff;
        border-top-left-radius: 35px;
        border-bottom-left-radius: 35px;
        background-image: url("/images/contact.webp");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .newCard-cta .content {
        padding-left: 30px;
        padding-top: 10px;
        font-size: 2rem;
        font-weight: 500;
    }

    /*formulaire step 1*/
    /* ===== Formulaire en ligne DCL ===== */
    .dcl-form {
        color: var(--color-secondary);
    }

    .form-intro {
        color: #4f4f4f;
        font-size: 1.05rem;
        max-width: 950px;
        line-height: 1.7;
    }

    .dcl-form-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        border-top: 6px solid var(--color-primary);
    }

    .dcl-form-title {
        color: var(--color-primary);
        font-size: 1.45rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .dcl-form .form-label {
        font-weight: 600;
        color: var(--color-secondary);
        margin-bottom: 8px;
    }

        .dcl-form .form-label span,
        .dcl-table th span {
            color: var(--color-alert);
        }

    .dcl-table th p {
        color: var(--color-third);
        font-weight: 400;
        font-size: .9rem;
    }

    .dcl-form .form-control,
    .dcl-form .form-select {
        border-radius: 10px;
        border: 1px solid #d5ddea;
        padding: 12px 14px;
        min-height: 48px;
        box-shadow: none;
    }

        .dcl-form .form-control:focus,
        .dcl-form .form-select:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 0.15rem rgba(30, 123, 192, 0.15);
        }

    .dcl-form-card .dcl-info-box {
        color: var(--color-third);
    }

    .dcl-form-card .text-danger {
        display: block;
        padding-bottom: 1rem;
    }

    .dcl-check-group {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
        padding-top: 8px;
    }

    .dcl-info-box {
        background: var(--color-primary);
        border-radius: 12px;
        padding: 18px 20px;
    }

    .dcl-small-note {
        font-size: 0.95rem;
        color: #667085;
        display: block;
    }

    .dcl-table {
        border-collapse: separate;
        border-spacing: 0;
        overflow: hidden;
        border-radius: 14px;
    }

        .dcl-table thead th {
            background: var(--color-primary);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            vertical-align: middle;
            border: none;
            border-right: 1px solid var(--color-third);
            vertical-align: top;
        }

        .dcl-table tbody td {
            background: #fff;
            vertical-align: middle;
            padding: 12px;
            border-bottom: 1px solid #e8eef6;
        }

        .dcl-table tbody tr:last-child td {
            border-bottom: none;
        }

        .dcl-table .form-control {
            min-width: 180px;
        }

    .dcl-consent {
        background: #f8fafc;
        border-radius: 12px;
        padding: 16px 18px;
        border: 1px solid #e5e7eb;
        padding-left: 40px;
    }

    .dcl-form-actions {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    @media (max-width: 991.98px) {
        .dcl-form-card {
            padding: 22px;
        }

        .dcl-form-title {
            font-size: 1.25rem;
        }

        .dcl-check-group {
            gap: 15px;
        }
    }

    @media (max-width: 767.98px) {
        .form-intro {
            font-size: 1rem;
        }

        .dcl-form-card {
            padding: 18px;
            border-radius: 14px;
        }

        .dcl-form-title {
            font-size: 1.15rem;
            margin-bottom: 18px;
        }

        .dcl-table thead th,
        .dcl-table tbody td {
            font-size: 0.9rem;
        }
    }

    .form-label-gap1 {
        margin-bottom: 0px !Important;
    }

    .dcl-form-title-gap1 {
        margin-bottom: 10px !Important;
    }


    .btn-secondary {
        display: inline-block;
        color: #fff;
        font-weight: 600;
        background-color: var(--color-secondary);
        padding: 10px;
        border-radius: 20px;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .btn-cookie {
        display: inline-block;
        color: #fff;
        font-weight: 600;
        background-color: var(--color-primary);
        padding: 10px;
        border-radius: 20px;
        text-decoration: none;
        transition: transform 0.2s ease;
        border: none;
    }


        .btn-cookie:hover {
            transform: scale(1.03);
        }


    .modal-header2 {
        display: block;
        padding-top: 20px;
        padding-right: 20px;
    }

        .modal-header2 .btn-container {
            text-align: right;
            width: 100%;
        }

        .modal-header2 .modal-title {
            display: block;
            text-align: center;
        }

            .modal-header2 .modal-title h3 {
                color: var(--color-primary);
                font-size: 1.3rem;
                padding-bottom: 10px;
            }

            .modal-header2 .modal-title p {
                margin: 0px;
                font-weight: 500;
            }

    @media (min-width: 992px) {
        .modal-lg, .modal-xl {
            --bs-modal-width: 80%;
        }
    }


    .modal-body h4 {
        color: var(--color-primary);
        font-size: 1rem;
    }

    .modal-body h5 {
        color: var(--color-primary);
        font-size: 0.9rem;
        margin: 0px !important;
    }

    .modal-body p {
        font-size: .9rem;
        text-align: justify;
    }

    .steps {
        display: flex;
        width: fit-content;
        background-color: var(--color-primary);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        color: var(--color-third);
        align-items: center;
        padding-right: 20px;
        padding-left: 10px;
    }

    @media(max-width:768px) {
        .steps {
            padding-right: 0px;
            padding-left: 0px;
        }
    }

    .steps a {
        color: var(--color-third);
        text-decoration: none;
    }

    .steps .step {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 10px;
    }

    @media(max-width:768px) {
        .steps .step {
            font-size: 0.9rem;
            font-weight: 500;
            padding: 5px;
        }
    }

    .steps .radius {
        width: 20px;
    }

    @media(max-width:768px) {
        .steps .radius {
            width: 10px;
        }
    }

    .step.active, .steps .radius.active {
        background-color: #3294df;
        margin-top: 5px;
        border-radius: 5px;
        border: 1px solid #62b7f8;
    }

    .steps .step span {
        display: block;
        font-size: 0.9rem;
    }

    #step-form3 p {
        font-weight: 500;
        font-size: 1.1rem;
    }


    .choice-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .choice-title {
        color: var(--color-primary);
        font-size: 1.7rem;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .choice-intro {
        max-width: 850px;
        margin: 0 auto;
        color: var(--color-text);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .choice-card {
        background: #fff;
        border-radius: 22px;
        padding: 35px 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-top: 6px solid var(--color-primary);
        text-align: left;
        transition: transform .25s ease, box-shadow .25s ease;
        height: 100%;
    }

    .choice-card-actu {
        padding: 15px 30px;
        padding-bottom: 30px !important;
    }

    .choice-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .choice-card-icon {
        width: 62px;
        height: 62px;
        border-radius: 16px;
        background: linear-gradient(135deg, #2f5fa5 0%, #3a76bd 50%, #6aa3ff 100%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #fff;
        font-size: 1.6rem;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .choice-card h2 {
        color: var(--color-primary);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .choice-card h4 {
        color: var(--color-secondary);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .choice-card p {
        color: var(--color-secondary);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
        min-height: 84px;
    }

    .choice-card .btn {
        min-width: 260px;
    }

    @media (max-width: 991.98px) {
        .choice-card {
            padding: 28px 22px;
            text-align: center;
        }

            .choice-card p {
                min-height: auto;
            }

            .choice-card .btn {
                min-width: auto;
                width: 100%;
            }
    }

    .avantages ul {
        list-style: none;
        padding-left: 0;
    }

        .avantages ul li {
            position: relative;
            padding-left: 30px;
            padding-bottom: 15px;
        }

            .avantages ul li::before {
                content: "\f26e";
                font-family: "bootstrap-icons";
                position: absolute;
                left: 0;
                top: -10px;
                color: var(--color-primary);
                font-size: 2rem;
            }

    .questRep {
        padding-bottom: 30px;
    }

        .questRep .container {
            width: 80%;
        }

    .dcl-faq-accordion {
        margin-top: 10px;
    }

        .dcl-faq-accordion .accordion-item {
            border: none;
            border-radius: 18px !important;
            overflow: hidden;
            margin-bottom: 18px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        }

        .dcl-faq-accordion .accordion-button {
            background: #fff;
            color: var(--color-primary);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 22px 24px;
            box-shadow: none;
        }

            .dcl-faq-accordion .accordion-button:not(.collapsed) {
                background: #fff;
                color: var(--color-primary);
                box-shadow: none;
            }

            .dcl-faq-accordion .accordion-button:focus {
                box-shadow: 0 0 0 0.15rem rgba(30, 123, 192, 0.15);
                border-color: transparent;
            }

            .dcl-faq-accordion .accordion-button::after {
                filter: hue-rotate(180deg);
            }

        .dcl-faq-accordion .accordion-body {
            padding: 0 24px 24px 24px;
            color: var(--color-text);
            font-size: 1rem;
            line-height: 1.8;
            background: #fff;
        }

    @media (max-width: 767.98px) {
        .dcl-faq-accordion .accordion-button {
            font-size: 1rem;
            padding: 18px 18px;
        }

        .dcl-faq-accordion .accordion-body {
            padding: 0 18px 18px 18px;
            font-size: 0.95rem;
        }
    }

    .dcl-faq-accordion .accordion-button:not(.collapsed) {
        box-shadow: none !important;
        border-bottom: none !important;
    }


    /* ===== Contact page ===== */
    .contact .dcl-form-card {
        height: 100%;
    }

    .dcl-textarea {
        min-height: 160px;
        resize: vertical;
    }

    .contact-info-card {
        position: sticky;
        top: 180px;
    }

    .contact-info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .contact-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 22px;
            color: var(--color-secondary);
        }

            .contact-info-list li:last-child {
                margin-bottom: 0;
            }

        .contact-info-list i {
            width: 46px;
            height: 46px;
            flex: 0 0 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--color-primary);
            color: #fff;
            font-size: 1.1rem;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
        }

        .contact-info-list strong {
            color: var(--color-primary);
            font-size: 1rem;
        }

        .contact-info-list a {
            color: var(--color-secondary);
            text-decoration: none;
            font-weight: 500;
        }

            .contact-info-list a:hover {
                text-decoration: underline;
            }

    @media (max-width: 991.98px) {
        .contact-info-card {
            position: static;
        }
    }

    .ul-RGPD {
        list-style: none;
    }

    .cookies-page .btn-primary {
        text-decoration: none;
        background-color: var(--color-primary);
        color: var(--color-third);
        border-radius: 20px;
        padding: 15px;
        font-size: 1.2rem;
        transition: transform .25s ease;
    }


    .cookies-page h2 {
        font-size: 2.3rem;
    }

    .cookies-page .cookieRow .col-text {
        flex: 1;
    }

    .cookies-page .cookieRow .col-title {
        flex: 0 0 30%;
    }

    .cookies-page .col-title h2 {
        font-size: 1.2rem;
        color: var(--color-secondary);
    }

    .form-switch .form-check-input:checked {
        background-color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }

    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        color: #fff;
        padding: 1rem 2rem;
        display: none;
        z-index: 9999;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(9px);
        background-color: rgba(0, 0, 0, 0.58)
    }

    .cookie-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 1200px;
        margin: 0 auto;
        color: #ffffff;
        font-weight: 500;
    }

        .cookie-content a {
            color: #ffffff;
            text-decoration: underline;
        }

    .btn-cookie.accept {
        background-color: var(--color-primary);
        color: var(--color-third);
    }

    .btn-cookie.decline {
        color: #ffffff;
        background-color: var(--color-secondary);
    }

    .actualites h2 {
        font-size: 2rem;
        margin-bottom: 0px;
        padding-bottom: 5px;
    }

    .actualites img {
        width: 70%;
        border-radius: 20px;
    }

    .actualites .choice-card p {
        margin-bottom: 20px;
        min-height: 0px;
        font-size: 1.2rem;
    }


    /*map stations*/
    .hpMap {
        z-index: 0;
        height: 450px;
        width: 100%;
        border-top: 1px solid #1e7bc0;
        border-bottom: 1px solid #1e7bc0;
    }

    .map-filters {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

        .map-filters input {
            flex: 1;
            padding: 8px 12px;
        }

        .map-filters button {
            padding: 8px 12px;
            cursor: pointer;
        }



    .popupStation {
        text-align: center;
    }

        .popupStation b {
            margin-bottom: 10px !important;
            display: block;
            font-size: 1rem;
        }

        .popupStation p {
            padding: 0px !Important;
            margin: 0px !Important;
            padding-bottom: 10px !Important;
        }



    .accordion-item {
        scroll-margin-top: 120px;
    }


    #modalAlert {
        border: 2px solid #000;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 30px;
    }

        #modalAlert .modal-header h5 {
            color: #fff;
        }

        #modalAlert .modal-title {
            padding-top: 10px;
        }

    .modal {
        z-index: 9999 !important;
    }

    #modalAlert .modal-header {
        background-color: var(--color-primary);
        border-bottom: none;
        height: 50px;
    }

    #modalAlert .modal-title {
        padding-top: 10px;
    }

    #modalAlert .modal-body {
        color: #000;
        font-size: 1rem;
        padding: 1.5rem;
    }

    .modal-content {
        border-radius: 15px;
    }

    .modal-header {
        border-top-left-radius: 13px;
        border-top-right-radius: 13px;
    }

    .dcl-consent a {
        color: #000;
    }

    #mainNav {
        flex: 1 1 auto;
        min-width: 0;
    }

    .Menu2 {
        min-width: 0;
    }

        .Menu2 .navbar-nav {
            flex-wrap: wrap;
        }

    .label-hidden {
        opacity: 0;
    }

    .section-intros {
        font-size: 1.3rem;
        color: var(--color-secondary);
    }


    .arrowFuel {
        font-size: 2rem;
    }

    .arrowFuel2 {
        font-size: 1.5rem;
        padding-left: 5px;
    }

    .fuel span {
        width: 50px;
    }