.service01-gallery-list{
    display: flex;
    flex-flow: row wrap;
}
.service01-gallery-box{
    display: block;
    flex: 0 0 auto;
    position: relative;
    height: 300px;
    overflow: hidden;
    width: 25%;
}
.service01-gallery-box figure{
    width: 100%;
    height: 100%;
}
.service01-gallery-box figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service01-gallery-box .service01-gallerybody{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.5s all;
    transform: translateY(100%);
}
.service01-gallery-box:hover .service01-gallerybody{
    transform: translateY(0);
}
.service01-gallery-box .service01-gallerybody:before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: .4;
}
.service01-gallery-box .service01-gallerybody h4{
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    text-transform: uppercase;
}
.service01-gallery-box .service01-gallerybody p{
    color: #fff;
    position: relative;
}


@media (max-width: 1199px) {
    .service01-gallery-box{
        height: 200px;
    }
}
@media (max-width: 991px) {
    .service01-gallery-box{
        width: 50%;
    }
    .service01-gallery-box .service01-gallerybody{
        opacity: 1;
        transform: translateY(0);
        padding: 15px;
    }
}
@media (max-width: 575px) {
    .service01-gallery-box .service01-gallerybody h4{
        font-size: 14px;
        margin-bottom: 2px;
    }
    .service01-gallery-box .service01-gallerybody p{
        font-size: 10px;
    }
    .service01-gallery-box{
        height: 150px;
    }
}
