
ul li{
    list-style: none;
    position: relative;

}
ul li img{
    position: absolute;
    left: -28px;
    top: 4px;
    width: 15px;
    height: 17px;
}

.grey-section .bg-move{
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50% , -50%);
    z-index: -1;
  }
  
  .carousel-inner {
    min-height: 150px;
    display: flex;
    align-items: center;
  }
  
  .moveRight{
    animation-name: moveORight;
    animation-duration: 5s;
    animation-fill-mode: forwards;
  
  }
  
  .carousel-indicators {
    bottom: -30px;
  }
  
  
  @keyframes moveORight {
    0%{
      left: 35%;
    }
  
    50%{
        left: 60%;
    }
  
    100%{
      left: 48%;
    }
    
  }
  @media (min-width: 768px){
    .carousel-control-next, 
    .carousel-control-prev {
      width: 9%;
    }
  }
  @media (max-width: 767px){
    .carousel-inner .carousel-item p{
      font-size: 17px !important;
    }
  }