.section-grid-gallery .grid-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-area: auto;
}

.grid-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.grid-gallery-image {
  width: 100%;
  height: 100%;
}

.grid-image1 {
  grid-area: 1 / 1 / 1 / 5;
  width: 100%;
  height: 100%;
}

.grid-image2 {
  grid-area: 1 / 5 / 1 / 8;
  width: 100%;
  height: 100%;
}

.grid-image3 {
  grid-area: 1 / 8 / 1 / 13;
  width: 100%;
  height: 100%;
}

.grid-image4 {
  grid-area: 2 / 1 / 2 / 4;
  width: 100%;
  height: 100%;
}

.grid-image5 {
  grid-area: 2 / 4 / 2 / 8;
  width: 100%;
  height: 100%;
}

.grid-image6 {
  grid-area: 2 / 8 / 2 / 11;
  width: 100%;
  height: 100%;
}

.grid-image7 {
  grid-area: 2 / 11 / 4 / 13;
  width: 100%;
  height: 100%;
}

.grid-image8 {
  grid-area: 3 / 1 / 3 / 5;
  width: 100%;
  height: 100%;
}

.grid-image9 {
  grid-area: 3 / 5 / 3 / 8;
  width: 100%;
  height: 100%;
}

.grid-image10 {
  grid-area: 3 / 8 / 3 / 11;
  width: 100%;
  height: 100%;
}

.grid-gallery-image a {
  position: relative;
}

.grid-gallery-image a:before {
  opacity: 0;
  content: "";
  position: absolute;
  height: 100%;
  background: #024a63b3;
  filter: blur(12px);
  opacity: 0;
  right: 0;
  left: 0;
  transition: 0.3s;
  z-index: 1;
}

.grid-gallery-image a:after {
  content: "\e925";
  font-family: icomoon;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  z-index: 3;
}

.grid-gallery-image:hover a::before {
  opacity: .6
}

.grid-gallery-image:hover a:after {
  opacity: 1;
}

@media screen and (max-width:576px) {
  .section-grid-gallery .gallery-item a {
    width: 100%;
    height: 200px;
  }

  .section-grid-gallery .gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}