@charset "UTF-8";
/* CSS Document */
* {box-sizing: border-box;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}
.slideshow-container img {
  border-radius: 8px;
    box-shadow: 5px 6px 4px 4px rgba(0, 0, 0, 0.06);
}

/* Caption text */
.text {
  color: white;
 font-weight: 800;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 4px black, 0 0 18px darkred;
}

/* Number text (1/3 etc) */
.numbertext {
	color: white;
	background-color: red;
	padding: 5 10 5 10;
    border-radius: 8px;
	font-weight: 800;
	font-size: 24px;
	text-shadow: 1px 1px 5px black, 0 0 18px darkred;
	padding: 8px 12px;
	position: absolute;
	top: -20;
}

/* The dots/bullets/indicators */
.dot {
    height: 5px;
    width: 5px;
    margin: 0px;
    background-color: #bbb;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s ease; 
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 400px) {
  .text {font-size: 11px}
   .numbertext {font-size: 11px}
} 