﻿/* Slideshow container */
.slideshow-container {
  height:600px;  
  width: 920px;
  position: relative;
  margin: auto;
  border: none;  
}
@media screen and (max-width: 920px) {
.slideshow-container, .slideshow-container img {
  height:auto;  
  width:100%;   
}
}
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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: #494f63;
  opacity: 0.9;
}

/* Caption text */
.text-inf {
  color: #555;
  font-size: 13px;
  padding:0;
  position: relative;
  bottom: -8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 6px;
  width: 6px;  
  margin: 28px 0 36px 8px; 
  background-color: #D6D6D6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.8s ease; 
}

.active-dot, .dots:hover {
  background-color: #869791;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.8s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}