
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  height: 250px;
  margin-bottom: 20px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 250px;
  background-color: ;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
}
.carousel-control,.carousel-indicators{display: none;}
.carousel.slide:hover .carousel-control,.carousel.slide:hover .carousel-indicators{display: block;}
.carousel-indicators li {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 1px;
  text-indent: 0;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  border: 1px solid #fff;
  border-radius: 2px;
  font-size: 10px;
  color: #fff;
}
.carousel-indicators .active{width: 14px;height: 14px;color:#000 ;}
   
/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {
   
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }
  .carousel-indicators{bottom: 0px;}
 
}
