a[href='#shop']:hover {
    background-color: #232C61;
}

.bg-mesh {
  background-image: url('/assets/img/Pattern-lignes.svg');
}

div.order-1{
    display: flex;
    flex-direction: column;
    a.cta-fps{
        align-self: center;
        text-align: center;
    }
}

.partner-dot {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #eb1e27;
  border: 3px solid white;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(235, 30, 39, 0.65);
  animation: partner-pulse 2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.partner-card:hover{
  cursor: pointer;
}

.partner-dot:hover,
.partner-dot.is-active {
  transform: translate(-50%, -50%) scale(1.15);
  background: #37489c;
  box-shadow: 0 0 0 10px rgba(55, 72, 156, 0.12);
}

.partner-card {
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  padding: 1em;
}

.partner-card.is-active {
  border-color: rgba(55, 72, 156, 0.7);
  transform: translateY(-2px);
  background-color: #37489c;
}

@keyframes partner-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(235, 30, 39, 0.65);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(235, 30, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(235, 30, 39, 0);
  }
}

@media screen and (max-width:420px) {
  span.index-visit-fpcp{
    padding:0.5rem 1rem;
    background-color: #232C61;
    color: white;
    border-radius: 12px;
  }
}