#s-gallery {
  text-align: center; /* Center align the contents */
}

.h2-gallery-title {
  margin-bottom: 20px; /* Add margin for spacing */
}
.d-gallery-grid {
  display: relative;
}
#s-gallery p {
  margin-bottom: 40px;
}

/* images lazyload styling */
img {
  position: relative;
}
img::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 1);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
