@charset "utf-8";
/* CSS Document */
* {box-sizing: border-box;}
.mySlides {display: none;}

/* Slideshow container */
#Slidecontainer {
	background: #FFF;
	max-width: 64%;
	padding: 1% 2%;
	margin: auto;
}

/* 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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Desktops and laptops. iPad portrait ----------- */
@media only screen 
and (min-width: 1025px)
and (max-width : 1279px) {
	

}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px)
and (max-device-width: 1024px) {


}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-device-width : 767px) {
#Slidecontainer {max-width: 96%;}
	
}