.gallery__wrapper {
    margin-bottom: 70px;
}

.gallery__slider {
    height: 710px;
}

.gallery__slide {
    height: calc((100% - 30px) / 2);
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.gallery__slide::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;
}

.gallery__slide-img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%!important;
    height: 100%!important;
    max-height: 340px;
    border-radius: 10px;
}

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

@media (max-width: 1400px) {
    .gallery__slide {
        height: calc((100% - 10px) / 2);
    }
}

@media (max-width: 1024px) {
    .gallery__wrapper {
        margin-bottom: 30px;
    }

    .gallery__slider {
        height: 100%;
        margin-bottom: 25px;
    }

    .gallery__slide {
        height: auto;
    }
}

@media (max-width: 575px) {
    .gallery__slide {
        min-height: 260px;
    }

    .gallery__container {
        padding: 0;
    }

    .gallery__title {
        margin: 0 15px 50px;
    }

    .gallery__descr {
        margin: 0 15px 30px;
    }

    .gallery__more-link {
        margin: 0 15px;
        width: auto!important;
    }

    .gallery__slide-img {
        border-radius: 0;
    }
}