.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
/*  display: none !important;*/

  display: flex !important;

  pointer-events: none;
  z-index: 1;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  margin: 0;
  display: flex;
  justify-content: end;
  list-style: none;
}

.slick-dots li {
  width: 8px;
  height: 8px;
}

.slick-dots li button {
  pointer-events: auto;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: transparent;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: 0.5s ease all;
  border: 1px solid #fff;
}

.slick-dots li.slick-active button {
  width: 8px;
  background: #fff;
}

.slick-dots li button::before {
  content: none;
}

/*@media(min-width:992px) {

  .slick-dots {
    display: flex !important;
  }
}*/



.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover {
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 28px;
  background-image: url('../images/arrow-down.svg');
  top:45%;
}

.slick-prev {
  left: 15px;
  transform: rotate(90deg);
}

.slick-prev::before {
  display: none;
}

.slick-next {
  right: 15px;
  transform: rotate(-90deg);
}

.slick-next::before {
  display: none;
}


@media(min-width:992px) {

  .slick-prev {
    left: -45px;
  }

  .slick-next {
    right: -45px;
  }

  .image-slider .slick-prev {
    left: 15px;
  }
  
  .image-slider .slick-next {
    right: 15px;
  }
}

.image-slider img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media(min-width:1200px) {

  .image-slider .slick-prev {
    left: calc(50% + -630px);
  }

  .image-slider .slick-next {
    right: calc(50% + -630px);
  }
}

.column-image-slider{
  width: 100%;
}

.column-image-slider img{
  height: 80vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.column-image-slider.col2 img{
  height: 60vh;
  width: 100%;
}

@media(max-width: 991px) {
  .column-image-slider img{
   height: 60vh; 
  }

  .image-slider img {
    height: 40vh;
  }
}

@media(min-width:992px) {
  .column-image-slider.col2{
    max-width: 302px;
  } 

  .column-image-slider.col2 img{
    height: 50vh;
    max-height: 450px;
  }
}