@media (min-width: 1440px){
    .row.big{
        margin-left: -50px;
        margin-right: -50px;
    }
    .row.big > div[class*="col-"]{
        padding-left: 50px;
        padding-right: 50px;
    }
}


.gallery-box{
    position: relative;
    display: block;
    padding: 10px;
    border: 1px solid #dcddde;
    margin-bottom: 90px;
    line-height: 0;
    font-size: 0;
}
a.gallery-box{
    display: block;
    text-decoration: none;
    color: #4d4d4f;
}
a.gallery-box:focus,
a.gallery-box:hover{
    text-decoration: none;
    color: #4d4d4f;
}
.gallery-box .image-box{
    margin-bottom: 20px;
    position: relative;
}
.gallery-box .image-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f5f5f5;
}
.gallery-box .image-box .bi{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 60px;
    margin-top: -40px;
    margin-left: -40px;
    color: #d2d2d2;
    color: rgba(255,255,255,0.8);
}
@media (min-width: 992px){
    .gallery-box .image-box{
        overflow: hidden;
    }
    .gallery-box .image-box img{
        transition: transform-origin 0.3s ease;
        will-change: transform;
        transform: scale(1.05);
        transform-origin: 0% 0%;
    }
    .gallery-box:hover .image-box img{
        transform-origin: 100% 100%;
    }
}
.gallery-box .title{
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    margin: 0px;
    overflow: hidden;
    height: 90px;
}
.gallery-box .btn-box{
    margin: 25px 0px 0px;
    font-size: 0;
    line-height: 0;
}

@media (max-width: 991px){
    .gallery-box {
        margin-bottom: 30px;
    }
    .gallery-box .title{
        font-size: 24px;
        line-height: 30px;
        height: auto;
    }
}





