.galleryBox {
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("i/2222.png");
}
.galleryBoxBg {
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url("i/111.png");
    margin-bottom: 100px;
}
.bitGal {
    width: 25%;
    text-align: center;
    float: left;
    position: relative;
    margin-bottom: 10px;
    min-height: 245px;
}
.bitGal a {
    position: relative;
    display: inline-block;
}
.txtNext {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    background: rgba(255, 193, 0, 0.8);
    font-family: Roboto;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    display: none;
    align-items: center;
    Justify-content: center;
    color: #000000;
    transition-duration: 0.4s;
}
.bitGal a:hover .txtNext {
    display: flex;
}
@media (max-width: 1100px) {
    .bitGal {
        width: 33.3%;
    }
}
@media (max-width: 900px) {
    .bitGal {
        width: 50%;
    }
}
@media (max-width: 600px) {
    .bitGal {
        width: 100%;
        height: auto;
        clear: both;
        float: none;
        min-height: auto;
    }
}