* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.containerSlide {
	display:block;
  position: relative;
  width: 100%;
  /* height:800px; */
  overflow: hidden;
}

/* Hide the images by default */
.mySlides {
  display: none;
  height:800px;
  width:100%;
  min-width:600px;
  max-width:1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Add a pointer when hovering over the thumbnail images */
.cursorSlide {
  cursor: pointer;
  height:135px;
  width:175px;
 
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: relative;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(220, 220, 220, 0.8);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.prev {
  left: 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(255, 255, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  text-shadow: 2px 2px 5px black;
  color: white;
  font-size: 14px;
  font-weight:bold;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
	position: relative;
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: auto;
 
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demoSlide:hover {
  opacity: 1;
}