.vi-gallery-block .gallery-holder {
    overflow: hidden;
}
.vi-gallery-block .swiper {
    overflow: unset;
    width: 1010px;
    min-height: 570px;
}
.vi-gallery-block .swiper-slide  {
    display: flex;
    height: 270px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s;
    pointer-events: none;
}
.vi-gallery-block .swiper-slide-active {
    height: 570px;
    pointer-events: all;
}
.vi-gallery-block .gallery-img {
    width: 100%;
    height: auto;
    display: flex;
    cursor: pointer;
}
.vi-gallery-block .gallery-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}
.vi-gallery-block .gallery-img:hover img {
    transform: scale(1.05);
}
.vi-gallery-block .video-holder {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
}
.vi-gallery-block .preview {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    object-fit: cover;
    z-index: 2;
}
.vi-gallery-block .preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.vi-gallery-block video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 1;
}
.vi-gallery-block .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    cursor: pointer;
    transition: 0.5s;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 100%;
}
.vi-gallery-block .video-btn svg {
    margin-left: 5px;
}
.vi-gallery-block .video-btn:hover {
    background: var(--primary-hover);
}
.vi-gallery-block .nav {
    max-width: 1010px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1200px) {
    .vi-gallery-block .gallery-holder {
        padding: 0px 150px;
    }
    .vi-gallery-block .swiper {
        width: 100%;
        height: 400px;
        min-height: unset;
    }
    .vi-gallery-block .swiper-slide {
        height: 200px;
    }
    .vi-gallery-block .swiper-slide-active {
        height: 400px;
    }
}

@media (max-width: 996px) {
    .vi-gallery-block .swiper {
        width: 100%;
        height: 320px;
        min-height: unset;
    }
    .vi-gallery-block .swiper-slide {
        height: 160px;
    }
    .vi-gallery-block .swiper-slide-active {
        height: 320px;
    }
    .vi-gallery-block .gallery-holder {
        padding: 0px 100px;
    }
}

@media (max-width: 600px) {
    .vi-gallery-block .swiper {
        width: 100%;
        height: 280px;
        min-height: unset;
    }
    .vi-gallery-block .swiper-slide {
        height: 140px;
    }
    .vi-gallery-block .swiper-slide-active {
        height: 280px;
    }
    .vi-gallery-block .gallery-holder {
        padding: 0px 50px;
    }
}

@media (max-width: 498px) {
    .vi-gallery-block .video-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 370px) {
    .vi-gallery-block .swiper {
        width: 100%;
        height: 240px;
        min-height: unset;
    }
    .vi-gallery-block .swiper-slide {
        height: 120px;
    }
    .vi-gallery-block .swiper-slide-active {
        height: 240px;
    }
    .vi-gallery-block .gallery-holder {
        padding: 0px 30px;
    } 
}