.Slides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  z-index: -1000
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  width: auto;
  margin-top: -450px;
  padding: 10px;
  color: red;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
/* 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: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: 0.6s ease;
}

.active, .dot:hover {
  background-color: #7E0000;
}
/* Mobile Device*/
@media only screen 
	and (min-device-width: 320px) 
    and (max-device-width: 640px){
	.prev, 
	.next{
		margin-top: -150px;
		}
}
/* Tablets*/

	@media only screen
		and (min-device-width : 768px) 
		and (max-device-width : 1024px){
	.prev, 
	.next{
		margin-top: -250px;
	}
	
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
	}