.image-carousel {
  margin: 28px 0 36px;
  position: relative;
  padding: 0 56px;
}

.image-carousel-swiper {
  position: relative;
  overflow: hidden;
}

.image-carousel__item {
  border: none;
  margin: 0;
  overflow: hidden;
}

.image-carousel__item img {
  display: block;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  width: 100%;
}

.image-carousel .slick-arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.0);
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  z-index: 3;
}

.image-carousel .slick-prev {
  left: 0;
}

.image-carousel .slick-next {
  right: 0;
}

.image-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 0;
}

.image-carousel__dot {
  background: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 10px;
  line-height: 0;
  padding: 0;
  width: 10px;
}

.image-carousel__dot.is-active {
  background: var(--color-primary);
}

@media (max-width: 767px) {
  .image-carousel {
    padding: 0 44px;
  }

  .image-carousel .slick-arrow {
    height: 36px;
    width: 36px;
  }
}
