/*What are common breakpoints?
Common breakpoints are
320px — 480px for mobile devices,
481px — 768px for iPads & tablets,
769px — 1024px for small screens like laptop,
1025px — 1200px for large screens like Desktops,
and 1201px and above for extra large screens like TV.*/

/* Mobile Devices */
@media only screen and (max-width: 480px) {
    .submit-job-calltoaction-btn {
        font-size: 13px !important;
    }
    h2.wpex-heading,
    h2.vcex-heading {
        font-size: 25px !important;
        line-height: 35px;
    }
    h3.wpex-heading,
    h3.vcex-heading {
        font-size: 20px !important;
        line-height: 30px;
    }
    
    div.vcex-pricing-plan,
    div.vcex-pricing-cost {
        font-size: 20px;
        line-height: 30px;
    }
    .vcex-toggle__title {
        font-size: 20px !important;
        line-height: 30px !important;
    }
    .footer-map-container {
        display: none;
    }
    .footer-addresses-container .vc_col-sm-6 {
        width: 50%;
        float: left;
    }
    
    
    
    p.hdd-recovery--section2-row1-col1-p {
        font-size: 15px !important;
        line-height: 20px !important;
    }
    .hdd-recovery--section5-gridrows img.vc_single_image-img,
    .hdd-recovery--section2-row1 .wpb_single_image .vc_single_image-img {
        width: 75px !important;
    }
}

/* Tabs, iPads */
@media only screen and (max-width: 768px) {

}

/* Medium screen devices laptops */
@media only screen and (max-width: 1024px) {
    
}

