/* PHOTO GALLERY
============================ */
#photoGallery{
    background: rgb(216, 216, 216);
    padding: 5% 0;
  }
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 0 auto;
    padding: 1%;
    border-radius: 32px;
  }
  .gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 1%;
    opacity: .85;
    cursor: pointer;
    transition: opacity 0.3s ease;
    filter:drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  }
  .gallery-item:hover {
    opacity: 1;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
  }
  .gallery-content {
    font-size: .8em;
  }
  
  .lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
  }
  .lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
  }
  .lightbox-content img {
    border-radius: 32px;
    border: solid 2px #b6b6b6;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    font-size: 2rem;
    top: 45%;
    cursor: pointer;
    box-shadow: 0px 0px 4px rgba(225, 225, 225, .75);
    opacity: .5;
    transition: opacity 0.3s ease;
  }
  .lightbox-prev {
    left: 0;
    border-radius: 0 32px 32px 0;
    padding-right: 1%;
    margin-left: 3px;
  }
  .lightbox-next {
    right: 0;
    border-radius: 32px 0 0 32px;
    padding-left: 1%;
    margin-right: 3px;
  }
  .lightbox-prev:hover,
  .lightbox-next:hover {
    opacity: 1;
  }
  
  @media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
  }
  @media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
  }