.section-title {
    text-align: center;
}
  .photo-gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
  }

  .gallery-item {
    flex: 1 0 calc(45% - 5px);
    max-width: calc(45% - 5px);
    overflow: hidden;
    /* height: 80vh; */
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .wide {
    flex: 1 0 calc(66% - 5px);
    max-width: calc(66% - 5px);

  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
