.ft-carousel {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.ft-carousel .carousel-inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: row
}
.ft-carousel .carousel-inner .carousel-item {
  float: none !important;
}
.ft-carousel .carousel-item img {
  width: 100vw;
  height:100%;
}

.ft-carousel .carousel-indicators {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
  text-align: center;
  font-size: 0;
}

.ft-carousel .carousel-indicators span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  margin: 0 4px;
  border-radius: 50%;
  cursor: pointer;
}

.ft-carousel .carousel-indicators span.active {
  background-color: #0f75f8;
}

.ft-carousel .carousel-btn {
  width: 50px;
  height: 45px;
  position: absolute;
  z-index: 2;
  opacity: .15;
  top: 50%;
  margin: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.ft-carousel .carousel-prev-btn {
  left: 0;
  background: url('/static/img/home/prev1.png') no-repeat #000000;
}

.ft-carousel .carousel-next-btn {
  right: 0;
  background: url('/static/img/home/next2.png') no-repeat #000000;
}