.gallery-block .gallery-block__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 1px solid var(--stroke);
    background: var(--background-thirdly);
    border-radius: 100px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.gallery-block .gallery-block__title {
    max-width: 850px;
}

.gallery-block .gallery-block__wrapper {
    display: flex;
    flex-direction: column;
}

.gallery-block .swiper-slide {
    max-height: 500px;
    height: 60vw;
    transition: 0.5s;
}

.gallery-block .gallery-block__item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-block .gallery-block__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease-in;
}

@media (min-width: 992px) {
    .gallery-block .gallery-block__item:hover img {
        transform: scale(1.5);
    }
}
