/*--Big tablets to 1200px, ie. iPad 3--*/
@media only screen and (max-width: 1200px) {
    .hero-text-box {
        width: 100%;
        padding: 0 2%;
    }
    
    .row { padding: 0 2%; }
}


/*--Small tablets to big tablets, ie. iPad 2--*/
@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }    
    section { padding: 60px 0; }
    header { background-attachment: scroll; }
    
    .long-copy {
        width: 80%;
        margin-left: 10%;
    }
    
    .story-box { margin-top: 10px; }
    .story-box:last-child { margin-top: 10px; }
    .btn-blog { padding-top: 0px; }
    
    .colum-image { width: 70%; }
    
    .steps { margin-bottom: 40px; }
    .steps:last-of-type { margin-bottom: 60px; }
    
    .contact-form { width: 80%; }    
    .contact-form:last-child a {margin-top: 10px;}
    
    .footer{ background-size: auto; }
}


/*--Small phones to small tablets, ie. iPhone 6, iPad 1--*/
@media only screen and (max-width: 767px) {
    body { font-size: 16px; }    
    section { padding: 30px 0; }
    header { background-attachment: scroll; }

    .hero-text-box,
    .row { padding: 0 4%; }
    .col { margin: 0 0 4px 0; }
    
    .button-box li {
        display: block;
        margin-bottom: 10px;
    }
    
    .col { width: 100%; } /*the colume will be stacked instead of side-by-side*/
    
    .main-nav { display: none; } /*hide the main navigation*/
    .mobile-nav-icon { display: inline-block}
    .main-nav {
        float: left;
        margin-top: 25px;
        margin-left: 35px;    
    }
    .main-nav li { display: block; } /*stack-style*/
    .main-nav li a:link,
    .main-nav li a:visited {
        display: block;
        border: 0;
        padding: 10px 0;
        font-size: 100%;
    }
    
    .sticky .main-nav { margin-top: 10px; }
    .sticky .main-nav li a:link,
    .sticky .main-nav li a:visited { padding: 10px 0; }
    .sticky .mobile-nav-icon { margin-top: 15px; }
    .sticky .mobile-nav-icon i { color: #000; }
    
    h1 { font-size: 210%; }
    h2 { font-size: 150%; }
    h3 { font-size: 100%; }
    h4 { font-size: 95%; }
    
    .long-copy {
        width: 100%;
        margin-left: 0;
    }
    .section-about .long-copy { margin-bottom: 10px; }
    .icon-big { font-size: 300%; }
    
    .colum-image { width: 60%; }
    .story-box:first-child {
        text-align: center;
        padding-bottom: 10px;
    }
    
    .steps { margin-bottom: 30px; }
    .steps:last-of-type { margin-bottom: 30px; }
    .steps div {
        font-size: 120%;
        height: 40px;
        width: 40px;
        padding: 4px;
        margin-right: 15px;
    }
    
    .box img {
        width: 65%;
        height: auto;
        margin-bottom: 15px;
    }
    
    blockquote { margin-top: 30px; }
    blockquote:before {
        font-size: 300%;
        top: 0;
        left: 3px;
    }
    cite { margin-top: 20px; }
    cite img { height: 40px; }
    
    .contact-box:first-child {
        text-align: left;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    .contact-box:last-child {
        display: none;
    }
    
    footer { padding-bottom: 15px; }
    .footer-nav, .social-links { float: left; }
    .footer-nav { margin-bottom: 8px; }
    .footer-nav li, .social-links li { margin-right: 10px; }
    footer p {
        text-align: left;
        margin-top: 10px;
    }
}


/*--Small phones, ie. iPhone 5 and older--*/
@media only screen and (max-width: 480px) {
    section { padding: 25px 0; }
    header { background-attachment: scroll; }
    
    .hero-text-box { top: 60%; }
    
    h1 { font-size: 150%; }
    
    .contact-form { width: 100%; }
}