

.slideshow-container {
  bottom: 0;
    padding-top: 4em;
    width: 90%;
    position: relative;
    margin: auto;
    box-sizing:border-box;
  }
  
  .mySlides {
    display: none;
    box-sizing:border-box;
    height: 10em;
    text-align: center;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    box-sizing:border-box;
    z-index: 2;
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    box-sizing:border-box;
  }

  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
    box-sizing:border-box;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    box-sizing:border-box;
  }
  
  .text {
    z-index: 2;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    color:white;
    font-family: light;
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: bolder;
    letter-spacing: 1.5px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
  

  .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;
    box-sizing:border-box;
    z-index: 2;
    margin-bottom: 3em;
  }
  
  .active, .dot:hover {
    background-color: #717171;
    box-sizing:border-box;
  }
  
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    box-sizing:border-box;
  }

  #overlay-slide
  {
      opacity: 50%;
      padding: 0;
      margin: 0;
      height: 100%;
  }

  @media only screen and (max-width: 532px){
      .slideshow-container
      {
        padding: 0;
        width: 90%;
      }

      .text {
        
        font-size: 1rem;
        padding: 8px 35px;
        width: 80%;
        text-align: center;
      
      }
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

