
/* 
	FADING ANIMATION
	http://jsfiddle.net/hajmd/
*/


.slide {
   /* border: 			2em solid #eee;  /* slide border */
    opacity: 			0; 
 }



.showMe {
	opacity: 			1;
}

/* end fading */



/* Container for image text */
.caption-container {
	text-align:			center;
	background-color:	#666;
	padding: 			1vh;
	color: 				white;
}

/* Six columns side by side */
.column {
	float: left;
}



.active, .thumb:hover {
	opacity:	1;
}

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






/*
	IMAGES FOR A SLIDESHOW for Mobile Devices
	
	https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_slideshow_auto
	https://www.w3schools.com/w3css/w3css_slideshow.asp
*/

	* {
		box-sizing: border-box;
	}
	
	body {
		font-family: Verdana, sans-serif;
	}
	.mySlides {
		display: none;
	}
	img {
		vertical-align: middle;
	}

	/* Slideshow container */
	.slideshow-container {
  		position: 	relative;
		width:		100vh;
  		min-width: 	100%;
  		max-width: 	103%;
  		margin: 	auto;
	}

/* Caption text */
.caption {
  color:			#666;
  font-size:		16px;
  text-transform:	uppercase;
  letter-spacing:	1px;
  font-weight: 		600;

  position:			absolute;
  bottom: 			-27px;
  width: 			100%;
  text-align:		center;
  white-space:		nowrap;
}

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

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  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) {
  .text {font-size: 11px}
}

/* end Mobile Slideshow */





	/*
		SLIDES ANIMANTION
		https://stackoverflow.com/questions/34678795/css3-zoom-and-move-animation-effect-on-img
		
	*/	
	.anim {
		height:			100%;
		width: 			calc(100% + 100px);
		animation: 		zoom-move 15s linear infinite;
	}
	@keyframes zoom-move {
  		0% {
    		transform: 	scale(1) translateX(-100px);
    		opacity: 	0.25;
  		}
  		13.33% {
    		opacity: 	1;
    		/* make opacity change complete in 2s */
 		}
  		66.66% {
    		transform: 	scale(1.13) translateX(0px);
    		opacity: 	1;
  		}
  		100% {
    		transform: 	scale(1.2) translateX(0px);
    		opacity: 	1;
  		}
	}