#camp-gallery-wrapper h1,
#camp-gallery-wrapper h2,
#camp-gallery-wrapper h3,
#camp-gallery-wrapper h4,
#camp-gallery-wrapper h5,
#camp-gallery-wrapper h6 {
  font-weight: 700;
}
#camp-gallery-wrapper #camp-gallery-wrapper textarea:hover,
#camp-gallery-wrapper input:hover,
#camp-gallery-wrapper textarea:active,
#camp-gallery-wrapper input:active,
#camp-gallery-wrapper textarea:focus,
#camp-gallery-wrapper input:focus,
#camp-gallery-wrapper button:focus,
#camp-gallery-wrapper button:active,
#camp-gallery-wrapper button:hover,
#camp-gallery-wrapper label:focus,
.btn:active,
.btn.active {
  outline: 0px !important;
  box-shadow: none !important;
  border-color: #000000;
}

/* ============  */
#camp-gallery-wrapper #ContactInfoSection {
  padding: 100px 0;
}

#camp-gallery-wrapper .image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#camp-gallery-wrapper .image-gallery > a {
  flex: 1 1 auto; /* or flex: auto; */
  height: 300px;
  cursor: pointer;
  position: relative;
}

#camp-gallery-wrapper .image-gallery::after {
  content: "";
  flex-grow: 999;
}

#camp-gallery-wrapper .image-gallery a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  /* border-radius: 5px; */
}

#camp-gallery-wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  /* border-radius: 5px; */
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
#camp-gallery-wrapper .image-gallery a:hover .overlay {
  transform: scale(1);
}

#camp-gallery-wrapper .overlay span {
  font-size: 60px;
}

#camp-gallery-wrapper .custom-close:hover {
  background-color: #f00;
  color: #fff;
  transition: background-color 0.3s ease;
}
