/* promo-glider.css */
.promo-glider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .promo-glider-container {
    position: relative;
    display: flex;
  }
  
  .promo-glider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .promo-glider-slide {
    min-width: 100%;
    display: flex;
justify-content: center;
align-items: center;
height: 100%;
border-bottom: 5px;
margin-top: 0px;

  }
  
  .promo-glider-slide img {
    width: 100%;
    display: none;
    
   
  }
  
  .promo-glider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  
  .promo-glider-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .promo-glider-dot.active {
    background-color: #ff6600;
  }
  