.gallery-list,
.gallery-list-itemWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.gallery-list-item {
    width: 33.3%;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 17%;
}

.gallery-list-WrappedFirst {
    width: 66.6%;
    padding-bottom: 34%;
}

.gallery-list-WrappedItem {
    width: 33.4%;
}

.gallery-list-WrappedItem .gallery-list-item {
    width: 100%;
    padding-bottom: 51%;
}

.gallery-list-item-title {
    color: #FFF;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15%;
    position: absolute;
    z-index: 1;
    bottom: 10%;
    font-weight: bold;
    font-size: 28px;
    font-size: 1.4vw;
}

.gallery-list-img {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    border: 3px solid #FFF;
    box-sizing: border-box;
    overflow: hidden;
}

.gallery-list-img figure {
    display: block;
    height: 100%;
}

.gallery-list-img img {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -o-object-fit: cover;
    object-fit: cover;
    line-height: 0;
    transition: all 1s ease-out;
}

.gallery-list-item:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.gallery-list-img:after,
.gallery-list-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.26) 80%);
}

.gallery-list-img:after {
    background: rgba(0, 0, 0, 0);
    transition: all .3s ease;
}

.gallery-list-item:hover .gallery-list-img:after {
    background: rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 1900px) {
    .gallery-list-item-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 850px) {
    .gallery-list-item-title {
        font-size: 16px;
        line-height: 1.4;
    }
    .gallery-list-item-title br {
        display: none;
    }
    .gallery-list-item,
    .gallery-list-WrappedItem .gallery-list-item {
        width: 50%;
        padding-bottom: 25%;
    }
    .gallery-list-WrappedItem {
        display: flex;
        flex-wrap:wrap;
    }
    .gallery-list-WrappedFirst {
        width: 100%;
        padding-bottom: 50%;
    }
    .gallery-list-WrappedItem {
        width: 100%;
    }
}


@media screen and (max-width: 550px) {
    .gallery-list-item,
    .gallery-list-WrappedItem .gallery-list-item {
        width: 100%;
        padding-bottom: 50%;
    }
}


/* GALLERY CONTENT */

.short-baner-gallery_content {
    margin-bottom: 100px;
}