/**
 * Section Spacing Utility
 *
 * Usage: add class "section-space" to any section/wrapper
 *
 * Desktop: 50px top + bottom
 * iPad & Mobile (<=1024px): 30px top + bottom
 */

.section-space {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {
    .section-space {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}