
/* Slideshow container */
.hero_slideshow-container {
  position: relative;

}

/* Slides */
.hero_mySlides {
  display: none;
  padding: 50px;
  text-align: center;
  background-color: rgba(0,0,0,0.4);
}

/* Next & previous buttons */
.hero_prev, .hero_next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "next button" to the right */
.hero_next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}
.hero_prev {
  position: absolute;
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.hero_prev:hover, .hero_next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.hero_dot-container {
    text-align: center;
    padding: 20px;
}

/* The dots/bullets/indicators */
.hero_dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.hero_active, .hero_dot:hover {
  background-color: #fff;
}

/* Add an italic font style to all quotes */
.hero_i{
	color: #fff;
	font-size: 20px;
	padding: 5px;
}

/* Add a blue color to the author */
.hero_author {
	color: #42a2ff;
	font-size: 15px;
	padding: 5px;	
}

