/* CSS for the lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    text-align: center;
  }
  .lightbox img {
    max-width: 80%;
    max-height: 80%;
    margin-top: 2%;
  }
  .close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slide {
    display: none;
  }
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
  }
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
  img.slide {
    border: 4px solid #ff914d;
    border-radius: 20px;
}
.gallery-inner img:hover{
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.gallery-inner{
  overflow: hidden;
}
.gallery-inner h5{
  margin-top: 15px;
}

