.gallery-section {
  padding-top: 60px;
}

.gallery-section .row .gallery-image {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
}
.gallery-section .gallery-section-header {
  color: #000;
  margin-bottom: 40px;
  font-size: 35px;
  font-weight: 600;
  line-height: 78px;
}
.gallery-section .row .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.gallery-section .row .gallery-image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.gallery-section .row .gallery-image::after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}