/*Text animation css start*/
.zoom-in-zoom-out {
  /* margin: 24px;
  width: 50px;
  height: 50px;
 background: green;*/
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

/*Text animation css end*/



 .tab-bg990 {
    background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);

    transition: 0.5s;
    background-size: 200% auto;

    box-shadow: 0 0 20px #eee;

    display: block;
  }

  .tab-bg990:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
         
         
 .tab-bg9910 {
    background-image: linear-gradient(to right, #b53869 0%, #0192d1  51%, #b53869  100%);
    transition: 0.5s;
    background-size: 200% auto;
    /* box-shadow: 0 0 20px #eee; */
    display: block;
    border-radius: 50px;
  }

 .tab-bg9910:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
         









