/* ===== GURUGRAM GALLERY BANNER START ===== */

.gurugram-gallery-banner{
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c');
    background-size: cover;
    background-position: center;
}

/* ===== GURUGRAM GALLERY BANNER END ===== */



/* ===== GURUGRAM GALLERY V2 CSS START ===== */

.gurugram-gallery{
    background:#000;
}

.gurugram-gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.gurugram-gallery-box img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

.gurugram-gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
    transform:translateY(100%);
    transition:0.4s;
}

.gurugram-gallery-overlay h5{
    margin:0;
    font-weight:700;
}

.gurugram-gallery-overlay a{
    display:inline-block;
    margin-top:8px;
    padding:5px 14px;
    background:#ffa600;
    color:#000;
    border-radius:20px;
    font-size:13px;
    text-decoration:none;
}

.gurugram-gallery-box:hover img{
    transform:scale(1.1);
}

.gurugram-gallery-box:hover .gurugram-gallery-overlay{
    transform:translateY(0);
}

.gurugram-gallery-btn{
    display:inline-block;
    padding:10px 25px;
    background:#25D366;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* ===== GURUGRAM GALLERY V2 CSS END ===== */