/* Carousel base class */
.carousel {
max-width:500px;
width:100%;
  height: auto;
  margin-bottom: 0px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */

}

@media (max-width: 480px) {
  .carousel {
   max-height: 300px;
   margin-bottom: 0px;
   max-width:500px;
   width:100%;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    z-index: 10;
    }

   /* Declare heights because of positioning of img element */
   

   
}

@media (min-width: 480px) and (max-width: 768px) {
  .carousel {
  max-width:500px;
  width:100%;
   max-height: 300px;
   margin-bottom: 0px;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    z-index: 10;
    }

   /* Declare heights because of positioning of img element */
 
}