* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  width: 100%;
    position: relative;
    margin: -100px 0 0;
    max-height: 800px;
    overflow: hidden;
	
}

/* Caption text */
.text {
    color: #ffffff;
    font-size: 25px;
    position: absolute;
    bottom: 10%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    max-width: 600px;
    padding: 1em;
    left: 30%;
}

.text h3 {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
    margin: 0;
    padding: 0px 0 10px 0;
    font-family: 'Arvo', serif;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
	border: 1px #fff solid;
}

.active {
  background-color: #717171;
	border: 1px #ea4824 solid;
}

.dots {
    margin-top: -3em;
    position: relative;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

.fade img {
    margin-top: -10%;
}

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

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

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

@media only screen and (max-width: 900px) {
	.text {
    font-size: 15px;
    width: 100%;
	max-width: 900px;
    left: 0;
	}
	
	.text h3 {
    font-size: 30px;
	}
	
	
}