:root {
  /* Base fluide, cohérente sur mobile et grands écrans */
  --fs-h1: clamp(1.75rem, 2vw + 1rem, 2.75rem);  /* 28 → 44px */
  --fs-h2: clamp(1.5rem, 1.6vw + 0.9rem, 2.25rem);
  --fs-h3: clamp(1.125rem, 1.3vw + 0.6rem, 1.875rem);
  --fs-h4: clamp(1rem, 1vw + 0.5rem, 1.5rem);
  --fs-h5: clamp(0.9375rem, 0.8vw + 0.4rem, 1.25rem);
  --fs-h6: clamp(0.875rem, 0.7vw + 0.3rem, 1.125rem);
  --fs-base: clamp(0.875rem, 0.6vw + 0.25rem, 1.125rem);
  --fs-small: clamp(0.75rem, 0.45vw + 0.25rem, 0.9375rem);


/* Ajustement H1 pour écrans moyens (992px → 1500px) */


  /* spacing */
  --gutter-xs: 16px;
  --gutter-sm: 24px;
  --gutter-md: 32px;
  --gutter-lg: 48px;
  --gutter-xl: 64px;
  --gutter-xxl: 80px;
  --gutter-3xl: 256px;

  /* section padding / margin vertical */
  --section-padding-sm: var(--gutter-md);   /* 32px */
  --section-padding-md: var(--gutter-lg);   /* 48px */
  --section-padding-lg: var(--gutter-xl);   /* 64px */
  --section-padding-xl: var(--gutter-xxl);  /* 80px */
  --section-padding-xxl: var(--gutter-3xl); /* 256px */

  --section-spacing-sm: 32px;
  --section-spacing-md: 48px;
  --section-spacing-lg: 64px;
  --section-spacing-xl: 96px;

  /* boutons */
  --primary-color: #d6254f;
  --secondary-color: #ffffff;
  --primary-color-hover: #eb3e64;
  --btn-border-radius: 10px;
  --btn-padding-inline: 1rem;   /* 16px */
  --btn-padding-block: 0.5rem;  /* 8px */
  --btn-padding-inline-sm: 0.75rem; /* 12px */
  --btn-padding-block-sm: 0.375rem; /* 6px */
  --btn-transition: 0.3s ease;
}


@media (width > 2160px) {
  :root {
    --fs-h1: 3.815rem;   /* 68.66px */
    --fs-h2: 3.052rem;   /* 54.93px */
    --fs-h3: 2.441rem;   /* 43.94px */
    --fs-h4: 1.953rem;   /* 35.15px */
    --fs-h5: 1.625rem;   /* 28.13px */
    --fs-h6: 1.5rem;   /* 27.5px */
    --fs-base: 1.375rem; /* 22px */
    --fs-small: 1rem;    /* 16px */
  }
}

@media (min-width: 992px) and (max-width: 1500px) {
  :root {
    --fs-h1: clamp(2rem, 1.5vw + 1rem, 2.5rem); /* réduit légèrement le H1 */
  }
}

body {
  font-size: var(--fs-base);
  font-family: roboto_light, sans-serif;  
  transition: padding-top 0.3s ease;
}

.container-fluid{
  position:relative;
  width:100%;
  padding-left: clamp(1rem, 5vw, 6rem) !important;  /* ~16px à 96px */
  padding-right: clamp(1rem, 5vw, 6rem) !important;
}

section {
  padding-inline: var(--gutter-md);  
  padding-block: var(--section-padding-lg);
  border-radius: 75px 0 75px 0;
  position:relative;
}

@media(width < 576px) {
  section {
    padding-inline: var(--gutter-sm); /* 24px */
    padding-block: var(--section-padding-md);
  }
}

@media (width > 768px) {
  section {
    padding-inline: var(--gutter-lg); /* 48px */
    padding-block: var(--section-padding-md);
  }
}

@media (width >= 1200px) {
  section {
    padding-inline: var(--gutter-xl); /* 64px */
    padding-block: var(--section-padding-lg);

  }
}

@media (width >= 1440px) {
  section {
    padding-inline: var(--gutter-xxl); /* 80px */
    padding-block: var(--section-padding-xl);

  }
}

@media (width > 1920px) {
  section {
    padding-inline: var(--gutter-3xl); /* 256px */
    padding-block: var(--section-spacing-xl);
  }
}



/* polices  */
@font-face {
    font-family: 'roboto_light';
    src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
}

@font-face {
    font-family: 'roboto_black';
    src: url("../fonts/Roboto/Roboto-Black.ttf") format("truetype");
}

@font-face {
    font-family: 'roboto_bold';
    src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}

@font-face {
    font-family: 'roboto-thin';
    src: url("../fonts/Roboto/Roboto-Thin.ttf") format("truetype");
}

@font-face {
    font-family: 'roboto-regular';
    src:url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'roboto-medium';
    src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
}

/* fonts */
.roboto-regular,
.roboto-regular p,
.roboto-regular h1,
.roboto-regular h2,
.roboto-regular h3,
.roboto-regular h4,
.roboto-regular h5,
.roboto-regular h6{
    font-family: roboto-regular;
}

.roboto-medium,
.roboto-medium p,
.roboto-medium h1,
.roboto-medium h2,
.roboto-medium h3,
.roboto-medium h4,
.roboto-medium h5,
.roboto-medium h6{
    font-family: roboto-medium;
}

.roboto-thin,
.roboto-thin p,
.roboto-thin h1,
.roboto-thin h2,
.roboto-thin h3,
.roboto-thin h4,
.roboto-thin h5,
.roboto-thin h6{
    font-family: roboto-thin;
}

.roboto-light,
.roboto-light p,
.roboto-light h1,
.roboto-light h2,
.roboto-light h3,
.roboto-light h4,
.roboto-light h5,
.roboto-light h6{
    font-family: roboto_light;
}


