.hide-mobile { display: none; }

/* Larger than mobile */
@media (min-width: 400px) { .show-mobile { display: block; } }

/* Larger than phablet */
@media (min-width: 550px) { .show-mobile { display: block; } }

/* Larger than tablet */
@media (min-width: 750px) { .hide-mobile { display: block; } .show-mobile { display: none; } }

/* Larger than desktop */
@media (min-width: 1000px) { .hide-mobile { display: block; } .show-mobile { display: none; } }

/* Larger than Desktop HD */
@media (min-width: 1200px) { .hide-mobile { display: block; } .show-mobile { display: none; } }




#header { font-family: "Source Sans Pro"; font-weight: 600; }