
@keyframes long {
  0% {
      width: 0
  }

  25% {
      width: 25%
  }

  50% {
      width: 100%
  }

  75% {
      width: 25%
  }

  to {
      width: 0
  }
}
 

@keyframes banner_animate{
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}