/* Background Image */

html {
  height: 100%;
}

body {
  height: 100%;
  background-color: transparent;
  background-size: 20px 20px;
  background-image:
   -webkit-repeating-linear-gradient(45deg, black, black 4px, transparent 1px, transparent 14px);
   background-image:
   -moz-repeating-linear-gradient(45deg, black, black 4px, transparent 1px, transparent 14px);
   background-image:
   -o-repeating-linear-gradient(45deg, black, black 4px, transparent 1px, transparent 14px);
   background-image:
   repeating-linear-gradient(45deg, black, black 4px, transparent 1px, transparent 14px);
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }

}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: 0;
  padding: 0;
}

.mySlides {
    display: none;
}

img#slides {
  width: 100%;
}

/* Next & previous buttons */
.prev, .next {
  position: absolute;
	top: 50%;
	z-index: 3;
	margin-top: -1em;
	padding: .5em;
	border: 0;
	font-size: 100%;
	line-height: 1;
	text-decoration: none;
	color: white;
	background: rgba(0, 0, 0, .25);
	cursor: pointer;
}

/* Position the "next button" to the right */
.next {
  right: 0;

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {

}

.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}
}
