/* Big tablet to 1200px : (widths smaller than the 1140px row) */ 
@media only screen and (max-width: 480px) {
    .hero-text-box {
        width: 100%;
        padding: 0 2%;    
    
    }
    
    .row {padding: 0 2%; }
}






/* Small tablet to big tablet: from 768px to 1023px */ 
@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }
    section { padding: 60px 0; }
    
    .long-copy {
        width: 80%;
        margin-left: 10%;
    }
    
    .step-box { margin-top: 10px; }
    .step-box:last-child { margin-top: 10px; }
    .works-steps { margin-bottom: 40px; }
    .works-step:last-of-type { margin-bottom: 60px; }
    
    .app-screen { width: 50%; }
    
    .icon-samll {
        width: 17px;
        margin-right: 5px; 
    }
    
    .city-feature { font-size: 90%; }
    
    .plan-box {
        width: 100%;
        margin-left: 0%;
    }
    
    .plan-price { font-size: 250%; }
    .contac-form {width: 80%; }
}




/* Small phones to small tablets: from 481px to 767px */ 
@media only screen and (max-width: 767px) {
    body { font-size: 16pX;}
    section { padding: 30px 0;}
    
    .row,
    .hero-text-box { padding: 0 4%; }
    
    .col { width: 100%; }
    
}




/* Small phones: from 0 to 480px */ 
@media only screen and (max-width: 480px) {
    
}


