/* Larger than mobile */
@media (min-width: 400px) {}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}
/* Larger than tablet */
@media (min-width: 768px) {}
/* Larger than desktop */
@media (min-width: 1000px) {}
/* Larger than Desktop HD */
@media (min-width: 1200px) {}
/* <600px. Para móviles */
@media only screen and (max-width: 600px) {...}
/* Entre 600px y 768px: Algunos móviles y tabletas en vertical */
@media only screen and (min-width: 600px) {...}
/* De 768px a 992px: Tabletas en horizontal */
@media only screen and (min-width: 768px) {...}
/* De 992px a 1200px: Portátiles y ordenadores con resolución baja */
@media only screen and (min-width: 992px) {...}
/* >1200px: Portátiles y ordenadores con resolución alta */
@media only screen and (min-width: 1200px) {...}