



  @media screen and (min-width: 768px) {
    #scroll-container {
  
        border-radius: 5px;
        height: 6.9rem;
        overflow: hidden;
      }
      
      #scroll-text {
        height: 100%;
        text-align: center;
    
    
    
    
        
        
        /* animation properties */
        -moz-transform: translateY(100%);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        
        -moz-animation: my-animation 7s linear ;
        -webkit-animation: my-animation 7s linear infinite;
        animation: my-animation 6s linear infinite;
      }
      
      /* for Firefox */
      @-moz-keyframes my-animation {
        from { -moz-transform: translateY(100%); }
        to { -moz-transform: translateY(-100%); }
      }
      
      /* for Chrome */
      @-webkit-keyframes my-animation {
        from { -webkit-transform: translateY(100%); }
        to { -webkit-transform: translateY(-100%); }
      }
      
      @keyframes my-animation {
        from {
          -moz-transform: translateY(100%);
          -webkit-transform: translateY(100%);
          transform: translateY(100%);
        }
        to {
          -moz-transform: translateY(-100%);
          -webkit-transform: translateY(-100%);
          transform: translateY(-140%);
        }
      }
  }

  

  .item__info__single > p{
    font-weight: bold;
  }




.bee {
  margin: auto;
  left: 0;
  right: 0;
  top: 1;
  bottom: 0px;
  border-radius: 50px;
  animation: fly 4s infinite;
}
@keyframes fly {
  50% {
    transform: translateY(-30px);
  }
}



.wrapperspin{
  
  box-sizing: content-box;
  background-color: #ffffff;
  height: 45px;
  position: absolute;
  z-index: 1;
  padding: 10px 20px;
margin-top: 110px;
  display: flex;
  border-radius: 8px;
  box-shadow: 0 20px 25px rgba(0,0,0,0.2);

  
}
.spintext11{
  font-size: 25px;
  line-height: 1.6;
}

.spinimg1{
  height: auto;
  width: 200px;
}
.words{
  overflow: hidden;
}
span > img{
  display: block;
  height: 100%;

  padding-left: 10px;
  color: #fe0000;
  animation: spin_words 7s infinite;
}
@keyframes spin_words{
  10%{
      transform: translateY(-100%);
  }
  25%{
      transform: translateY(-100%);
  }
  35%{
      transform: translateY(-212%);
  }
  50%{
      transform: translateY(-200%);
  }
  60%{
      transform: translateY(-312%);
  }
  75%{
      transform: translateY(-300%);
  }
  85%{
      transform: translateY(-412%);
  }
  100%{
      transform: translateY(-400%);
  }

 
}


@media screen and (max-width: 462px) {
  .ceoimage {
    display: flex;
    align-items: center;
    justify-content: center;
  height: auto;
  width: 380px !important;   
  object-fit: cover;
  }      
  .spintext11 {
    font-size: 16px;
    line-height: 1.6;
}

.spinimg1{
  height: auto;
  width: 172px;
}
}