/* -- This makes carousel image centered, not scalable (Port Mac Fishing 2016 -- */

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
  max-width: none;
}



.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
      max-width: none;

}
.carousel-inner > .item > img {

        object-fit: contain;

}

.carousel-inner img {
  position: relative;
    margin: auto;
}
.carousel .item img {
   left: -9999px;  /*important */
   right: -9999px;  /*important */
   margin: 0 auto;  /*important */
   max-width: none;  /*important */
   min-width: 100%;
   position: absolute;
}

/* -- Above makes carousel image centered, not scalable (Port Mac Fishing 2016 -- */