

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: 0px;
  z-index: 9;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #db2727;
}

.hero-slider .prevArrow {
  right: 120px;
}

.hero-slider .nextArrow {
  right: 60px;
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 0px;
  text-align: center;
  left: 0;
  padding-left: 400;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #db2727;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* Wrapper */
.wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

/* Arrow icons */
.wrapper i {
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
}

.wrapper i#left {
    left: -20px;
}

.wrapper i#right {
    right: -20px;
}

/* Carousel container */
.carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* Images */
.carousel img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    user-select: none;
}

/* While dragging */
.carousel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel.dragging img {
    pointer-events: none;
}
