/* Big tablet to 1200px (widths smaller than the 1140px row) */
@media only screen and (max-width: 1200px) {
        .hero-text-box{
        width: 100%;
        padding: 0 2%;
    }
    .row { padding: 0 2%; }
    
    .HowItWorksPic {
    width: 110%;
    padding-right: 120px;
}
}
/* Small tablet to big tablet: from 768px to 1023px */
@media only screen and (max-width: 1100px) {
    body { font-size: 18px; }
    section { padding: 60px 0; }
    
    .long-copy {
    width: 80%;
    margin-left: 10%;
}
}

/* Small phones to small tablets: from 481px to 767px */
@media only screen and (max-width: 767px) {
    
}

/* Small phones: from 0 to 480px */
@media only screen and (max-width: 480px) {
    
}