* {box-sizing: border-box}
.mySlides {display: none}
img {vertical-align: middle;
    width: 100%;
height: auto;}

.img_slide{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  justify-content: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #f0f8ff;
  text-shadow: 0px 0px 2px #3a3939; 
  font-weight: bold;

  font-size: 28px;
  transition: 0.6s linear;
  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 {
  background-color: #222121;
}

/* Caption text */
.slideshow-container .text {
    color: #f0f8ff;
    font-size: calc( 1vw + 1vh );
    padding: 8px 12px;
    margin: 15px;
    position: absolute;
    font-family: Oswald;
    text-shadow: 0px 0px 2px #3a3939; 
    bottom: 18px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    text-shadow: 0px 0px 2px #3a3939;    
    color: #f0f8ff;
    font-size: 16px;
    font-family: Oswald;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    left:0;
}

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

.bottom_dot{
    text-align: center;
    position: absolute;
    bottom: 10px;
    left:0;
    width: 100%;
    opacity: .4;
    transition: all 400ms linear;;
}
.bottom_dot:hover{
    opacity: 1;
}

.slideshow-container .active, .dot:hover {
  background-color: #ff8138;
}

/* Fading animation */
 .fade {
    transition: all 1700 linear;
    animation-name: fade;
    animation-duration: 1.7s;
}

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

