@charset "UTF-8";
/* CSS Document */

html, body {margin: 0; height: 100%; overflow: hidden}

/* Carousel base class */
.carousel,.carousel-item {
	height:100%;
}

.carousel-inner {
  height:100%;
  text-align: center;
  vertical-align: middle;
}

.carousel-item > img {
  position:absolute;
  z-index:-1;
  min-width:100%;
  min-height:100%;
  /* Crops from center rather than top left */
  margin:auto;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(100, 100, 100, 1);
}


/* RESPONSIVE CSS
-------------------------------------------------- */
@media screen and (orientation: portrait) {
	.carousel-item > img {
	  max-height:100%;
		left:50%;
		right:50%;
	  transform: translate(-50%, 0);
	}
}
@media screen and (orientation: landscape) {
	.carousel-item > img {
	  max-width:100%;
	}
}

.carousel-fade .carousel-item {
 opacity: 0;
 transition-duration: .6s;
 transition-property: opacity;
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
 opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
 transform: translateX(0);
 transform: translate3d(0, 0, 0);
}
