#sg_image_grid {
    height: 400px;
}
.fit-it {
    object-fit: cover;
}

.icon_hover_cont {
    position: relative;
    width: 100%;
    transition: transform 0.7s ease;
}

icon_hover_cont img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.7s ease;
    background-color: #282828bf;
}

.icon_hover_cont:hover .overlay {
    opacity: 1;
}

.icon_hover_cont:hover img {
    filter: grayscale(70%);
}


.icon {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

@media only screen and (max-width:768px){
    .icon {
        font-size: 35px;
    }
}

.fa-search-plus:hover {
    color: #9f9f9f !important;
}


@media only screen and (max-width:768px) {
    .lb-data .lb-details {
        padding: 5px;
        background: #ffffffeb;
        color: black;
        border-radius: 5px;
        width: fit-content;
    }

    .lb-data .lb-number {
        color: black !important;
    }
}
@media only screen and (min-width:768px) {

    .lb-data .lb-details {
        display: block;
        position: relative;
        top: -90px;
        left: 20px;
        padding: 10px;
        background: #ffffffeb;
        color: black;
        border-radius: 5px;
        width: fit-content;
    }

    .lb-data .lb-number {
        color: black !important;
    }

}
@media only screen and (min-width:576px) {
    .innerttblk {
        min-width: 310px;
    }
}

@media (min-width: 768px){
    .sg_image_grid_taller {
        height: 650px !important;
    }
}