/* ==========================
   Google Map
========================== */

.map-wrapper{
    width:100%;
    max-width:1400px;   /* Desktop par bada */
    margin:40px auto;
}

.map-wrapper iframe{
    width:100%;
    height:600px;       /* Desktop height */
    border:0;
    display:block;
}

/* Laptop */
@media (max-width:1200px){
    .map-wrapper iframe{
        height:500px;
    }
}

/* Tablet */
@media (max-width:992px){
    .map-wrapper iframe{
        height:400px;
    }
}

/* Mobile */
@media (max-width:768px){
    .map-wrapper{
        margin:20px auto;
    }

    .map-wrapper iframe{
        height:280px;   /* Mobile par chhota */
    }
}