.gallery_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0rem;
}

.gallery_container h1 {
  font-family: Bebas;
  color: var(--Navy_main);
  font-size: 6rem;
}

.gallery_images_container {
  width: auto;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gal_img {
  overflow: hidden;
  width: auto;
  height: 30rem;
}

.gallery_images_container img {
  width: auto;
  cursor: pointer;
  height: 25rem;
  margin: 4rem 2rem;
  border-radius: 2px;
  transition: 0.5 ease;
}

.gallery_images_container img:hover {
  opacity: 0.9;
  transition: 0.5 ease;
  transform: scale(1.011);
}

/* Img filter */

/* .img_filter {
  position: static;
  width: 100%;
  height: 30rem;
  background-color: var(--Orange_main);
  z-index: 2;
} */
@media only screen and (max-width: 1050px) {
  .gallery_container h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 800px) {
  .gallery_container h1 {
    font-size: 3.5rem;
  }
}
