html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
	body{
		overflow-x:hidden;
	}
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 200px; 
    }

    .text-container {
      font-family: var(--e-global-typography-f9ed465-font-family), Sans-serif;
      font-size: var(--e-global-typography-f9ed465-font-size);
      font-weight: var(--e-global-typography-f9ed465-font-weight);
      line-height: var(--e-global-typography-f9ed465-line-height);
      letter-spacing: var(--e-global-typography-f9ed465-letter-spacing);
      word-spacing: var(--e-global-typography-f9ed465-word-spacing);
      color: var(--e-global-color-text);
      text-align: center;
    }

    .highlight-blue {
      background-color: #00A9E9;
      color: #fff;
      padding: 0.03em 0.2em;
      border-radius: 0.2em;
      display: inline-block;
      width: 6em;       
      overflow: hidden;
      text-align: center;
      vertical-align: middle;
    }
    .highlight-pink {
      background-color: #F823DB;
      color: #fff;
      padding: 0.03em 0.2em;
      border-radius: 0.2em;
      display: inline-block;
      width: 5.5em;      
      overflow: hidden;
      text-align: center;
      vertical-align: middle;
    }

    .rotating-word {
      display: inline-block;
      white-space: nowrap; /* pour éviter le retour à la ligne */
    }
	
	 /*   .hero-btn, .general-btn {
 			 opacity: 0; 
  		 filter: blur(50px); 
		}
	*/
	  .icons-presentation {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .icons-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    text-align: center;
    opacity: 0;
    filter: blur(10px);
    will-change: transform, opacity, filter;
  }
  .icons-container .icon {
    width: 100px;
    height: 100px;
    border-radius: 7px;
    padding: 5px;
    border: 2px #EFEFEF solid;
  }
  .icons-container .title {
    display: block;
    margin-top: 10px;
    font-size: var(--e-global-typography-accent-font-size);
    line-height: var(--e-global-typography-accent-line-height);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    opacity: 0;
  }
	
	.hero-animation {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; 
  overflow: visible;
}

.hero-animation svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 400px);
  height: auto;
  will-change: transform;
  pointer-events: none;
}


