@charset "utf-8";
/* CSS Document */

/* slides */

div.row {
	overflow:hidden;
	display: flex;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px;/* 50px 0px 50px;*/
	text-align: left;
	align-items: left;
	justify-content: none;
}

.column {
  !flex: 33.33%;
  padding: 5px;
  !display: inline-block;
  !width:auto;
  height: 500px;

}
div.column img {
  width: auto;
  height: 100%;
}
.slideshow-container {
  width: 100%;
  position: relative;
  height: 500px;
  	margin-left: 0px;
	margin-right: 0px;
	display: block;
	
    align-items: left;
    justify-content: none;

}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0px;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0px;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}