/*--------------------Slide-Show Block---------------------*/


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  background: #3b7b8a;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  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: #3b7b8a;
}

/* Caption text */
.text {
  color: #000;
  font-size: 18px;
  padding: 5% 10% 0% 10%;
  position: absolute;
  width: 100%;
  height: 70%;
  top: 15%;
  text-align: justify;
  background: #fff;
  border: 5px solid #5abcd3;
  box-sizing: border-box
}

@media (max-width:800px) {
  .text {
    font-size: 22px;
    height: 100%;
    top: -30px;
    text-align:left;
  }
  
}

.shadow {
  text-shadow: 0px 0px 0px #000;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@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}
}
/*--------------------Slide-Show Block End-----------------*/