.gallery-swiper {
    width: 100%;
    overflow: hidden;
}

.gallery-item {
    width: 300px;
    height: 300px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-20px) !important;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-all a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    min-height: 551px;
    background: #5a9678;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
.gallery-item-all a:hover {
    background: #4a8068;
}
.gallery-item-all-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .gallery-item {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 200px;
        height: 200px;
    }
    .gallery-item:hover {
        transform: none !important;
    }
    .gallery-item:hover img {
        transform: none;
    }
}
@media (max-width: 480px) {
    .gallery-item-all a {
        height: 100%;
        min-height: 450px;
    }
}
