.galerieHeader {
      height: 70vh;
      background-image: url('../src/imgs/footer/footerBg.jpg');
}
header.galerieHeader .fakeTitle {
      font-size: 2rem !important;
}
.galerieHeader::before {
      background-image: none;
}
.galerieHeader::after {
      content: '';
      background: rgb(42, 42, 42);
      background: linear-gradient(0deg, rgba(42, 42, 42, 1) 0%, rgba(42, 42, 42, 0.85) 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
}

/* ---------------------------------- GRID ---------------------------------- */
#galeryGrid {
      z-index: 30;
      position: relative;
}
.galeryGrid {
      width: 100%;
      margin: -50px auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
      column-gap: 10px;
      margin-bottom: 100px;
}
.galeryGrid .box {
      width: 100%;
      margin-bottom: 10px;
      overflow: hidden;
      border-radius: 7px;
}
.galeryGrid img {
      object-fit: cover;
      width: 100%;
      transition: all 0.3s;
      transform: scale(1.05);
}

.galeryGrid .box:hover img {
      transform: scale(1.15);
}
