
/* Position the image container (needed to position the left and right arrows) */
.container_sg {
  position: relative;
}

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

.mySlides_sg img {
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
	min-height:640px;
	max-height:640px;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor_sg {
  cursor: pointer;
}

/* Next & previous buttons */
.prev_sg,
.next_sg {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  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;
}

/* Position the "next button" to the right */
.next_sg {
  right: 0;
  border-radius: 3px 0 0 3px;
}

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

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

/* Container for image text */
.caption-container_sg {
  text-align: center;
  background-color: #000;
  padding: 10px 10px;
  color: #fff;
}

.row_sg:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column_sg {
  float: left;
  width: 16.66%;
}


.column_sg img {
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
	min-height:90px;
	max-height:90px;	
}

/* Add a transparency effect for thumnbail images */
.demo_sg {
  opacity: 0.8;
}

.active_sg,
.demo_sg:hover {
  opacity: 1;
}