/* ---------------------------------------------
Large tablets and computer screens, 1024 - 1200px */

@media only screen and (max-width: 1200px) {
    .hero-text-box {
        width: 100%;
        padding: 0 2%;
    }
    .row {padding: 0 2%;}
}



/* ---------------------------------------------
Medium portables, e.g. iPad/tablets in portrait mode
screen 768 - 1023px */

@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }
    section { padding: 60px 0; }
    
    .long-copy {
        width: 80%;
        margin-left: 10%;
    }
    
    .steps-box { margin-top: 10px; }
    .steps-box:last-child { margin-top: 10px; }
    .works-step { margin-top: 40px; }
    .works-step:last-of-type { margin-bottom: 60px; }
  
    .app-screen { width: 50%; }
    
    .icon-small { 
        width: 20px;
        margin-right: 5px;
    }
    .city-feature {
        margin-bottom: 4px;
        font-size: 85%;
    }
    
    .plan-box {
        width: 100%;
        margin-left: 0%;        
    }
    
    .plan-box li {font-size: 85%;}
    
    .plan-price {font-size: 200%;}
    
    .contact-form {width: 80%;}
}


/* ---------------------------------------------
Small portables, e.g. iPhone 8, iPad and small tablets
screen 481 - 767px */

@media only screen and (max-width: 767px) {
    body { font-size: 80%;}
    section { padding: 30px 0;}
    
    .row,
    .hero-box { padding: 0 4%;}
    .col { 
        width: 100%;
        margin: 0 0 4% 0;
    }
    .main-nav {display: none;}
    h1 {font-size: 180%;}
    h2 {font-size: 150%;}
    
    .long-copy {
        width: 100%;
        margin-left: 0%
    }
    
    .app-screen { width: 40%; }
    .steps-box:first-child {text-align: center;}
    
    .works-step div {
        height: 40px;
        width: 40px;
        margin-right: 15px;
        padding: 4px; 
        font-size: 120%;
    }
     
    .works-step { margin-bottom: 20px; }
    .works-step:last-of-type { margin-bottom: 20px; }
    
    .section-cities {width: 100%; font-size: 120%}
    .section-cities img {width: 70%; margin-left: 15%}
}


/* ---------------------------------------------
Small portables, e.g. iPhone 4 
screen 0 - 480px */

@media only screen and (max-width: 480px) {
    section {padding: 25px 0;}
    .contact-form {width: 100%;}
}