@charset "utf-8";
/* Slideshow CSS Document */


* {box-sizing: border-box;}
.mySlides {display: none;}
img {vertical-align: middle;}


/* Slideshow container */
.slideshow-container {
  max-width: 100%;
	height: 825px;
}
/* Caption text */
.text {
  color: white;
  font-size: 28px;
  padding: 8px 12px;
  position: absolute;
  top: 150px;
  width: 100%;
  text-align: center;
}

/* 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: 2px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.8s ease;
}

.active {
  background-color: #717171;
}


/* Fading animation */
.fade22 {
  animation-name: fade22;
  animation-duration: 1.5s;
}

.slide
{
	width:100%;
	height: 800px;
}

@keyframes fade22 {
  from {opacity: .4} 
  to {opacity: 1}
}


@media screen and (max-width:1280px)
{
	.text 
	{
	  font-size: 42px;
	  top: 300px;
	}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) 
{
  .text {font-size: 11px}
}