/* Nest Hub */
@media screen and (max-width:1024px) {
    
}
/* Surface Pro 7 */
@media screen and (max-width:912px) {
    .construction_tools_image{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* For ipad Air */
@media screen and (max-width:820px) {

}
/* For ipad mini */
@media screen and (max-width:768px) {
    .service-card{
        padding: 5px 5px;
    }
}
/* For surface duo */
@media screen and (max-width:540px) {
    .service-grid{
        grid-template-columns: 1fr;
    }
    .hero{
        flex-direction: column;
        padding: 5px 5px;
    }
    .hero-content{
        width: 100%;
    }
    .construction_tools_image{
        width: 100%;
    }   
}

/* For Galaxy Z fold 5 */
@media screen and (max-width:344px) {
    .brand-text{
        font-size: 18px;
    }
    .hero h1{
        font-size: 30px;
    }
}


