/* Laptop Layout: 1200px. */
@media only screen and (min-width: 1200px) and (max-width: 1500px) { 
   
    
}
/* Medium Layout: 992px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) { 
    
}
/* Tablet & mobile Layout: 768px. */
@media only screen and (max-width: 991px) { 
   
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) { 
    .header_title h2 {
        font-size: 70px;
    }
    
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 
    .header_title h2 {
        font-size: 28px;
        padding-bottom: 20px;
    }
    .info_area .main_area {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header_bg {
        padding-top: 130px;
    }
    .info_head h3 {
        font-size: 18px;
    }
    .listing_area img {
        margin-bottom: 20px;
    }
    .list_info li {
        font-size: 15px;
    }
    .call_us {
        text-align: left;
    }
    .footer_info {
        padding-left: 0;
        padding-right: 0;
    }
    .footer_info p {
        font-size: 14px;
    }
    .accept_card, .accept_card.accept_card_right {
        text-align: center;
    }
}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) { 
    .header_title h2 {
        font-size: 35px;
        padding-bottom: 20px;
    }
}