#drag-slider .wrapper {
  /*max-width: 1100px;*/
  width: 100%;
  position: relative;
}
#drag-slider .wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #e31410;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index:2;
}
#drag-slider .wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
#drag-slider .wrapper i:first-child{
  left: -22px;
}
#drag-slider .wrapper i:last-child{
  right: -22px;
}
#drag-slider .wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
#drag-slider .carousel::-webkit-scrollbar {
  display: none;
}
#drag-slider .carousel.no-transition {
  scroll-behavior: auto;
}
#drag-slider .carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
#drag-slider .carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
#drag-slider .carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
#drag-slider .carousel .card {
  scroll-snap-align: start;
  /*height: 342px;*/
  list-style: none;
  background: transparent;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
/*.carousel .card .img {*/
/*  background: #8B53FF;*/
/*  height: 148px;*/
/*  width: 148px;*/
/*  border-radius: 50%;*/
/*}*/
.card .img img {
  width: 100%;
  height: 300px;
  object-fit: cover !important;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}

.left-aarow{
   width: 40px; 
   height: 40px; 
}

.right-aarow{
   width: 40px; 
   height: 40px; 
}

@media screen and (max-width: 900px) {
#drag-slider  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
#drag-slider  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
  #drag-slider .wrapper i {
          height: 40px;
    width: 40px;
  }
  .left-aarow{
   width: 30px; 
   height: 30px; 
   margin-top:-10px;
}

.right-aarow{
   width: 30px; 
   height: 30px; 
   margin-top:-10px;
}
}

