.gallery-page {
    margin-bottom: 120px;
}

.gallery-page__descr {
    margin-bottom: 60px;
}

.item-gallery {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.item-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 29, 38, .6);
    background-image: url("../../img/zoom-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.item-gallery__img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (min-width: 1025px) {
    .item-gallery:hover::after {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .gallery-page {
        margin-bottom: 60px;
    }

    .gallery-page__descr {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .gallery-page {
        background-image: url("../../img/background-mobile-main-block.svg");
        background-repeat: no-repeat;
    }
}