/* Common */
h1, h2, h3, h4, h5, h6, p, ol, ul, li, div {
  hyphens: none !important;
}


/* Conteneur pour les deux divs */
.container-metre {
    display: flex;
    width: 100%; /* S'adapte à la largeur de la fenêtre */
    position: absolute; /* Fixé pour rester visible pendant le défilement */
    top: 50px;
  }

  /* Div 1 avec le ruban mesurant comme fond qui se déplace */
  .tape-measure {
    flex: 1;
    width: 100%;
    height: 220px;
    background-image: url('https://tscwaterproofing.tondesign.ca/wp-content/uploads/2025/03/tools_measure.png');
    background-size: auto 100%;
    background-position: 110% 0;
    transition: background-position 1s ease-out;
    background-repeat: no-repeat;
  }

  @media (max-width: 1235px) {
    .tape-measure {
      /*background-position: -10% 0;*/
    }
  }



  /* Div 2 avec le boîtier fixe */
  .tape-case {
    width: 220px;
    height: 220px;
    background-image: url('https://tscwaterproofing.tondesign.ca/wp-content/uploads/2025/03/tools_corp.png');
    background-size: auto 100%;
    background-position: -30px 0;
    background-repeat: no-repeat;
    margin-left: -15px;
  }



  #toTop{
    color: #FFF;
    padding: 10px !important;
    cursor: pointer;
    background-color: var(--e-global-color-primary);
  }

  .elementor-slideshow__title{
    display: none !important;
  }