@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes pulse-color {
  0%   { transform: scale(1); color: yellow; }
  25%  { transform: scale(1.05); color: blue; }
  50%  { transform: scale(1.1); color: red; }
  75%  { transform: scale(1.05); color: purple; }
  100% { transform: scale(1); color: white; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.annonce-wrapper {
  position: relative;
  height: 40px;
  overflow: hidden;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-weight: bold;
}

.annonce-animée {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
  opacity: 1;
  position: absolute;
  width: 100%;
  top: 0;
  border-right: 2px solid #000;
  animation: typing 4s steps(60, end) forwards, 
            blink 0.75s step-end infinite, 
            fadeOut 1s ease-in-out 4s forwards, 
            fadeIn 1s ease-in-out 5s forwards, 
            pulse-color 2s ease-in-out 9s infinite;
}


.tp-product-category-thumb a {
    align-items: center;
    background-color: var(--tp-grey-1);
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #fff 0, #bddeff 100%);
    border-radius: 5%;
    display: inline-block;
    display: flex;
    height: 180px;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    text-align: center;
    width: 180px;
  
  }


.tp-section-title-wrapper h3, .tp-section-title-wrapper-6 h3  {
  
      margin-bottom: 60px;
  
    }