.roboto-bold,
.roboto-bold p,
.roboto-bold h1,
.roboto-bold h2,
.roboto-bold h3,
.roboto-bold h4,
.roboto-bold h5,
.roboto-bold h6{
    font-family: roboto_bold;
}

.roboto-black,
.roboto-black p,
.roboto-black h1,
.roboto-black h2,
.roboto-black h3,
.roboto-black h4,
.roboto-black h5,
.roboto-black h6{
    font-family: roboto_black;
}

h1 { font-size: var(--fs-h1) !important;}
h2 { font-size: var(--fs-h2) !important;}
h3 { font-size: var(--fs-h3) !important;}
h4 { font-size: var(--fs-h4) !important;}
h4.responsive-heading{
  font-size:var(--fs-h4) !important;
}
h5 { font-size: var(--fs-h5) !important;line-height:1.3 !important;}
h6 { font-size: var(--fs-h6) !important;}
p  { font-size: var(--fs-base); }

@media(max-width:768px){
  h4.responsive-heading{
    font-size:var(--fs-h6) !important;
  }
}

a{
    text-decoration:none !important;
}

strong{
    font-family: 'roboto_bold' !important;
    font-weight: normal !important;
}

/* primaire */
.rouge-axian{
    color:#d6254f;
}

.rouge-bordeaux{
    color:#c2003f;
}

.rouge-ecarlate{
    color:#ff0045;
}

.noir{
    color:#000000;
}

.gris-charbon{
    color:#414042;
}

.gris-charbon-2{
    color:#515151;
}

.gris-charbon-3{
    color:#606060;
}

.gris-charbon-4{
    color:#707070 !important;
}

.bleu-fonce{
    color:#081635;
}

.blanc{
    color:#ffffff;
}

.gris{
    color:#f1f1f1;
}

.gris-2{
    color:#f2f2f2;
}

.gris-3{
  color:#b7b7b7;
}

@media(max-width:992px){
  .text-mobile {
    color:white!important;
  }
}

.background-rouge-axian{
    background-color:#d6254f;
}

.background-rouge-bordeaux{
    background-color:#c2003f;
}

.background-rouge-ecarlate{
    background-color:#ff0045;
}

.background-noir{
    background-color:#000000;
}

.background-gris-charbon{
    background-color:#414042;
}

.background-blanc{
    background-color:#ffffff;
}

.background-gris{
    background-color:#f1f0f0;
}

.background-transparent{
    background-color:transparent;
}

@media(max-width:768px){
  .background-gris.background-mobile{
    background-color:#FFFFFF;
  }
}

/* secondaire */
.bleu-mauve{
    color:#5463a9;
}

.bleu-marine{
    color:#141c45 ;
}

.bleu-horizon{
    color:#abc7e3;
}

.background-bleu-mauve{
    background-color:#5463a9;
}

.background-bleu-marine{
    background-color:#141c45;
}

.background-bleu-horizon{
    background-color:#acc7e3;
}

.low-opacity {
  opacity: 0.7 !important;
}

img{
    border-radius:30px ;
}

/* boutons */
.bouton{
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border-radius: var(--btn-border-radius);
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  font-size:var(--fs-h6);
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--btn-transition);
  border: none;
  font-family: roboto-regular;
  text-decoration: none;
}

.bouton-primary{
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid transparent;
}

.bouton-primary:hover,
.bouton-primary:focus {
  background-color: var(--primary-color-hover);
  color: var(--secondary-color);
  outline: none;
}

.bouton-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.bouton-secondary:hover,
.bouton-secondary:focus {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.bouton-primary-sm {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: var(--btn-padding-block-sm) var(--btn-padding-inline-sm);
  font-size: var(--fs-small);
  transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.bouton-primary-sm:hover,
.bouton-primary-sm:focus {
  background-color: var(--primary-color-hover);
  color: var(--secondary-color);
  outline: none;
}

.bouton:focus-visible {
  outline: 3px solid rgba(214, 37, 79, 0.5);
  outline-offset: 2px;
}

.full-height {
    height: 75vh;
}

.half-height {
    height: 35vh;
}

.full-width{
    width:100%;
}

.object-fit-cover{
    object-fit: cover;
}

.line-height-0-8 p,
.line-height-0-8 h1,
.line-height-0-8 h2,
.line-height-0-8 h3,
.line-height-0-8 h4,
.line-height-0-8 h5{
    line-height: 0.8;
}

.line-height-0-9 p,
.line-height-0-9 h1,
.line-height-0-9 h2,
.line-height-0-9 h3,
.line-height-0-9 h4,
.line-height-0-9 h5{
    line-height: 0.9;
}

.line-height-1-0 p,
.line-height-1-0 h1,
.line-height-1-0 h2,
.line-height-1-0 h3,
.line-height-1-0 h4,
.line-height-1-0 h5{
    line-height: 1.0 !important;
}

.line-height-1-1 p,
.line-height-1-1 h1,
.line-height-1-1 h2,
.line-height-1-1 h3,
.line-height-1-1 h4,
.line-height-1-1 h5{
    line-height: 1.1;
}

.line-height-1-2 p,
.line-height-1-2 h1,
.line-height-1-2 h2,
.line-height-1-2 h3,
.line-height-1-2 h4,
.line-height-1-2 h5{
    line-height: 1.2;
}


@media(max-width:600px){
    .full-height .half-height{
        height: 75vh !important;
    }
}

/* animation */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-scroll] {
  will-change: transform;
}


/* marges */
.margin-top-5{
  margin-top:5px;
}

.margin-top-20-px {
  margin-top: 20px !important;
}

.margin-top-50-px {
  margin-top: 50px;
}

.margin-top-60-px {
  margin-top: 60px;
}

.margin-bottom-50-px {
  margin-bottom: 50px;
}

.margin-bottom-60-px {
  margin-bottom: 60px;
}

.margin-bottom-70{
    margin-bottom:70vh;
}

.margin-bottom-60{
    margin-bottom:60vh;
}

.margin-bottom-50{
    margin-bottom:50vh;
}

.margin-bottom-40{
    margin-bottom:40vh;
}

.margin-bottom-30{
    margin-bottom:30vh;
}

.margin-bottom-20{
    margin-bottom:20vh;
}

.margin-bottom-10{
    margin-bottom:10vh;
}

.margin-bottom-5{
    margin-bottom:5vh;
}

.margin-bottom-0{
    margin-bottom:0px;
}

.margin-horizontal-0{
    margin-left:0px !important;
    margin-right:0px !important;
}

/* titre */
.custom-titre h1{
  line-height:1.0 !important;  
  text-transform: uppercase;
}

.uppercase{
    text-transform:uppercase !important;
}
/* centrer verticalement  */
.table{
    display:table;
    width:100%;
    --bs-table-bg:transparent;
    background-color: transparent;
}

.table-cell{
    display: table-cell;
    vertical-align: middle;
}

/* formulaire placeholder */
input[type="email"].form-control,
input[type="text"].form-control,
.custom-input {
  font-size: var(--fs-base);
  line-height: 1.2;
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  border-radius: var(--btn-border-radius);
  border: 1px solid #ccc;
  background-color: #fff;
  text-align: left;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);  /* légère ombre */
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  z-index:3;
}

