.WOAppFeatureContainer{
    display: flex;
    flex-wrap: wrap;
    margin-left: 100px;
    margin-right: 100px;
    justify-content: center;
}
.WOAppFeatureContainer img{
    max-width: 100%;
    height: 300px;
    width: 400px;
    object-fit: cover;
}
.WOAppFeatureContainer2{
    text-align: center;
    margin-top: 20px;
}
.WOAppImgContainer{
    position: relative;
}
.WOAppImgOverlay{
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: background-color 0.5s, padding-bottom 0.5s;
    top: 0;
}
.WOAppImgOverlay:hover{
    background-color: rgba(0, 0, 0, 0.175);
    padding-bottom: 30px;
}
.WOAppImgLabel{
    height: 80px;color: whitesmoke;
    background-color: rgba(0, 0, 0, 0.300);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media(max-width:800px){
    .WOAppFeatureContainer{
        margin-left: 20px;
        margin-right: 20px;
    }
}