@charset "UTF-8";
.wp-block-group.is-style-frombottom {
  position: absolute;
  animation: slideUp 3s cubic-bezier(0.25, 0.8, 0.5, 1) 1.5s forwards; /* Animation douce sans rebond */
  left: 50%;
  top: 1000px;
  transform: translate(-50%, -50%);
  z-index: 0;
  min-width: 80%;
}

/* Animation pour faire monter la div avec un arrêt très doux à la fin */
@keyframes slideUp {
  0% {
    top: 1000px;
  }
  100% {
    top: 37%; /* Position finale douce */
  }
}