.gallery-item
{

}

.gallery-item-img
{
    overflow: hidden;
}

.gallery-item-img img
{
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-img img
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-item-name
{
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #333 !important;
    text-transform: uppercase;

    max-height: 46px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item:hover .gallery-item-name
{
    color: #555 !important;
}

.gallery-images-view
{
    gap: 20px;
}

.gallery-images-view a
{
    width: 200px;
}

@media (max-width: 575px) {
    .gallery-item-name {
        max-height: initial;
        -webkit-line-clamp: initial;
    }
    .gallery-images a
    {
        width: 40%;
    }
    .gallery-images-view a
    {
        width: calc(50% - 12px);
    }
}