.gallery{
    padding: 30px 0;
    .section_header{
        text-align: center;
        h5{
            font-size: 30px;
            color: $black;
            font-weight: 600;
            display: inline-block;
            border-bottom: 2px solid $primaryColor;
            padding: 12px 0;
            span{
                color: $primaryColor;
            }
        }
     }
    .gallery_wrapper{
        padding-top: 40px;
        .gallery_wrap{
            height: 220px;
            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;
                    }
                }
              }
        }
    }
}