/* Slide */
.slide {
	/* height: 270px; */
	display: flex;
	align-items: center;
	background: #050505;
	justify-content: center;
}

.slide img {
	max-width: 100%;
}

@media only screen and (min-width:992px) {
	.slide {
		padding-top: 40px;
		padding-left: 40px;
		padding-right: 40px;

	}
}


/* slideshow container  */
.slide .container {
  position: relative;
  margin: auto;
  background: white;
  max-width: 992px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides picture {
  display: flex;
  width: 100%;
}

/* next and previous buttons */
.next, .prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
  background: rgba(231, 106, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
	left: 10px;
}

/* position the "next buttom" to the right */
.next {
  right: 10px;
}

.next img, .prev img {
	max-width: 15px;
}

/* on hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background: rgba(231, 106, 0);
}

/* the dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px; 
  background-color: #bbb;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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

/* fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: .5s;
}

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

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