* {
    font-family: Helvetica, Sans-Serif;
    box-sizing:border-box;
}



/* Slideshow container */
.slideshow-container {
    top: 11%;
    position: fixed;
    left: 150px;
    right: 150px;
    text-align: center;
}

/* Hide the images by default */
.mySlides {
    margin: 0px;
  display: none;
}

/*image autoresize on mobile*/
.mySlides img {
    position: relative;
    width: auto;
    height: auto;
    max-height: 600px;
    max-width: 100%;
    padding: 50px;
    position: relative;
}

@media only screen and (max-width: 1200px) and (orientation: landscape) {
    .mySlides {
    margin: 0px 25px 0px 25px;
    display: none;
}
    .mySlides img {
    position: relative;
    width: auto;
    height: auto;
    max-height: -webkit-fill-available;
    max-width: 100%;
    padding: 20px 0px;
}
}

@media only screen and (max-width: 1200px) and (orientation: portrait) {
    .mySlides {
    margin: 70px 0px 0px 0px;
    display: none;
}

.slideshow-container {
    top: 18px;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 158px;
    text-align: center;
}
.mySlides img {
    position: relative;
    width: 80%;
    height: auto;
    max-height: 424px;
    padding: 10px;
}
}



/* Next & previous buttons */
.prev {
  cursor: pointer;
  position: fixed;
  top: 50%;
  left: 2%;
  width: auto;
  padding: 16px;
  color: #000;
  font-weight: 100;
  font-size: 22px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  cursor: pointer;
  position: fixed;
  top: 7%;
  right: 16%;
  left: 16%;
  bottom: 151px;
  width: auto;
  padding: 16px;
  color: #000;
  font-weight: 100;
  font-size: 18px;
  transition: 0.2s ease;
  border-radius: 3px 0 0 3px;
  user-select: none;
  
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    font-size: 24px;
}

/* Caption text */
.text {
  position: fixed;
  color: #000;
  font-size: 15px;
  padding: 8px 12px;
  bottom: 30px;
  right: 30px;
  width: auto;
}

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

/* The dots/bullets/indicators */
@media only screen and (max-width: 1200px) {
    .dotClass {
        display: none;
}
}

.dotClass {
    position: fixed;
    width: 90px;
    right: 40px;
    bottom: 78px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 2px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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