/* .bnr-img2 {

opacity: 0;
transition: opacity 1s ease;

} */


@keyframes bnr-img2 {
    from {
      opacity: 0;
      transform: translateY(20px); /* Move the icon 20px down initially */
    }
    to {
      opacity: 1;
      transform: translateY(0); /* Move the icon back to its original position */
    }
  }
  
  /* Apply animation to the icon */
  .bnr-img2 {
    animation: bnr-img2 0.5s ease forwards; /* Use ease animation with a duration of 0.5s */
  }




.show {

opacity:1;

}


/* .header-top {
    display: inline-block;
 } */

/* .bubble {
    background-color: red;
    border-radius: 100px;
} */
