@charset "utf-8";
/* Slideshow container */
.slideshow-container {
  max-width: 1020px;
  position: relative;
  margin:0 auto;
}

.mySlides {display: none}
	
/* Next & previous buttons */
.prev-slide, .next-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  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;
  -webkit-user-select: none; /* For Safari */
  user-select: none;
}

/* Position the "next button" to the right */
.next-slide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slide:hover, .next-slide:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text on the slide */
.slide-text {
  position: absolute;
  bottom: 0;
  width:100%;
}

/* Number the slides (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: 0.2} 
  to {opacity: 1}
}

/*experiment translate animation*/
.slide-in {
  animation: slideFade 2s ease-out;
}

@keyframes slideFade {
  from {
    opacity: 0.2;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev-slide, .next-slide,.slide-text {font-size: 11px}
}

/* The dots/bullets/indicators 
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
*/

.slideshow-controls	{display:flex; justify-content:space-between; gap:100px; max-width:330px; border-bottom:1px solid rgba(213,81,64,0.8);padding:50px 0 0 0;} /*#D55140, #818181*/

.slide-control-title {padding:10px 0; transition:0.3s; color:#818181;border-bottom:3px solid white;cursor: pointer;}
.slide-control-title:hover, .slide-control-title:focus {color:black;}
.active-slide {border-bottom:3px solid #D55140; color:black;}
	
.slide-caption {display: none;min-height:260px;margin-top: 20px;}

