/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 25 2025 | 15:48:32 */
/* GROUPE */ 

.group-partner {
  background: linear-gradient(
    to bottom,
    #ffffff 0px,                /* bandeau blanc haut */
    #e8ebfa 20px,               /* bleu clair commence */
    #e8ebfa calc(100% - 20px),  /* bleu clair s’arrête 15px avant la fin */
    rgb(5, 20, 67) 100%         /* bandeau foncé bas */
  );
}




/* Separateur avant section */ 

.separateur-vague {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0;
	margin-top:1px;
	
	  
}
.separateur-vague svg {
  display: block;
  width: 120%;
  margin-left: -10%;
	transform: scaley(-1);
	
}

.separateur-vague-bottom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  background-color: #07255B;
}



.separateur-vague-bottom svg {
  display: block;
  width: 120%;
  margin-left: -10%;
	transform: scaleX(-1);
	
}

/* Section Partenaire */ 

.partenaires-section {
  background: #e8ebfa;
  padding: 1px 0 1px 0;
  width: 100%;
  text-align: center;
	position: relative;
	 z-index: 1;
}

.partenaires-title {
  color: #00008f; /* Bleu AXA */
  font-family: 'Avenir Next', 'Montserrat', 'Nunito Sans', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
	margin-top: 0;
	text-transform: uppercase;
}

/* ---- VIEWPORT DU CARROUSEL (masque la bande de logos) ---- */
.carousel-viewport {
  width: 90%;              /* 3 logos larges (ex : 3 x 480px) */
  overflow: hidden;           /* Masque ce qui sort de la fenêtre */
  margin: 0 auto;             /* Centre la section */
  box-sizing: border-box;
}

/* ---- RUBAN DE LOGOS DÉFILANT ---- */
.partenaires-carousel {
  display: flex;              /* Affiche les logos sur une ligne */
  align-items: center;
  /* Pas d’overflow ici ! */
  /* Largeur automatique selon le JS */
}

/* ---- LOGO PARTENAIRE ---- */
.partenaire-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%     ;      
  padding: 38px 2px;
	margin: 0 5% 0 5%;
  border-radius: 18px;
  background: transparent;
  box-sizing: border-box;
  flex-shrink: 0;             /* NE PAS rétrécir même si espace */
  transition: box-shadow 0.18s, transform 0.18s;
  outline: none;
}
.partenaire-logo-link:focus {
  box-shadow: 0 0 0 3px #b3c6ff;
}

.partenaire-logo-link:hover {
  
  transform: scale(1.04);
}

.partenaire-logo {
  max-width: 330px;          /* Largeur réelle du logo (s’adapte au format) */
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.18s;
}

.partenaire-logo-link:hover .partenaire-logo {
  filter: grayscale(0%) brightness(1.08);
}

/* ---- PETITE ASTUCE ACCESSIBILITÉ : VISUEL POUR TABULATION ---- */
.partenaire-logo-link:focus-visible {
  outline: 2px solid #00008f;
  outline-offset: 2px;
}

/* ---- ESPACEMENT VISUEL ENTRE LES LOGOS ---- */
.partenaires-carousel > .partenaire-logo-link:not(:last-child) {
  margin-right: 24px;   /* Espace régulier, modifiable selon rendu */
}

/* ---- RESPONSIVE ---- */

/* ---- Tablettes ---- */

@media (max-width: 1024px){

	.partenaires-title {
 
  font-size: 2rem;
  letter-spacing: 0.037em;
   line-height: 1.5;
		margin-bottom: 10px;
	}
	
	.partenaire-logo-link:focus {
  box-shadow: none;
}

.partenaire-logo-link:hover {
  box-shadow: none;
  transform: none;
}

}

/* ---- Petites Tablettes ---- */


@media (max-width: 900px){

	.partenaires-section {
		margin-top: 1%;
		}
		
	.partenaires-title {
  font-size: 1.45rem;
  letter-spacing: 0.027em;  
	}

	.partenaire-logo-link {
  width: 30%;
  padding: 0px;
  margin: 3%; 
	}
	
	.partenaire-logo {
  max-height:150px;
	}
	
	
}



/* ---- Mobile ---- */


@media (max-width: 650px) {
	
 .partenaires-title {
  font-size: 1.18rem;
	 margin-top:10px;
	 margin-bottom: 15px;
	}
	
	.partenaire-logo {
  max-height: 90px;
	}
	
	 .anpere-logo {
    max-width: 150px; /* par exemple */
    
  }
	
	.partenaire-logo-link {
    width: 120px;
    padding: 0px;
    margin: 3%;
}
	
	

}