.mySlides {
	display: none;
	height: 500px;
}
.slideIMG {
	vertical-align: middle;
	width: 100%;
	position: absolute;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
p.text {
  color: rgb(34, 34, 34);
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 2;
  top: 25%;
  letter-spacing: 0px;
	font-weight: 700;
	font-size: 70px;
}

p.text2 {
  color: rgb(34, 34, 34);
  position: absolute;
  width: 50%;
  text-align: center;
  z-index: 2;
  top: 55%;
  letter-spacing: 0px;
  font-weight: 400;
	font-size: 30px;
	left: 25%;
	right: 25%;
}

/* 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;
  z-index: 10000;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-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}
}