html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.elementor-nav-menu .elementor-item:hover {
	color:#F8BC0C !important;
}

/* Header */
.stickhead {
  width: 100%;
  background-color: transparent !important;
  transition: background-color 0.3s ease !important;
}

.stickhead.scrolled {
  background-color: #0B2154 !important;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 30px -10px !important;
}

.stickhead.scrolled .elementor-nav-menu--dropdown, .stickhead.scrolled .elementor-nav-menu--dropdown a:hover, .stickhead.scrolled .elementor-nav-menu--dropdown a.elementor-item-active {
	background-color: #0B2154 !important;
}

/* Header noir par défaut sur mobile et tablette */
@media (max-width: 1830px) {
  .navbar-menu {
    font-size: 12px !important;
  }
}

/* Header noir par défaut sur mobile et tablette */
@media (max-width: 1530px) {
  .navbar-menu {
    font-size: 10px !important;
  }
}

@media (max-width: 1415px) {  
    .main-navbar {
        display: none !important;
    }

    .stickhead .elementor-hidden-mobile{
        display: none !important;
    }

    .stickhead .elementor-hidden-desktop {
        display: flex !important;
    }
}

/* 1. Le conteneur (le "cadre") */
.texte-slide {
    overflow: hidden !important;
    width: 100% !important;
    white-space: nowrap !important;
    position: absolute; 
    pointer-events: none;
}

/* 2. Le titre (le "train") */
.texte-slide .elementor-heading-title {
    display: inline-block !important;
    width: max-content !important;
    margin: 0 !important;
    padding-right: 50px;
    
    /* Animation */
    animation: slide-perfect 25s linear infinite !important;
    
    font-size: 10vw !important;
    font-weight: 900 !important;
    color: transparent !important;
    text-transform: uppercase;
    line-height: 1 !important;

    -webkit-text-stroke: 3px #ffffff !important; 
    
    paint-order: stroke fill;
}

/* 3. L'animation pour une boucle sans coupure */
@keyframes slide-perfect {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 1024px) {
    .texte-slide .elementor-heading-title {
        font-size: 20rem !important;
        -webkit-text-stroke: 3px #ffffff !important;
    }
}

.carte-glass {
    /* 1. Fond semi-transparent (indispensable pour voir le flou) */
    background: rgba(255, 255, 255, 0.1) !important; 
    
    /* 2. L'effet de flou sur ce qui est DERRIÈRE la div */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px); 
    
    /* 3. Finitions pour copier ton image */
    border-radius: 40px !important; 
    border: 2px solid rgba(255, 255, 255, 0.2) !important; 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
}

.expert-button > .elementor-button-link {
    padding-left: 0px;
}

.e-n-tab-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding-right: 20px !important;
}

.e-n-tab-icon {
    display: flex !important;
    margin: 0 !important;
}

/* 1. Le conteneur global de la liste */
.elementor-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espace entre les lignes */
}

/* 2. Style commun à tous les textes */
.elementor-icon-list-text {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif; /* Assure-toi que la police est chargée */
    display: block;
}

/* 3. LIGNE 1 : Nom du projet */
.real-liste .elementor-icon-list-item:nth-child(1) .elementor-icon-list-text {
    font-size: 2rem !important; 
    font-weight: 900 !important; 
    line-height: 1.1;
}

/* 4. LIGNE 2 : Localisation */
.real-liste .elementor-icon-list-item:nth-child(2) .elementor-icon-list-text {
    font-size: 1.1rem !important;
    font-weight: 400 !important;  
    opacity: 0.9;                 
}

/* 5. LIGNE 3 : La Date */
.real-liste .elementor-icon-list-item:nth-child(3) .elementor-icon-list-text {
    font-size: 1.3rem !important; 
    font-weight: 800 !important;  
    letter-spacing: 1px;          
}

.a-decoration a {
	color: #f8bc0c; 
	text-decoration: none;
}

/* 1. On force le conteneur principal à prendre 100% et à distribuer l'espace */
.faq-widget .e-n-accordion-item-title {
    display: flex !important;
    flex-wrap: nowrap !important; /* On force le tout sur une seule ligne */
    align-items: center !important;
    width: 100% !important;
    padding-right: 0 !important; /* On colle bien au bord droit */
}

/* 2. Le titre prend 80% de la largeur */
.faq-widget .e-n-accordion-item-title-header {
    flex-basis: 80% !important;
    max-width: 80% !important;
    flex-grow: 0 !important; /* On l'empêche de dépasser */
}

/* 3. L'icône prend 20% de la largeur */
.faq-widget .e-n-accordion-item-title-icon {
    flex-basis: 20% !important;
    max-width: 20% !important;
    display: flex !important;
    justify-content: flex-end !important; /* Aligne l'icône tout à droite des 20% */
    flex-grow: 0 !important;
}

/* Optionnel : Ajuste la taille de l'icône SVG pour qu'elle ne soit pas trop énorme dans ses 20% */
.faq-widget .e-n-accordion-item-title-icon svg {
    width: 35px; /* Ajuste cette valeur selon ton besoin */
    height: auto;
}