.slider{
  height:100%;
  display: flex;
  align-items: center;
  position: relative;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 60px;
  height: 60px;
}
.carousel-control-next, .carousel-control-prev{
  width: auto;
}
.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: #c0beb6;
}
.carousel-indicators .active{
  background-color: #b5b1a5;
}

.slider-inner{
  height: 100%;
  width: 100%;
}
.item {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  /* -webkit-transition: -webkit-transform 1.2s ease-in-out !important;
    -o-transition: -o-transform 1.2s ease-in-out !important;
    transition: transform 1.2s ease-in-out !important; */
    opacity: 0;
}
.item img{
  object-fit: cover;
}

.item.next{
  opacity: 1;
}
.item.active{
 opacity: 1;
 z-index: 1;
}
.active.start{
  opacity: 0;
  transition: opacity 3s linear;
}