.gallery-card {
    position: relative;
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #c4c4c4;
    box-shadow: 0px 0px 4px -2px black;
    margin-bottom: 20px;
}

.gallery-card .img-div {
    /* background-size: 100%; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1;
    width: 100%;
}

.gallery-card .hover-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.13);
    position: absolute;
    top: 0;
    z-index: 1;
    visibility: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-card .hover-box a {
    background: white;
    padding: 10px;
    border-radius: 50%;
}

.gallery-card .hover-box a img {
    height: 30px;
    aspect-ratio: 1/1;
}

.gallery-card:hover .gallery-card-hover-box {
    visibility: visible;
}

/* gallery image main css start --------------------------------- */
.gallery-image .img-video-div {
    width: 31.333333333%;
    margin: 1%;
    aspect-ratio: 1;
    z-index: 1000;
}

.gallery-image .img-video-div img {
    width: 0%;
    height: 0%;
}
.gallery-image .img-video-div .close-btn {
    display: none;
}
.gallery-image .img-video-div video {
    width: 0%;
    height: 0%;
}

@media screen and (max-width: 991px) {
    .gallery-image .img-video-div {
        width: 48%;
    }
}
@media screen and (max-width: 768px) {
    .gallery-image .img-video-div {
        width: 100%;
        margin: 10px 0px;
    }
}
/* gallery image main css start --------------------------------- */

.handleimgview {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: 200ms ease-out;
}

.handleimgview-cssapply {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0px !important;
    width: 100vw !important;
    height: 100vh !important;
    text-align: center !important;
    background: rgb(0 0 0 / 32%) !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.handleimgview-cssapply img {
    width: unset !important;
    height: 90% !important;
    margin-top: 2.5% !important;
}
.handleimgview-cssapply .close-btn {
    display: block !important;
    padding: 10px;
    border-radius: 50%;
    aspect-ratio: 1;
}
.handleimgview-cssapply .close-btn i{
     font-size: 25px;
}
.handleimgview-cssapply video {
    width: 90% !important;
    height: unset !important;
    margin-top: 2.5% !important;
    max-height: 88vh;
}


.gallery-image .img-video-div-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.gallery-image .img-video-div-video .vidio-play-icon{
   height: 60px;
   width: 60px;
}
