

.slideshow {
  overflow: hidden;
  position: relative;
height: 42vw;
  z-index: 1  
}



.slideshow .slideshow-inner {
  position: absolute;:
  top: 0;
  left: 0;
  width: 100%;
  height: 100% 
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 6.3s ease
}
.slideshow .slide.is-active {
  display: block
}
.slideshow .slide.is-loaded {
  opacity: 1
}
.slideshow .slide .caption {
  padding: 0 100px
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
  outline: 1px solid red;
  outline-offset: -10px;
   z-index; 1000
}


.slideshow .slide .image {
  width: 100%;
  height: 100%;
  object-fit: cover


}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2
 

}

.slideshow .slide .title {

  position: absolute;
   padding-bottom: 34px;
  bottom:30px;                          
  left: 0px;  
    width: 100%;
    height: 1px;
  background-color: #666;
 color: #fff;   
    opacity: .7;
padding-left: 60px;
 	font-size: 16px;
    font-weight: bold;
	text-align: left;
	font-family: Raleway;
  letter-spacing: 0.35em

}




/* iPhone XR - portrait */ 

	@media only screen 
        and (max-width:900px),only screen 
        and (max-device-width:900px)
        and (-webkit-min-device-pixel-ratio: 2)
        and (orientation: portrait) {
         
      .slideshow {
height: 1400px;
}
    }   
         
  