.custom-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(214, 37, 79, 0.15); /* focus clair */
  outline: none;
}

/* Champ textarea */
textarea.form-control {
  font-size: var(--fs-base);
  line-height: 1.4;
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  border-radius: var(--btn-border-radius);
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  resize: vertical;
  color: #7a7d7f;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Select */
select.form-select {
  font-size: var(--fs-base);
  line-height: 1.4;
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  border-radius: var(--btn-border-radius);
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  color: #7a7d7f;
}

.custom-input::placeholder {
  color: #999;
  opacity: 1;
  text-align: left;
}

/* custom header */
.header-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin: 0;
  border-bottom: solid 1px lightgray;
  transition: all 0.3s ease;
  transform: translateY(0);
  padding: 1rem 0; /* réduit le padding haut/bas */
}

/* Wrapper général */
.nav-wrapper {
  display: flex;
  position: relative;
  padding-inline: var(--gutter-md);  
}

@media(width < 576px) {
  .nav-wrapper  { padding-inline: var(--gutter-xs); }
}

@media (width > 768px) {
  .nav-wrapper  { padding-inline: var(--gutter-lg); }
}

@media (width >= 1200px) {
  .nav-wrapper  { padding-inline: var(--gutter-xl); }
}

@media (width >= 1440px) {
  .nav-wrapper  { padding-inline: var(--gutter-xxl); }
  .gap-xl-6{ gap:4rem !important; }
}

