.list_box {
    display: flex;
    
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.list_box_item {
    width: 30%;
    margin: 0 1%;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow-x: hidden;
    transition: all .4s;
}

.list_box_item:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.list_box_itemimg {
    border-radius: 5px;
    overflow: hidden;
    
}

.list_box_itemimg img {
    width: 100%;
    transition: all .4s;
}

.list_box_itemtxt {
    height: 66px;
    line-height: 66px;
    text-align: center;
    color: #333;
}

.list_box_item:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 992px) {
    .list_box_item {
        width: 47.5%;
    }
    .list_box {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .list_box {
        padding-top: 30px;
    }
    .list_box_item {
        width: 95%;
    }
}

#baguetteBox-overlay .full-image figcaption {
    line-height: 3.8;
    background-image: -webkit-gradient(linear, -40% 0%, 60% 0%, from(#ffd270), to(#d54c7a));
    color: #fff;
}