.gallery{
    padding: 20px 0;
    .section_header{
       padding-bottom: 20px;
       h4{
           font-size: 26px;
           font-weight: 500;
           color: $black;
           border-bottom: 2px solid $primaryColor;
           display: inline-block;
           padding: 10px 0;
       }
    }
    .gallery_wrapper{
        .gallery_wrap{
            height: 240px;
            width: 100%;
            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;
            }
            .albumOverly{
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: #a26bca5d;
                opacity: 0;
                a{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%,-50%);
                    i{
                        font-size: 38px;
                        color: $white;
                    }
                }
              }
        }
    }
}