@charset "utf-8";

.gallery1 > ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
    border-left: 1px solid #BBB;
    margin: 0 0 -1px 0;
}
.gallery1 > ul > li {
    display: grid;
    width: 100%;
    height: 120px;
    align-items: center;
    border: 1px solid #BBB;
    border-left-width: 0;
    border-top-width: 0;
    text-align: center;
    padding: 0 20px;
}
@media (max-width: 850px) {
    .gallery1 > ul {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 640px) {
    .gallery1 > ul {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 460px) {
    .gallery1 > ul > li {
        height: 80px;
        padding: 0 15px;
    }
}