/* fiche style css */ 

@keyframes pulseLight {
  0% {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  }
}

/* animation si nécessaire

  box-shadow: 0 2px 5px rgba(67, 176, 241, 0.7);
  animation: pulseLight 2s infinite ease-in-out;

*/

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 749px) { 
  .language-selector select {
    padding: 6px 6px;
    margin-top: 10px;
    justify-content: left;
    font-size: 10px;
    border: 1px solid #2d333b;
    border-radius: 5px;
    background-color: #020509;
    color:#f4f6fc;
    cursor: pointer;
  }

  .language-selector {
    margin-right: 0px;
    display: flex;
    align-items: center;
  }

  .separator-box {
    width: 70%;
    height: 1px;
    background-color: #2d333b;
    margin: 0 16px;
  }
}

@media screen and (min-width: 749px) { 
  .language-selector select {
    padding: 6px 7px;
    margin-top: -5px;
    font-size: 10px;
    border: 1px solid #2d333b;
    border-radius: 5px;
    background-color: #020509;
    color:#f4f6fc;
    cursor: pointer;
  }

  .language-selector {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
}  

header {
  padding: 10px 0;
  width: 100%;
  top: 0;
  background: #090909;
  border-bottom: 1px solid #2d333b;
}

body {
  font-family: Arial, sans-serif;
  background-color: #090909;
  margin: 0;
  padding: 0;
}

.Btn {
  width: 35px;
  height: 35px;
  background: #161616;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: fixed;
  cursor: pointer;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.arrow path {
  fill: #fff;
  width: 15px;
  height: 15px;
}

/* --- MOBILE NAV MENU --- */
.nav-menu-mobile {
  position: fixed;
  top: 0;
  font-family: Figtree;
  left: 0;
  width: 85%;
  height: 92vh;
  background-color: #090909;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  border-right: 1px solid #2d333b;
}

.nav-menu-mobile.active {
  transform: translateX(0); 
}

/* --- PC NAV MENU (hamburger-pc) --- */
.nav-menu-desktop {
  position: fixed;
  top: 0;
  font-family: Figtree;
  left: 0;
  width: 33%;
  height: 92vh;
  background-color: #090909;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  border-right: 1px solid #2d333b;
}

.nav-menu-desktop.active {
  transform: translateX(0); 
}

.desktop-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 10px;
  padding-top: 50px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
}

.desktop-nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 3px;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: white;
  transition: width 0.4s ease;
}

.desktop-nav-links li a:hover {
  color: white;
}

.desktop-nav-links li a:hover::after {
  width: 100%;
}
/* --- NAV LINKS MOBILE --- */
.mobile-header {
  border-bottom: 1px solid #8b949e;
  padding-bottom: 15px; 
  margin-bottom: 20px;
}

.mobile-logo {
  width: 46px;
  height: auto;
  text-align: right;
  align-content: right;
  right: 10px;
  justify-content: right;
  justify-items: right;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 25px;
}

.mobile-nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.box {
  background-color: #111111;
  border: 1px solid #2d333b;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.box p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.instagram-link {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin: 15px 10px;
  margin-bottom: 20px;
}

.box-language-pc {
  background: linear-gradient(to right, #101010, #171717);
  border: 1px solid #2d333b;
  padding: 15px;
}

.box-language-pc select {
    text-align: center;
    margin: 0 auto;
}

.box-pc {
  margin-top: -30px;
  background: linear-gradient(to right, #101010, #171717);
  border: 1px solid #2d333b;
  padding: 2px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.box-pc p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* HAMBURGER MOBILE */
@media screen and (max-width: 749px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 9px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.4s ease;
    position: absolute;
    left: -10px; /* tout à gauche */
  }

  .hamburger .bar {
    width: 20px;
    height: 1px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
    transform-origin: center;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2.6px);
  }

  .hamburger.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2.6px);
  }

  body.menu-active {
    overflow: hidden;
  }
}

/* HAMBURGER PC */
@media screen and (min-width: 749px) {
  .hamburger-pc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    margin: 0 auto !important;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.4s ease;
    position: absolute;
    left: -2rem; /* tout à gauche */
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-pc .bar {
    width: 20px;
    height: 1px; /* un peu plus épais pour bien voir la croix */
    background-color: #fff;
    margin: 3px 0; /* espace entre les 2 barres */
    transition: 0.4s;
    transform-origin: center;
  }

  /* Animation active avec seulement 2 barres */
  .hamburger-pc.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2.6px);
  }

  .hamburger-pc.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2.6px);
  }

  body.menu-active {
    overflow: hidden;
  }
}



/* Responsive : menu desktop caché sur mobile */
@media screen and (max-width: 749px) {
  .nav-menu {
    display: none;
  }
}

