.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    /* border-radius: 10px; */
    direction: ltr;
    display: flex;
    flex-direction: column;
  }

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    direction: rtl;
}
.slide {
    position: relative;
    min-width: 100%;
    height: 350px;
    background-position: center;
    background: linear-gradient(90deg, #F1EFEF -24.18%, #F9F8F8 50.26%, #E7E5E5 114.84%);
    background-size: 1000% 1000%;
    -webkit-animation: AnimationBackgroundGradient 3s ease infinite;
    -moz-animation: AnimationBackgroundGradient 3s ease infinite;
    -o-animation: AnimationBackgroundGradient 3s ease infinite;
    animation: AnimationBackgroundGradient 3s ease infinite;
    border-radius: 10px;
    cursor: pointer;
  }
  @-webkit-keyframes AnimationBackgroundGradient {
    0% {
      background-position: 0 69%;
    }
  
    100% {
      background-position: 100% 32%;
    }
  }
  
  @-moz-keyframes AnimationBackgroundGradient {
    0% {
      background-position: 0 69%;
    }
  
    100% {
      background-position: 100% 32%;
    }
  }
  
  @-o-keyframes AnimationBackgroundGradient {
    0% {
      background-position: 0 69%;
    }
  
    100% {
      background-position: 100% 32%;
    }
  }
  
  @keyframes AnimationBackgroundGradient {
    0% {
      background-position: 0 69%;
    }
  
    100% {
      background-position: 100% 32%;
    }
  }
  .slide img{
    width: 100%;
    height: 100%;    
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
    object-fit: cover;    
  }
  .slide video{
    width: 100%;
    height: 100%;    
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
    background: #030303;  
  }

  .prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsla(0, 0%, 100%, .7);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prev-btn {
    right: 0;
  }

  .next-btn {
    left: 0;
  }

  .dots {
    width: 100%;
    height: 25px;
    display: flex;
    direction: rtl;
    align-items: center;
    justify-content: center;
  }

  .dot {
    height: 7px;
    width: 7px;
    margin: 0 5px;
    background-color: #d4d4d4;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;

  }

  .dot.active {
    height: 9px;
    width: 9px;
    background-color: #ffb25e;
  }
  @media (max-width:768px) {
    .prev-btn, .next-btn {
        display: none;
    }
    .slide {
        height: 250px;
        border-radius: unset;
    }
    .slide img{
        border-radius: unset;
    }
    .dots {
      width: 100%;
      height: 25px;
      display: flex;
      direction: rtl;
      align-items: center;
      justify-content: center;
      margin-top: -25px;
      position: relative;
    }
    .dot.active {
      background-color: #ffffff;
    }
  }