:root {
  font-size: 62.5%;
}

.block-coeur {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/221;
  overflow: visible;
  margin: 40px auto;
}
@media (min-width: 782px) {
  .block-coeur {
    margin-top: var(--coeur-mt-desktop, 40px);
  }
}
.block-coeur__shape {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.block-coeur__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  -webkit-transition: stroke-dashoffset 2.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dashoffset 2.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: stroke-dashoffset;
}
.block-coeur.is-active .block-coeur__path {
  stroke-dashoffset: 0;
}
.block-coeur.backend .block-coeur__path {
  stroke-dashoffset: 0;
  -webkit-transition: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .block-coeur__path {
    stroke-dashoffset: 0;
    -webkit-transition: none;
    transition: none;
  }
}