/* Slide styles only, cta buttons and taglines in mainstyles.css */
* {box-sizing: border-box;}
.mySlides {display: none;}

/* Slideshow container */
.slideshow-container {
position: relative;
margin: auto;
height: 90vh;
overflow: hidden;
}
.slideshow-overlay {
position: absolute;
height: 90vh;
width: 100%;
top: 0;
left: 0;
z-index: 1;
background-image: linear-gradient(rgba(35, 31, 32, .3), rgba(35, 31, 32, 0.0), rgba(35, 31, 32, .8));
}
.slideshow-container img {
display: block;
width: 100vw;
height: 90vh;
object-fit: cover;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #fff;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #dd3729;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
z-index: 2;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 3.5s;
animation-name: fade;
animation-duration: 3.5s;
}

@-webkit-keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
