/* Mobile Portrait: 0–479px */
@media screen and (max-width: 479px) {
}

/* Mobile Landscape / Small Tablet: 480–767px */
@media screen and (min-width: 480px) and (max-width: 767px) {
}

/* Tablet Portrait: 768–991px */
@media screen and (min-width: 768px) and (max-width: 991px) {
}

/* Tablet Landscape / Small Laptop: 992–1199px */
@media screen and (min-width: 992px) and (max-width: 1199px) {
}

/* Desktop: 1200–1399px */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
}

/* Large Desktop: 1400px+ */
@media screen and (min-width: 1400px) {
}