.gallery-line {
    background: #f6f6f6;
    padding-bottom: 80px;
}
.gallery-line__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 40px;
}
.gallery-line .swiper-container {
    max-width: 100%;
    overflow: visible;
}
.gallery-line .swiper-wrapper {
    transition-timing-function: linear;
}
.gallery-line__item {
    width: 100%;
    height: 0;
    padding-bottom: 66.85%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-line__item + .gallery-line__item {
    margin-top: 10px;
}
.gallery-line__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .gallery-line {
        padding-bottom: 40px;
    }
}
@media screen and (min-width: 768px) {
    .gallery-line__item:hover {
        transform: scale(1.3,1.3);
        box-shadow: 0 0 24px 0 #fff;
        z-index: 2;
    }
}