/*!
* PT. IMAJIKU CIPTA MEDIA
*/

/* =GLIGHTBOX GALLERY
------------------------------------------------------------ */
.hc-galightbox {
    position: relative;
}

.hc-galightbox a {
    width: 100%;
    overflow: hidden;
}

.hc-galightbox img {
    width: 100%;
}

.hc-galightbox-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    overflow: hidden;
}

.hc-galightbox-thumb {
    display: none;
}

/*gallery icon*/
.hc-galightbox-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    width: 50px;
    border: 2px solid transparent;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    will-change: backdrop-filter;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 10;
}

.hc-galightbox-icon span {
    width: 30px;
    height: 30px;
    background-color: var(--hc-color-white);
}

.hc-galightbox-gallery img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.hc-galightbox-gallery:hover img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
    -moz-filter: brightness(60%);
    object-fit: cover;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

.hc-galightbox-gallery:hover .hc-galightbox-icon {
    background-color: red;
    border-color: red;
}

/* variant-2  */
.hc-galightbox-gallery.variant-2:hover img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
    -moz-filter: brightness(60%);
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.hc-galightbox-gallery.variant-2:hover .hc-galightbox-icon {
    border-color: var(--hc-color-white);
    background-color: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width : 1199.98px) {

    /*glightbox icon mobile visible*/
    .glightbox-mobile .goverlay {
        background: rgba(0, 0, 0, .92);
    }

    .glightbox-clean .gprev {
        top: 45%;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .glightbox-clean .gnext {
        top: 45%;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .gclose svg,
    .gnext svg,
    .gprev svg {
        width: 20px;
    }

}