.gsc-carousel-content.custom-slider .content-inner {
    display: none;
}
.custom-slider .owl-carousel .owl-nav > div{
    top: 35%;
}
.gsc-carousel-content.custom-slider .image {
    width: 95%;
}
.custom-slider .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
        height: 250px;
    object-fit: fill;
}
/**Zoom image*/

a.zoomGallery {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    z-index: 99;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    opacity: 0;
    filter: alpha(opacity=0);
}
.image:after {
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=0);
}


.item-content:hover .image:after {
    opacity: 1;
    filter: alpha(opacity=100);
}
.item-content:hover a.zoomGallery {
    opacity: 1;
    filter: alpha(opacity=100);
}
.content-box {
    z-index: -50 !important;
}