@media (width > 1920px) {
  .nav-wrapper  { padding-inline: var(--gutter-3xl); }
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Groupes gauche/droite */
.header-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-left { justify-content: flex-start; padding-right: 20px; }
.header-right { justify-content: flex-end; padding-left: 20px; }

/* Logo centré et réduit */
.custom-logo {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-top:5px;
  margin-bottom: 5px;
  padding-left: 16px;
  padding-right: 16px;
}

.custom-logo img {
  max-height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.custom-logo:hover img {
  transform: scale(1.05);
}

.custom-logo-axian-investment {
  width: auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 5px;
  padding-left: 16px;
  padding-right: 16px;
}

.custom-logo-axian-investment img {
  max-height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.custom-logo-axian-investment img {
  transform: scale(1.05);
}
/* Effet sticky */
.header-desktop.scrolled {
  padding: 0.5rem 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Langue */
.language-selector { justify-content: end; }
.lang-link {
  text-decoration: none;
  color: #414042;
  padding: 0px 10px;
  border: none;
  text-transform: uppercase; 
  transition: color 0.3s ease;
}
.lang-link:hover { color: #d6254f; }
.active-lang { font-weight: bold; color: #fff; background-color: #d6254f; }

/* Dropdown parent */
.custom-dropdown-container {
  position: relative;
  display: inline-block;
}

.custom-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-link h6,
.custom-dropdown-toggle h6 {
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* hover rouge pour tous les parents */
.nav-link:hover h6,
.custom-dropdown-toggle:hover h6 {
  background-color: #d6254f;
  color: white;
}

.custom-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

/* Dropdown enfants */
.custom-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 10px 0;
  border-radius: 4px;
}

.custom-dropdown-container:hover .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-container:hover .custom-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-menu li { list-style: none; }

.custom-dropdown-menu a {
  padding: 8px 15px;
  display: block;
  color: #333 !important;
  text-decoration: none;
  position: relative;
  transition: color 0.1s ease;
}

.custom-dropdown-menu li:hover a{
  background-color: #d6254f;
  color: white !important;
}

/* Flèche custom select langue */
.language-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
  background-color: #fff;
  padding-right: 30px;
  border: 1px solid lightgray;
  border-radius: 4px;
  cursor: pointer;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4); 
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.search-overlay.hidden {
  display: none;
}

.search-box {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.2rem;
  font-size: 1.1rem;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0; 
  background: transparent;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-bottom: 2px solid #c2003f;
  box-shadow: none; 
}

.search-submit {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-submit:hover {
  color: #c2003f;
}

.close-search {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.search-results {
  background: #fff;
  padding: 2rem 2rem;
  border-top: 1px solid #eee;
  max-height: 60vh;
  overflow-y: auto;
}

.search-results.search-section {
  margin-bottom: 1.5rem;
}

.search-results h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3rem;
}

.search-results ul {
  list-style: none;
  padding-left: 0;
}

.search-results li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.search-results li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.search-results li a {
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: block;
}

.search-results li a:hover {
  color: #c2003f;
}

.search-results p {
  font-size: 0.9rem;
  color: #666;
  margin: 0.2rem 0 0;
}

.search-results time {
  font-size: 0.8rem;
  color: #999;
}

.header-mobile {
    display: none;
    background-color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-header-container {
    height: 60px;
}

.mobile-logo img {
    max-height: 64px;
    display:block;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-search i,
.mobile-menu-toggle i {
    font-size: 22px;
    color: #414042;
}

 .mobile-menu-toggle {
    z-index: 10;
  }

.mobile-actions button.mobile-menu-toggle{
  background-color: transparent;
  border:none;
  padding-left: 0px;
  padding-right: 0px;
}

.mobile-lang-selector {
    border: none;
    background: transparent;
    font-size: 18px;
    color: #333;
    padding: 0.25rem 0.5rem;
}

.mobile-menu {
  display: none;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1000;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding-bottom: 2rem;
}

.mobile-menu u{
  list-style:none;
  padding-left:0;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-header {
  border-bottom: 1px solid #eee;
  padding-top:1.5rem;
  padding-right:2rem;
  position:relative;
}

.btn-menu-close {
  position:absolute;
  cursor:pointer;
  top:1rem;
  right:1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #d6254f;
}

.btn-menu{
  background-color: transparent;
  border:none; 
}

.btn-menu i{
  color:#d6254f;
  font-size:22px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0 1.25rem;
  margin: 1rem 0;
}

.mobile-menu-list ul{
  list-style: none;
}

.mobile-menu-item {
  margin-bottom: 0.75rem;
}

.mobile-menu-link {
  font-weight: 500;
  color: #212121;
  text-decoration: none;
  display: block;
  list-style:none;
}

.mobile-submenu {
  margin-top: 0.25rem;
  margin-left: 1.25rem;
}

.mobile-submenu-link {
  color: #666;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  list-style:none;
}
.mobile-menu-link:hover {
    background-color: #f5f5f5;
}

.btn-contact-menu-mobile {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.35rem;
  font-size: 0.95rem;
}

.custom-padding-60{
  padding-top:60px !important;
  padding-bottom:60px !important;
}

.custom-padding-56{
  padding-top:56px !important;
  padding-bottom:56px !important;
}

@media(width>1920px){
  .custom-padding-56{
    padding-top:112px !important;
    padding-bottom:112px !important;
  }
}

@media (max-width: 1024px) {
  .header-desktop {
      display: none;
  }

  .header-mobile {
      display: block;
  }

  body {
    padding-top: 70px;
  }
}

/* end of header */

/* custom footer */
.footer-desktop{
  position: static;
  margin-bottom:0px;
  bottom:0px;
}

.footer-mobile{
  display:none;
}

@media(max-width:992px){
  .footer-desktop{
    display:none;
  }

  .footer-mobile{
    display:block;
  }
}

.custom-banniere-footer-gris{
  border-top-left-radius: 0px;
  padding-top: 64px !important;
}

.custom-line-top{
  border-top:1px solid #d6254f;

}

.custom-banniere-footer-rouge{
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  height:100px;
  padding-top:24px !important;
  padding-bottom:24px !important;
}

@media(max-width:992px){
  .custom-banniere-footer-rouge{
    height:180px;
  }
}

.logo-footer img{
  width:150px;
  height:auto;
  margin-top:20px;
}

.footer-grid {
  min-height: 150px;

}

.icone-love-footer{
  margin-right:5px;
  margin-left:5px;
  border-radius:0px;
  width:50px;
}

.custom-copyright-footer{
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.icone-social-media-footer{
  width:32px;
  height:auto;
}

@media(max-width:600px){
  .icone-love-footer{ 
    height:auto;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
    border-radius: 0px;
  }

  .icone-social-media-footer{
    width:24px;
    height:auto;
  }
}

.footer-dropdown-container {
    position: relative;
    margin-bottom: 8px;
}

.footer-dropdown-toggle {
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.footer-dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.footer-dropdown-menu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
    list-style: none;
}

.footer-dropdown-menu li {
    margin: 5px 0;
}

.footer-dropdown-menu a {
    font-size: 0.9em;
    font-weight: normal;
}

.footer-dropdown-container.active .footer-dropdown-arrow {
    transform: rotate(180deg);
}

.footer-dropdown-container.active .footer-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#myBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #d6254f;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}

span.scroll-top::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin-top:5px;
  border: 0.3rem solid #fff;
  border-left: none;
  border-top: none;
  transform: rotate(225deg);
  z-index: 1000000;
}
/* end of footer */

/* custom banniere*/
.position-texte p,
.position-texte h1,
.position-texte h2,
.position-texte h3,
.position-texte h4,
.position-texte h5{
    position:absolute;
    bottom:30px;
    left:30px;
    right:30px;
    color:white;
    z-index:2;
    line-height: 1.1;
}

/* custom introduction homepage */
.background-image-responsive {
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    transition:height 0.3s ease;
    overflow: hidden;
}

.background-image-mobile{
  display:none;
}

.hero-section{
  overflow:hidden;
  transform-origin:center center;
}

.custom-texte-introduction {
  border-radius: 8px;
  max-width: 100%; 
  margin: 0 auto; 
}

/* Tablette */
@media (max-width: 992px) {
  .background-image-responsive {
      position:relative;
      background-image: var(--bg-mobile);
      height: 85vh;
      display: block; /* Changement important */
  }

  .custom-border-radius{
      border-top-right-radius: 70px;
      border-bottom-left-radius: 70px;
      border-top-left-radius: 0px;
      border-bottom-right-radius: 0px;
  }
  
  .text-position-top {
      position: relative;
      top: 30px;
      left: 0;
      right: 0;
      margin-top: 0;
  }

  .text-position-middle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
  }

  .text-position-bottom {
      position: absolute;
      top:45vh;
  }

  .custom-texte-introduction {
      max-width: 95%;
      padding: 0 15px;
      text-align: left;
      width: 100%;
  }
}

@media (max-width: 768px) {
  .background-image {
      height: auto;
  }
}

.custom-background-image-video{
  background-size:cover;
  background-position:bottom;
  background-repeat:no-repeat;
  height:100vh;
  display:flex; 
  align-items:center;
  justify-content: center;
  border-radius: 0px;
}

@media(max-width:788px){
  .custom-background-image-video{
    height:50vh;
  }
}

/* custom actualites*/
.news-section .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.news-section [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Colonnes principales */
.news-section .left-column {
  /* 
  lorsque pas d'event
  width: 66.666667%; */
  width:58%;
}

.news-section .right-column {
  /* 
  lorsque pas d'event 
  width: 33.333333%; */
  width:42%;
}

/* Cartes principales (gauche) */
.news-section .card-news-highlight {
  /*
  lorsque pas d'event 
  height: 550px;
   */
  /* height:540px; */
  height:456.5px;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.news-section .card-news {
  /*
  lorsque pas d'event 
  height: 350px; */
  /* height: 540px;
   */
  height:456.5px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Cartes secondaires (droite) */
.news-section .card-news-side {
  /* height: 350px;
    */
  height:295px;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-event {
    /* height: 350px;  */
    height:295px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (min-width: 1920px) {
  .card-event {
    height: 350px;
    margin-bottom: 0;
  }
}


.event-container {
    border-radius: 20px;
    overflow: hidden;
}

.event-image .event-img {
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.event-content {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.event-details {
    position: relative;
}

.event-content .event-bottom {
  position: absolute;
  bottom: 20px;
}

.event-content .event-calendar {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.event-content .event-calendar h4 {
  margin: 0 !important;
}

.titre-ellipsis-2lignes{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.titre-ellipsis-3lignes{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1920px) {
  .news-section .left-column {
    width: 60%;
  }
  
  .news-section .right-column {
    width: 40%;
  }

  .news-section .card-news-highlight {
    height: 540px; 
  }

  .news-section .card-news {
    height: 540px; 
  }

  .news-section .card-news-side {
    height: 350px;
  }
}

/* Parties image et contenu communes */
.news-section .card-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.news-section .image-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

.news-section .image-date-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  z-index: 2; 
  padding: 5px 10px;
  font-size:18px;
}

.news-section .top-rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  border-radius: 15px 15px 0 0;
}

.news-section .card-content {
  background-color: #F5F5F5;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.news-type-large{
  border-left:#d6254f solid 3px;  
  text-transform: uppercase;
  padding-left: 10px;
}

.news-type-small{
  text-align: right;
  border-right:#d6254f solid 2px;  
  text-transform: uppercase;
  padding-right: 10px;
}

.news-type-event{
  border-left:#ffffff solid 2px;  
  text-transform: uppercase;
  padding-left: 10px;
}

.news-actor-large{
  text-align:right;
  text-transform:uppercase;
}

.news-actor-small{
  text-align:right;
  text-transform:uppercase;
}

/* Responsive */
@media (max-width: 1200px) {
  .news-section .left-column,
  .news-section .right-column {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
  }
  
  .news-section .image-date-overlay {
    top: 15px;
    right: 15px;
  }

  .news-section .card-news-highlight,
  .news-section .card-news,
  .news-section .card-news-side {
      height: auto;
      flex-direction: column;
  }
  
  .news-section .card-image {
      height: 250px !important;
  }

  .news-section .top-rounded-image {
    border-radius: 15px 15px 0 0; /* Maintien des coins arrondis en haut sur mobile */
}
  
  .news-section .card-content {
      height: auto !important;
  }

}

@media (max-width: 768px) {
  .news-actor-large,
  .news-actor-small,
  .news-type-small,
  .news-type-large {
    text-align: left !important; 
  }

  .news-type-small {
    border-right: none !important;
    border-left: #d6254f solid 2px !important;
    padding-left: 10px !important;
    padding-right: 0 !important;
  }

  .card-content .row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px;
  }

  .card-content {
    padding: 1.5rem !important; /* Utilisation des unités Bootstrap */
  }
}
.news-filters {
  gap: 8px;
}

.news-filter {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: var(--btn-border-radius);
  font-size: var(--fs-h6);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}


.news-filter:hover,
.news-filter.active {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .news-filters {
      justify-content: flex-start;
      flex-wrap: wrap;
  }
  
  .news-filter {
      padding: 4px 10px;
  }
}

 .snapping-horizontal-list {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.list-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
    scroll-behavior: smooth;
    
}

.list-item {
    flex: 0 0 85%; /* Each item takes 85% of container width */
    scroll-snap-align: center;
    margin: 0 3%;
}

.snap-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.snap-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
}

.snap-indicators .indicator.active {
    background-color: #fff;
    border: 3px solid #d7254F;
}

/* Hide scrollbar but keep functionality */
.list-container::-webkit-scrollbar {
    display: none;
}

.list-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Style de base */
.custom-titre-actualites h1, 
.custom-titre-poles h1,
.custom-titre-contact h1,
.custom-titre-contact h5{
  display: flex;
  align-items: center; 
  position: relative;
}

.title-decoration {
  left: -65px;
  top: 0;
  transform: translateY(-50%); /* Ajustement précis */
  z-index: 5;
}

.decoration-img {
  height: 95px;
  width: auto;
  max-width: none;
}

/* .title-decoration .decoration-img {
  opacity: 0;
  transform: scale(0) rotate(-15deg); 
  transform-origin: center center;
} */

@media (width > 1920px) {
  .title-decoration {
    left: -75px; 
  }

  .decoration-img {
    height: 120px;
    width: auto;
    max-width: none;
  }
} 

/* Responsive - Mobile */
@media (max-width: 768px) {
  .title-decoration {
    left: -36px;
  }
  
  .decoration-img {
      height: 50px;
  }
}


/* custom chiffres clés */
/* Styles de base */
.chiffres-cles-item-container {
  height: 120px;
  text-align: left;
  position: relative; /* Pour les bordures */
}

@media(min-width:1920px){
  .chiffres-cles-item-container h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }
}


.chiffres-cles-item-dotted {
  border-right: 2px dotted black;
}

.chiffres-cles-item {
  z-index: 2;
} 
/* Supprime la bordure du dernier élément */
.chiffres-cles-item:last-child .chiffres-cles-item-dotted {
  border-right: none !important;
}

/* Responsive - Tablette */
@media (max-width: 992px) {
  .chiffres-cles-item {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }
  
  /* Supprime la bordure du 3ème élément de chaque ligne */
  .chiffres-cles-item:nth-child(3n) .chiffres-cles-item-dotted {
    border-right: none;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .chiffres-cles-item {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  /* Supprime la bordure du 2ème élément de chaque ligne */
  .chiffres-cles-item:nth-child(2n) .chiffres-cles-item-dotted {
    border-right: none;
  }
}

/* Très petits écrans */
@media (max-width: 576px) {
  .chiffres-cles-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  /* Supprime toutes les bordures en mode liste */
  .chiffres-cles-item-dotted {
    border-right: none !important;
  }
}

.chiffre-cle-img-logo-banner {
    width: 40px;
    height: 40px;
    background-color: #d6254f;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d6254f;
}

.padding-left-right-15 {
    padding-left: 15%;
    padding-right: 15%;
}

/* impact positif  */
.bg-light {
  background-color: #f8f9fa !important;
}

.card-title {
  /* font-size: 1.2rem; */
  margin-bottom: 0.5rem;
}

.card-footer {
  font-size: 0.9rem;
}

.card {
  border-radius: 30px !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card img{
  border-radius: 30px 30px 0px 0px; 
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-footer a {
  position: relative;
  color:#414042 !important;
  text-decoration: none !important;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card-footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #5463a9;
  transition: width 0.3s ease;
}

.card-body{
  padding-bottom:0rem !important;
}

.card-footer a:hover {
  color: #5463a9 !important;
}

.card-footer a:hover::after {
  width: 100%;
}

/* Style pour la décoration qui dépasse */
.page-decoration-absolute {
  right: 0px; 
  top:50%;
  width: auto; 
  z-index:0;
  pointer-events: none;
}

.page-decoration-absolute-top {
  right: 0px; 
  top:10%;
  width: auto; 
  z-index:0;
  pointer-events: none;
}

.page-decoration-absolute-middle {
  right: 0px; 
  top:40%;
  width: auto; 
  z-index:0;
  pointer-events: none;
}

.page-decoration-absolute-middle-contact{
  right: 0px; 
  top:65%;
  transform:translateY(-50%);
  width: auto; 
  z-index:0;
  pointer-events: none;
  z-index:0;
}

.page-decoration-absolute-bottom{
  right: 0px; 
  top:60%;
  width: auto; 
  z-index:0;
  pointer-events: none;
}

.decoration-page {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.decoration-page-inverse{
  width:100%;
  height:350px;
  object-fit: cover;
  z-index:44;
}

@media(width > 1920px){
  .decoration-page{
    height:700px;
  }

  .decoration-page-inverse{
    height:650px;
  }
}

@media(max-width:768px){
  .page-decoration-absolute-bottom{
    top:90%;
  }

  .decoration-page{
    height:150px;
  }

  .decoration-page-inverse{
    height:150px;
  }
}
.decoration-page-middle {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* Responsive Controlé */
@media (max-width: 1200px) {
  .decoration-page-middle {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 992px) {
  .page-decoration-absolute {
    top:75%;
  }

  .page-decoration-absolute-middle-contact{
    top:100%;
    /* right:-30px; */
    overflow:hidden;
  }
}

/* poles */
.poles-grid {
  position: relative;
  width: 100%;
  min-height: 750px; 
  height:auto;
  display:grid;
  grid-auto-flow: dense;

}

.poles-item {
  position: absolute;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius:30px;
}

.poles-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius:30px;
}
.poles-item:hover img { transform: scale(1.05); }

.poles-overlay {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  padding: 15px;
  color: #fff;
  z-index: 2;
}

@media (max-width: 992px) {
  .poles-grid { height: auto; }
  .poles-item {
    position: relative !important;
    width: 100% !important;
    height: 290px !important;
    margin-bottom: 15px;
    transform: none !important;
    border-radius:30px;
  }
}

/* custom social media  */
.social-wrapper {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-bubble {
  width: 45px;
  height: 45px;
  background-color: #000; 
  color: white;           
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.social-icon-bubble i {
  font-size: 24px;
}

@media (max-width: 767.98px) {
  .social-wrapper {
    width: 32px;
    height: 32px;
  }

  .social-icon-bubble {
    width: 28px;
    height: 28px;
  }

  .social-icon-bubble i {
    font-size: 14px;
  }
}

.social-icon-bubble:hover {
  transform: scale(1.1);
}

/* axian investment */

.bouton-blanc{
  background-color: #ffffff;
  color: #d6254f;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  font-family: "roboto-medium";
  font-size: 20px;
}

.bouton-blanc:hover{
  background-color: #d6254f;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.custom-titre-axian-investment {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem); /* ~16px à 24px */
}

.custom-titre-axian-investment h1 strong,
.custom-titre-axian-investment h5 strong{
  color:#d6254f;
}

.custom-text-axian-investment{
  margin-bottom: clamp(1.5rem, 2vw, 2rem); /* ~24px à 32px */
}


/* walk the talk */
.custom-pattern {
  position: absolute;
  bottom: -18px;
  right: 80px; 
  z-index: 0;
  height:450px;
  width:85%;
  object-fit: cover;
}

.custom-cadre-bleu {
  width: 90%;
  height: 450px;
  background-color: #5463a9;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 2; 
}

@media(max-width: 1200px) {
  .custom-pattern {
    right: 48px;
    bottom:-11px
  }
}

@media(min-width: 1920px) {
  .custom-pattern {
    right: 128px;
    bottom: -14px;
    width: 55%;
  }
}

@media (max-width: 992px) {
  .custom-cadre-bleu {
    width: 100%;
    height: 350px;
  }
  
  .custom-pattern {
    display:none;
  }
}

  @media (max-width: 768px) {
  .custom-cadre-bleu {
    width: 100%;
    height: auto;
    padding-bottom: 1rem;
  }

  .custom-cadre-bleu .image-podcast {
    max-height: 200px;
  }

  .custom-cadre-bleu h4 {
    font-size: 1rem;
    text-align: center;
  }

  .custom-audio-player {
    padding: 0 10px;
  }

  .image-podcast {
    margin: 0 auto;
    display: block;
  }
}

.image-podcast {
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 10px;
}

.image-podcast:hover {
  transform: scale(1.02);
}

.play-btn {
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-section video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  z-index: 2;
  position: relative;
  display: block;
}

.video-section .custom-pattern-video {
  position: absolute;
  z-index: 1;
  left: -50px;
  bottom: -50px;
  width: 80%;
  object-fit: cover;
}

.video-section .custom-top-blue-background {
  width: 40%;
  height: 70%;
  background-color: #abc7e3;
  position: absolute;
  z-index: 1;
  right: -50px;
  top: -50px;
  border-radius: 30px;
}

.video-section .video-container {
  width: 100%;
}

.video-section .video-container .controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
  border-radius: 10px;
  color: white;
  z-index: 3;
  width: 100%;
}

.video-section .video-container .controls-progress {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  border-radius: 0 0 30px 30px;
  color: white;
  z-index: 3;
}

.video-section .video-container button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.video-section .video-container .progress {
  width: 100%;
  background: none;
}

.video-section .video-container .progress input[type="range"] {
  width: 100%;
  cursor: pointer;
  accent-color: #d6254f;  
}

.video-container .ten-second,
.video-container .controls-progress {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .ten-second,
.video-container:hover .controls-progress {
  opacity: 1;
}

.video-container .controls #playPause img {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  .video-section .custom-pattern-video {
    left: -5px;
    bottom: -5px;
  }

  .video-section .custom-top-blue-background {
    right: -10px;
    top: -10px;
  }
}

/* fin page accueil */
/* page contact*/ 
.contact-form .container-fluid form input::placeholder,
.contact-form .container-fluid form textarea::placeholder,
.contact-form .container-fluid form select {
  text-align: left;
  padding-left: 10px;
  opacity: 0.8;
}

.contact-form .container-fluid form input,
.contact-form .container-fluid form textarea,
.contact-form .container-fluid form select {
  padding-left: 10px;
}

.contact-form .container-fluid form select {
  padding-left: 10px;
}

.contact-info{
  padding-top:0px !important;
  padding-bottom: 0px !important;
  margin-bottom:56px;
  margin-top:56px;
  border-bottom-right-radius:0px;
}

.map-container {
    position: relative;
    width:100%;
    overflow:hidden;
}

.map-container iframe{
  width:100% !important;
  height:400px!important;
  display:block;
  border:0;
}

.contact-info .pattern {
  width: 40px; 
  position: relative;
  background-color:transparent;
}

.contact-info .pattern img {
  border-radius: 0px;
}

.contact-info-box{
  padding-top:24px;
  padding-left: 24px;
}

@media(width > 1920px){
  .contact-info-box{
    padding-top:4px;
  }
}

.contact-info-box h4{
  color:#d6254f;
  font-family: "roboto_bold";
}

.contact-info-box h5{
  color:#414042;
  font-family: "roboto_light";
}

.contact-info .img-cover {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 0 0 75px;
}

@media(max-width:992px){
  .contact-info .pattern img {
      max-width: 30px; 
  }

  .contact-info-box{
    padding-left:0px;
  }
}

.page-decoration-contact {
  right: -100px; 
  top:50%;
  transform: translateY(-50%);
  width: auto; 
  z-index: 20; 
  pointer-events: none;
}

.page-decoration-contact.decoration-page {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.2);
    border-top-color: #d6254f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/*end contact*/

@media(max-width:768px){
  .overlap-top{
    border-top-left-radius:0px;
    margin-top:-80px;
    z-index:1;
    position:relative;
    padding-top:calc(var(--section-padding-md) + 100px);
  }
}

.chiffre-cle-chevron-button-control {
    width: 40px;
    height: 40px;
    background-color: #d6254f;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d6254f;
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #d9232d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Newsletter section */
.newsletter-section {
  padding-top: 100px;
  padding-bottom:0px;  
}

.newsletter-section #newsletter-carousel .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 60px;
}

.newsletter-section #newsletter-carousel .date-newsletter {
  font-size: 1.2rem;
  color: #999;
}

.newsletter-section #newsletter-carousel .titre-newsletter h2 {
  color: #d6254f;
  font-size: clamp(1.5rem, 2vw, 2.2rem); /* adaptatif */
}

.newsletter-section #newsletter-carousel .newsletter-number {
  background-color: #d6254f;
  position: absolute;
  bottom: -5px;
  right: 0px;
  border-radius: 30px;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  width: auto;
  min-width: 40%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-section #newsletter-carousel .learn-more {
  position: absolute;
  bottom: -25px;
  left: 20%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.newsletter-section #newsletter-carousel .newsletter-number h1 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
}

.newsletter-section #newsletter-carousel .pattern-newsletter {
  position: absolute;
  bottom: -45px;
  left: -100px;
  width: auto;
}

.newsletter-section #newsletter-carousel .pattern-newsletter img {
  max-width: 70%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.newsletter-section .carousel .carousel-inner {
  overflow: inherit;
}

.newsletter-section .carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #b7b7b7;
}

.newsletter-section .carousel .carousel-indicators .active {
  background-color: #FFF;
  border: 4px solid;
  border-color: #d6254f;
}

.newsletter-section .carousel .carousel-indicators {
  bottom: -125px;
  align-items: center;
}

.newsletter-section .carousel .carousel-control-prev , .newsletter-section .carousel .carousel-control-next {
  font-size: 50px;
  width: 50px !important;
  color: #555;
  opacity: 1;
}

@media (max-width: 1024px) {
  .newsletter-section #newsletter-carousel .pattern-newsletter {
    bottom: -30px;
  }

  .newsletter-section #newsletter-carousel .content-container {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .newsletter-section #newsletter-carousel .pattern-newsletter {
    bottom: -10px;
    left: -20px;
  }

  .newsletter-section #newsletter-carousel .content-container {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .newsletter-section #newsletter-carousel .learn-more {
    bottom: -70px;
    left: inherit;
    width: 100%;
  }

  .newsletter-section #newsletter-carousel .content-container {
    justify-content: inherit;
  }

  .newsletter-section #newsletter-carousel .image-container img {
    height: 290px;
    object-fit: cover;
  }

  .newsletter-section #newsletter-carousel .newsletter-number {
    border-radius: 0px;
    height: 25%;
  }

  .video-section .video-container .controls img{
    width: 30px;
    height: 30px;
    object-fit: cover;
  }
}

.border-radius-0 {
  border-radius: 0px !important;
}

.headlines-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  width: 100%;
  aspect-ratio: 9 / 16;
}

.headlines-card .thumbnail {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  cursor: pointer;
}

.headlines-card .thumbnail-mobile {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  cursor: pointer;
  display: none;
}

/* @media (max-width: 768px) {
  .headlines-card {
    max-height: 290px;
  }

  .headlines-card .thumbnail {
    display: none;
  }

  .headlines-card .thumbnail-mobile {
    display: block;
  }
} */

.newsletter-card {
  border: none;
  background: transparent;
  position: relative;
}

.newsletter-card img {
  width: 100%;
  border-radius: 20px;
}

.newsletter-title {
  background: white;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.newsletter-footer {
  margin-top: 20px;
  justify-content: space-between;
  padding-right: 50px;
}

.newsletter-tag {
  background-color: #d41f4f;
  color: #fff;
  padding: 0px 20px;
  border-radius: 15px;
  font-size: 3rem;
  display: flex;
}

.newsletter-tag .newsletter {
  position: relative;
  align-content: center;
}

.newsletter-tag .newsletter img{
  width: 37px;
  height: 37px;
  object-fit: cover;

  position: absolute;
  top: 50%;
}

.newsletter-tag .number {
  font-size: 5rem;
  margin-left: 50px;
  font-weight: 600;
}

.newsletter-card-body {
  width: 100%;
  position: absolute;
  bottom: -3.5rem;
}

.carousel-indicators-newsletter {
  margin-right: -20% !important;
  bottom: -80px !important;
}

.carousel-control-prev-newsletter {
  left: 70px !important;
}

.carousel-control-next-newsletter {
  right: -70px !important; 
}

@media (max-width: 1600px) {
  .newsletter-tag {
    font-size: 2rem;
  }
  
  .newsletter-tag .number {
    font-size: 3.5rem;
  }

  .newsletter-card-body {
    bottom: -2.5rem;
  }

  .carousel-indicators-newsletter {
    margin-right: -15% !important;
    bottom: -60px !important;
  }
}


@media (max-width: 1200px) {
  .newsletter-tag .newsletter img {
    width: 25px;
    height: 25px;
  }

  .newsletter-tag {
    font-size: 2rem;
  }
  
  .newsletter-tag .number {
    font-size: 2.5rem;
  }

  .newsletter-footer {
    padding-right: 0px;
  }

  .newsletter-card-body {
    bottom: -1.5rem;
  }

  .carousel-indicators-newsletter {
    margin-right: -10% !important;
    bottom: -100px !important;
  }

  .carousel-control-prev-newsletter {
    top: -80px !important;
    left: 0 !important;
  }
  
  .carousel-control-next-newsletter {
    top: -80px !important; 
  }
}

@media (max-width: 992px) {
  .newsletter-tag {
    font-size: 1.5rem;
    padding: 10px 20px;
  }

  .newsletter-tag .newsletter img {
    width: 20px;
    height: 20px;
  }
  
  .newsletter-tag .number {
    font-size: 1.5rem;
    margin-left: 25px;
  }
}

@media (max-width: 768px) {
  #newsletter-carousel {
    margin-bottom: 100px;
  }

  .carousel-indicators-newsletter {
    margin-right: 0 !important;
    bottom: -90px !important;
  }

  .newsletter-tag {
    font-size: 1rem;
  }
  
  .newsletter-tag .number {
    font-size: 1rem;
    margin-left: 25px;
  }

  .carousel-control-next-newsletter {
    right: 0 !important; 
  }

  .newsletter-card-body {
    bottom: -1rem;
  }

  .newsletter-footer {
    margin-top: 0px;
  }
}

.gray-middle {
  position: relative;
}

.gray-middle::after {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 65%;
  background: #f1f0f0;      
  border-top-left-radius: 75px;
  border-bottom-right-radius: 75px;
  z-index: -1; 
}

.position-escalier {
    position: fixed;
    right: 15px;
    top: 50%;
    z-index: 5;
    margin: 0;
    padding: 0;
    display: block;
}

@media(max-width:992px) {
    .position-escalier {
        display: none;
    }
}

.position-escalier ul {
    list-style: none;
    liste-style-type: none !important;
}

.position-escalier li {
    padding: 0;
    text-align: center;
}

.position-escalier li a {
    padding: 10px;
    width: 4px;
    height: 4px;
    display: block;
    text-shadow: 0px 0.5px 1px rgb(255 255 255 / 30%);
}

.position-escalier li a.actif-escalier:before {
    width: 10px;
    height: 10px;
    background: black;
    margin-top: -4px;
    right: 3px;

}

.position-escalier li a:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

