* {
	box-sizing: border-box;
}
.mySlides {
	display: none;
	overflow: hidden;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: 200px;
	object-fit: cover;
}
/* Ken Burns Effect */
.kenimage-wrap {
  width: 100%;
  height: 50vw;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.kenimage-wrap img {
	width: 100%;
	animation: move 40s ease;
	/* Add infinite to loop. */
  
	-ms-animation: move 40s ease;
	-webkit-animation: move 40s ease;
	-0-animation: move 40s ease;
	-moz-animation: move 40s ease;
	position: absolute;
}

@-webkit-keyframes move {
	0% {
		-webkit-transform-origin: bottom left;
		-moz-transform-origin: bottom left;
		-ms-transform-origin: bottom left;
		-o-transform-origin: bottom left;
		transform-origin: bottom left;
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		/* IE 9 */
		-webkit-transform: scale(1.0);
		/* Safari and Chrome */
		-o-transform: scale(1.0);
		/* Opera */
		-moz-transform: scale(1.0);
		/* Firefox */
	}
	100% {
		transform: scale(1.2);
		-ms-transform: scale(1.2);
		/* IE 9 */
		-webkit-transform: scale(1.2);
		/* Safari and Chrome */
		-o-transform: scale(1.2);
		/* Opera */
		-moz-transform: scale(1.2);
		/* Firefox */
	}
}
    
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}
    
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -32px;
	color: white;
	font-weight: bold;
	font-size: 16px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}
    
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
    
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	
}
    
/*Caption Header */
.slideheader {
	color: #f2f2f2;
	font-family: Lato;;
	font-size: 18px;
	font-weight: bold;
	padding: 30px 30px;
	position: absolute;
	top: 0px;
	width: 100%;
	text-align: right;
}
/* Caption Text */
.slidetext {
	color: #f2f2f2;
	font-family: Lato;
	font-size: 12px;
	padding: 55px 30px;
	position: absolute;
	top: 0px;
	width: 100%;
	text-align: right;
}
/* Caption Text */
.slidelink {
	width: 100%;
	position: absolute;
	top: 0px;
	padding: 150px 30px;
	font-family: Lato;
	font-size: 12px;
	text-align: right;
}
.slidebtn {
	text-decoration: none;
	color: #f2f2f2;
	padding: 5px 30px;
	border: 2px solid #ffffff;
    border-radius: 20px;	
}
/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
    
/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 5px;
	width: 5px;
	margin-top: -30;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
    
.active, .dot:hover {
	background-color: #717171;
}
    
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}
    
@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}
    
@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}
    
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.prev, .next,.text {font-size: 11px}
}
    