/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
.mySlides img {
  border: 4px solid #fff;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #717171;
  font-weight: bold;
  font-size: 3em;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "prev button" to the left */
.prev {
left: -10px;
}

/* Position the "next button" to the right */
.next {
  right: -10px;
  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: transparent;
  color: #bbbbbb;
}

/* Caption text */
.text {
  margin: 0 auto;	
  color: #000;
  font-size: 1.1em;
  padding: 12px;
  /*position: absolute;
  top: 10px;
  right: 20px;*/
  width: 70%;
  text-align: center;
}
.text p { margin-top: 15px; }

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

/* 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;
}

.features .active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

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

@media (max-width: 800px) {
	.prev, .next {
		color: #000;
		top: 25%;
	}
	.prev {
	  left: -30px;
	}
	.next {
	  right: -26px;
	}
	.text {
	  width: 100%;
	}
}

