.gallery-block .hero-title {
  text-transform: uppercase;
  font-size: 45px;
  color: #008BAC;
  text-align: center;
}
.gallery-block .hero-title span {
  position: relative;
  top: 0px;
  opacity: 1;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-name: slideInTitle;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-name: slideInTitle;
}
.gallery-block .description {
  text-align: center;
  font-size: 25px;
  max-width: 650px;
  margin: 40px auto 100px;
}
@media (max-width: 920px) {
  .gallery-block {
    margin-top: 50px;
  }
}
.gallery-block .gallery-grid-wrapper > .gallery_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.gallery-block .gallery-grid-wrapper > .gallery_img .grid-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gallery-block .gallery-grid-wrapper > .gallery_img:hover .grid-item-overlay {
  background-color: transparent;
}
.gallery-block .gallery-grid-wrapper > .gallery_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.gallery-block .gallery-grid-wrapper {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery-block .gallery-grid-wrapper .wide {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.gallery-block .gallery-grid-wrapper .tall {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.gallery-block .gallery-grid-wrapper .big {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

/* Main CSS */