.grid-section {
  margin: 2rem;
}

.grid-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-size: 30px;
}

.grid {
  display: grid;
  padding: 5px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 0.2rem;
  /* background-color: aqua; */
}

.grid > div {
  background: rgb(255, 255, 255);
  /* padding: 1rem; */
  display: grid;
  place-items: center;
  position: relative;
}

.grid > div::before {
  content: "";
  display: block;
  /* padding-bottom: 100%; */
  /* grid-area: 1 / 1 / 1 / 1; */
}

.grid img {
  width: 100%;
  /* grid-area: 1 / 1 / 1 / 1; */
}
#page-header-section {
  background-image: url("../images/client\ cover\ photot.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 50px;
  position: relative;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

#page-header-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.39); */
  z-index: -1;
}

#page-header-section h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 1.2em;
}

#page-header-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#page-header-section ul li {
  display: inline-block;
  margin: 0 5px;
}

#page-header-section ul li a {
  color: #ffffff;
  text-decoration: none;
}
.grid-section.events-projects .grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
  gap: 0.2rem;
}

.grid-section.events-projects .grid > div {
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 150px; /* Adjust the width as needed */
}

.grid-section.events-projects .grid img {
  width: 100%;
  height: auto;
}
