/* Slideshow container */


.slideshow-container {
    max-width: 550px;
    height: 30%;
    display: block;
    margin: 50px auto 30px auto;
    position: relative;
  }
  
  /* Hide the images by default */
  .slider-images {
      display: none;
  }

  img {
    vertical-align: middle;
  }
  
  /* Next & previous buttons */
  .left-arrow, .right-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(59, 27, 204);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
  }
  
  /* Position the "next button" to the right */
  .right-arrow {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .left-arrow:hover, .right-arrow:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .image-text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }