/* Featurettes
------------------------- */

.featurette-divider {
  margin: 80px 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}

.BanIconOverlay {
  position: relative;
  display: inline-block;
  opacity: 0.7;
}

.BanIconOverlay::before {
    content: '\f05e';
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate( -50%, -50% );
    padding: 3px 15px 3px 25px;
    color: white;
    opacity: 0.7;
    font-family: 'FontAwesome';
    font-size: 200px !important;
    /*background-color: rgba(23, 35, 34, 0.75);
    border-radius: 5px 5px 5px 5px; */
}
/*New Overlay for Lighter Images
*/
.BanIconOverlayB::before {
    content: '\f05e';
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate( -50%, -50% );
    padding: 3px 15px 3px 25px;
    color: gray;
    opacity: 0.4;
    font-family: 'FontAwesome';
    font-size: 200px !important;
    /*background-color: rgba(23, 35, 34, 0.75);
    border-radius: 5px 5px 5px 5px; */
}

.dark-text-shadow{
    text-shadow: 2px 2px 4px #000000;
}
/*
Black version of the mouse down slider for whitish images

*/
.swiper-container .mouse-wrapper-bk {
  margin: 0 auto;
  display: block;
  width: 28px;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 37px;
}
.swiper-container .mouse-bk {
  width: 30px;
  height: 47px;
  border: 2px solid #000;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
}
.swiper-container .mouse-bk .mouse-scroll-bk {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #000;
  position: relative;
  top: 10px;
  left: 11px;
  -webkit-animation: scrolls 1.3s ease-out infinite;
}
.swiper-container .go-down {
  margin: auto;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  bottom: -50px;
  right: 0;
  left: 0;
  background-color: #000;
  z-index: 10;
}
.swiper-slide-bk {
  text-align: center;
  font-size: 18px;
  background-color: #000;
  width: 100%;
  height: 100%;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/*Image Rendering CSS FS*/
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */

.image-crisp { 
  
      /* Using the crisp-edges 
      value for demonstration */ 
      image-rendering: crisp-edges; 
    } 
