
.headerMdv img{
    height: 50px;
}


  @keyframes pulseSlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(114,120,203, 0.6); }
    70% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(114,120,203, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(114,120,203, 0); }
  }
  .animate-pulse-slow {
    animation: pulseSlow 2.5s infinite;
    transition: all 0.3s ease;
  }
  .animate-pulse-slow:hover {
    transform: scale(1.1);
  }
