.slideshow .container {
  position: relative;
  height: 100%;
}
.slider-caption {
  position: absolute;
  left: 0;
  top: 35%;
  color: #ffffff;
}
.slideshow .background-image-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.slideshow .carousel-item {
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.6s ease; /* Safari */
  transition: opacity 0.6s ease;
}
.slideshow .carousel-item.active {
  opacity: 1;
}
.slideshow .active.carousel-item-left,
.slideshow .active.carousel-item-right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.slideshow .carousel-item-next.carousel-item-left,
.slideshow .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.slideshow .carousel-control {
  z-index: 2;
}
.slideshow .carousel-item-next.carousel-item-left,
.slideshow .carousel-item-prev.carousel-item-right,
.slideshow .carousel-item.active {
  opacity: 1;
  transform: none;
  @supports (transform-style: preserve-3d) {
    transform: none;
  }
}
.slideshow .carousel-item-next,
.slideshow .active.carousel-item-right {
  opacity: 0;
  transform: none;
  @supports (transform-style: preserve-3d) {
    transform: none;
  }
}
.slideshow .carousel-item-prev,
.slideshow .active.carousel-item-left {
  transform: none;
  opacity: 0;
  @supports (transform-style: preserve-3d) {
    transform: none;
  }
}

/*caption styles*/
.slideshow .slider-caption--large {
  font-size: 20px;
}
.slideshow .slider-caption--large h1 {
  font-size: 58px;
  margin-bottom: 30px;
}
.slideshow .slider-caption--large p {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .slideshow .slider-caption--large {
    font-size: 16px;
  }
  .slideshow .slider-caption--large h1 {
    font-size: 40px;
    margin-bottom: 30px;
  } 
}


/*captions animations*/
.slideshow .carousel-item [data-caption-effect] {
  opacity: 0;
}
.slideshow .carousel-item.active [data-caption-effect] {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slideshow .carousel-item-prev.carousel-item-right [data-caption-effect],
.slideshow .carousel-item-next.carousel-item-left [data-caption-effect] {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*carousel controls*/
.slideshow .carousel-control {
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .slideshow .carousel-control {
    top: auto;
    bottom: 0;
    z-index: 1006;
  }
}
.slideshow .carousel-control:hover {
  width: 100px;
}
.slideshow .carousel-control-text {
  opacity: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slideshow .carousel-control:hover .carousel-control-text {
  opacity: 1;
}
.slideshow .carousel-control-prev-icon,
.slideshow .carousel-control-next-icon {
  background-image: none;
  width: 32px;
  height: 32px;
}
.slideshow .carousel-control-prev-icon:after {
  font-family: "FontAwesome";
  content: "\f104";
  font-size: 32px;
  line-height: 32px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slideshow .carousel-control-next-icon:after {
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 32px;
  line-height: 32px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slideshow .carousel-control:hover .carousel-control-prev-icon:after,
.slideshow .carousel-control:hover .carousel-control-next-icon:after {
  opacity: 0;
}
.slideshow .carousel-indicators li {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 3px;
  margin-right: 3px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.slideshow .carousel-indicators li.active {
  background-color: #000000;
}
.slideshow .carousel-indicators li:hover {
  cursor: pointer;
  background-color: #000000;
}
