.gallery{
    padding: 40px 0 20px 0;
    position: relative;
    .shape-5{
        height: 1050px;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 0;
        z-index: -1;
        transform: translateY(-50%);
        img{
            max-height: 100%;
            max-width: 100%;
        }
    }
    .section_heading{
        text-align: center;
      h4{
          font-size: 28px;
          color:#e2b017 ;
          text-align: center;
          font-weight: 600;
          display: inline-block;
          position: relative;

          &::after{
              position: absolute;
              content: '';
              bottom: -40px;
              left: 50%;
              height: 30px;
              width: 100%;
              transform: translateX(-50%);
              background-image: url(../images/heading.png);
              background-position: center;
              background-size: contain;
              background-repeat: no-repeat;
              z-index: 6;
          }
        }
  }
    .gallery_wrapper{
        padding-top: 60px;
        .gallery_wrap{
            height: 300px;
            width: 100%;
            border-radius: 5px; 
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #d3d2d2;
            margin-bottom: 20px; 
            position: relative;
            &:hover .albumOverly{
                opacity: 1;
                transition: all linear .5s;
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 5px;
            }
            .albumOverly{
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: #1ebabf57;
                opacity: 0;
                a{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%,-50%);
                    i{
                        font-size: 38px;
                        color: $white;
                    }
                }
              }
        }
    }
}