.gallery-heading{
  text-align: center;
  margin:40px 0 30px 0;
  color:goldenrod;
  /* -webkit-text-stroke: 2px rgba(0,0,0,0.4); */
  
}
.gallery-heading h2{
  font-weight: 700;
  font-size: 3rem;
}

.gallery{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1250;
  margin:10px 120px 40px 120px;
}
@media only screen and (max-width:1360px){
  .gallery{
      margin:10px 40px 40px 40px;
  }
  .gallery .img{
      width:350px;
      height:410px;
  }
  .gallery .img img{
      height:400px;
  }
}
.gallery .img{
  
  width: 350px;
  height: 410px;
  overflow: hidden;
  object-fit: cover;
  padding:8px; 
  margin:10px 20px;
  border-radius: 16px;
  
}
.gallery .img img{
  width:100%;
  height:400px;
  object-fit: cover;
  border-radius: 20px;
  
  
  
}

.gallery .img:hover{
  overflow: hidden;
  object-fit:contain
}
.gallery::after{
  width:400px;
  height:500px;
}

@media only screen and (max-width:768px){
  .gallery-heading h2{
      font-weight: 700;
      font-size: 2rem;
  }
  .gallery{
      margin:10px 0 40px 0;
  }
  .gallery .img{
      margin:10px 0;
  }

}