/*--------------------------------------------------------------
* RESPONSIVE MEDIA QUERIES
--------------------------------------------------------------*/
/* Extra small devices (portrait phones, less than 576px)
*/
/* Bootsrap 4 is mobile first so there's no need for this media query */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: map-get($grid-breakpoints, sm)) {
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: map-get($grid-breakpoints, md)) {
}
/* Large devices (desktops, 992px and up) */
@media (min-width: map-get($grid-breakpoints, lg)) {
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: map-get($grid-breakpoints, xl)) {
}