/* Footer */
.separator-footer {
  width : 94%;
  height: 1px;
  background-color: #2d333b;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

footer {
  background: #090909;
  border-top:  1px solid #2d333b;
  color: #8b949e;
  text-align: center;
  padding: 25px 0;
  bottom: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: -10px;
}   

.container-header {
  display: flex;
  align-items: center;
  width: 90%;
  height: 40px;
  position : relative;
  margin: 0 auto;
  justify-content: center;
  padding: 10px 0;
}

@media screen and (max-width: 749px) {
  .logo {
    height: 40px;
    margin-right: 0px;
    margin-top: 10px;
    right: 20px;
  }
}
@media screen and (min-width: 749px) {
    .logo {
      height: 42px;
      width: auto;
      margin: 0 auto;
    }
  }

.nav-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 25px;
  justify-content: left;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #f4f6fc;
  font-size: 14px;
  transition: color 0.3s ease;
}

hr {
    margin-top: -8px;
}

.footer-text {
    font-size: 13px;
    font-weight: lighter;
}

 *:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
* {
    -webkit-tap-highlight-color: transparent;
  }

  
  /* CSS POUR LES SECTIONS BODY */
  .hero-immersive-light {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to bottom, #121212, #121212);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    border-bottom: 1px solid #1f2937;
  }

  .hero-immersive-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(square, rgba(255, 255, 255, 0.1), transparent 50%);
    z-index: 0;
  }

  .subtle-notice {
    display: flex;
    font-family: Figtree;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
  }

  .subtle-notice a {
    text-decoration: none;
    font-family: Figtree;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .subtle-notice img {
    width: 30px;
    animation: pulse 3s ease-in-out infinite;
  }

  .subtle-notice span {
    font-weight: bold;
    position: relative;
    font-family: Figtree;
  }

  .subtle-notice .highlight {
    text-decoration: underline;
    color: white;
    text-shadow: 0 0 10px white, 0 0 20px white;
  }

  @keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
  }

  .button-container {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .neon-button {
    padding: 15px 30px;
    font-size: 0.7rem;
    font-family: Figtree;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .neon-button.primary {
    color: #121212;
    background: white;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }

  .neon-button.secondary {
    color: white;
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
  }

  .neon-button:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  }

  .neon-button.secondary:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }

  .immersive-content h1 {
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 350;
    font-family: Figtree;
  }

  .immersive-content p {
    margin-bottom: 20px;
    font-family: Helvetica;
  }

  /* CSS PORTAIL ARKHADE */
  .menu-container {
    background-color: #111111;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    border: 1px solid #212121;
  }

  .menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }

  .link-ymg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 15px;
    justify-content: center;
  }

  .link-ymg:hover {
    color: #f0f0f0;
  }

  .link-icon-ymg {
    margin-bottom: 5px;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon-arkhade {
    width: 33px;
    height: 33px;
    object-fit: contain;
  }

  .icon-defis {
    width: 33px;
    height: 33px;
    object-fit: contain;
  }

  .icon-insta {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .link-title {
    font-weight: bold;
    display: inline-block;
    text-align: center;
    margin-top: 5px;
    position: relative;
    top: -4px;
    left: 8px;
  }

  .popup-page {
    display: none;
    width: 90%;
    margin: 20px auto;
    background-color: #111111;
    color: white;
    border-radius: 5px;
    padding: 20px;
    transition: opacity 0.3s ease-in-out;
    position: relative;
    text-align: center;
    border: 1px solid #212121;
  }

  .popup-content {
    padding: 20px;
    text-align: center;
  }

  .popup-page.active {
    display: block;
    opacity: 1;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
  }

  .arkhade-image-container, .defis-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }

  .arkhade-image {
    max-width: 80%;
    max-height: 300px;
    border-radius: 7px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  .defis-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 7px;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .defis-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.5);
  }

  .insta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #202020;
    border-radius: 8px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s 
    ease;
    margin: 0 auto;
  }

  .insta-button:hover {
    transform: scale(1.1);
  }

  .insta-button .icon {
    margin-right: 10px;
  }

  .insta-button .text {
    font-weight: bold;
    color: white;
    text-decoration: underline;
    text-decoration-color: #202020;
  }

  .insta-button .text:hover {
    text-decoration-color: #202020;
  }

  .introduction-bloc {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 88%;
    border: 1px solid #2d333b;
    border-radius: 7px;
    background-color: #060606;
    padding: 16px;
    font-family: Helvetica, sans-serif;
  }

  .introduction-bloc .bloc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .introduction-bloc .separator {
    width: 5px;
    height: 20px;
    background-color: #fff;
    border-radius: 2px;
    animation: pulseLight 2s infinite;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
  }
  
  .introduction-bloc .bloc-title {
    color: #f4f6fc;
    font-size: 14px;
    font-weight: bold;
  }
  
  .introduction-bloc .bloc-text {
    color: #8b949e;
    font-size: 13px;
  }

.menu-bar {
  width: 90%;
  height: 50px;
  background-color: #060606;
  display: flex;
  border-radius: 5px;
  border: 1px solid #2d333b;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.icon {
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: translateX(-5px);
}

