@charset "UTF-8";
/* Global Breakpoints */

/* Extra small devices (portrait phones, less than 576px)
 No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { 
	...
}

/* Medium devices (tablets, 768px and up) 
@media (min-width: 768px) { 
	...
}

/* Large devices (desktops, 992px and up) 
@media (min-width: 992px) { .
	...
}

/* Extra large devices (large desktops, 1200px and up) 
@media (min-width: 1200px) { 
	...
}

*/


/* Global Breakpoints */

/* Extra small devices (576px and below) */
@media (min-width: 0px) { 
	body{
		font-size:16px;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	body{
		font-size:16px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	body{
		font-size:16px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { .
	body{
		font-size:16px;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
	body{
		font-size:16px;
	}
}