#icon1 img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
#icon2 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
#icon3 img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
#icon4 img {
  width: 33px;
  height: 33px;
  object-fit: contain;
  display: block;
}

.label {
  font-size: 12px;
  color: #d1d5db;
  margin-left: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}

.icon:hover .label,
.icon.active .label {
  opacity: 1;
  transform: translateX(0);
}

.popup-container {
  width: 90%;
  background-color: #060606;
  border-radius: 5px;
  border: 1px solid #2d333b;
  color: white;
  margin: auto;
  margin-top: 10px;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;

  /* Animations pour ouverture/fermeture */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.popup-container.open {
  max-height: 500px; /* Ajuste selon contenu */
  opacity: 1;
  visibility: visible;
}

.popup-container img {
  height: 60px;
  margin-top: 5px;
}

.close-btn {
  position: absolute;
  top: 9px;
  right: 15px;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #2d333b;
  background-color: transparent;
  cursor: pointer;
  color: white;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
  background-color: #2d333b;
  transform: scale(1.05);
}

/* CSS de la section - Classes préfixées et pas de Tailwind */
        .yt-rec-container {
            background-color: #090909;
            display: none;
            padding: 20px;
            border: 1px solid #2d333b;
            border-radius: 5px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            width: 85%;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin: 20px auto;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        }
        .yt-rec-title {
            font-size: 25px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .yt-rec-description-text {
            color: #8b949e;
            margin-bottom: 24px;
        }
        .yt-rec-btn {
            background-image: linear-gradient(to right, #141414, #222222);
            color: white;
            padding: 12px 24px;
            max-width: 150px;
            margin: 0 auto;
            border-radius: 10px;
            border: 1px solid #2d333b;
            font-weight: 600;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .yt-rec-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        .yt-rec-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }
        .yt-rec-icon {
            width: 25px;
            height: 25px;
            vertical-align: middle;
        }
        .yt-rec-video-grid { /* Nouvelle classe pour le conteneur de grille */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Rend la grille responsive */
            gap: 16px;
            margin-top: 24px;
        }
        .yt-rec-video-item { /* Nouvelle classe pour chaque élément vidéo */
            background: linear-gradient(to right, #141414, #181818);
            padding: 20px;
            border-radius: 12px;
            text-align: left;
            border: 1px solid #2d333b;
            transition: all 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow: hidden; /* Pour s'assurer que les coins arrondis de l'image sont respectés */
        }
        .yt-rec-video-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        .yt-rec-video-item.hidden {
            display: none; /* Pour masquer les cartes vides */
        }
        .yt-rec-video-preview { /* Classe pour le lien de l'image */
            display: block;
            width: 100%;
            height: 180px; /* Hauteur fixe pour la cohérence */
            border-radius: 8px;
            overflow: hidden; /* S'assure que l'image respecte le border-radius */
            margin-bottom: 8px;
        }
        .yt-rec-video-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Couvre la zone, rognant si nécessaire */
            border-radius: 8px; /* Appliquer le border-radius à l'image aussi */
        }
        .yt-rec-video-title { /* Classe pour le titre de la vidéo */
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .yt-rec-video-description { /* Classe pour la description de la vidéo */
            color: #8b949e;
            font-size: 14px;
            margin-bottom: 8px;
            line-height: 1.5;
            flex-grow: 1; /* Permet à la description de prendre l'espace restant */
        }
        .yt-rec-video-link { /* Classe pour le lien "Voir sur YouTube" */
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            display: inline-block; /* Pour que le lien ne prenne pas toute la largeur */
            word-wrap: break-word;
            margin-top: auto; /* Pousse le lien vers le bas de la carte */
        }
        .yt-rec-video-link:hover {
            text-decoration: underline;
        }
        .yt-rec-loading-spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left-color: #fff;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            animation: spin 1s linear infinite;
            display: none;
            margin: 0 auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .yt-rec-message-box {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            display: none;
        }
        .yt-rec-message-box.error {
            background-color: #fee2e2;
            color: #b91c1c;
            border-color: #ef4444;
        }
        .yt-rec-btn[disabled] {
            opacity: 0.5;
            cursor: not-allowed;
        }

  *:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
* {
    -webkit-tap-highlight-color: transparent;
  }

a {
    all: unset;
    cursor: pointer; /* pour garder le curseur "main" */
  }

.breadcrumbs {
    margin: auto;
    font-family: 'Figtree', sans-serif;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #2d333b;
    border-radius: 7px;
    background-color: #090909;
    padding: 4px;
    font-family: Helvetica, sans-serif;
  }

  @media screen and (min-width: 768px) { 
    .breadcrumbs {
    width: 95%;
    }
  }

  @media screen and (max-width: 768px) { 
    .breadcrumbs {
    width: 90%;
    }
  }

  .breadcrumbs .breadcrumbs-bloc {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
 
  .breadcrumbs .breadcrumbs-title {
    color: #fff;
    font-size: 7px;
    margin: 0 auto;
    text-transform: uppercase;
  }