/*
* @Author: MathieuMari
* @Date:   2020-08-10 21:29:20
* @Last Modified by:   MathieuMari
* @Last Modified time: 2020-08-10 21:30:34
*/

@charset "UTF-8";

/* ---------------------------------------------------- Media ALL */
	@media all{

	}

/*
Bootstrap 4 breakpoints

Extra small devices (portrait phones, less than 576px) 
No media query since this is the default in Bootstrap because it is "mobile first"
*/

/* ---------------------------------------------------- ALL */
	@media (min-width: 1201px){

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

	}

/* ---------------------------------------------------- Large devices (desktops, 992px and up) */
	@media all and (max-width: 992px){

	}

/* ---------------------------------------------------- Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
	@media all and (max-width: 768px){

	}

/* ---------------------------------------------------- Small devices (landscape phones, 576px and up) */
	@media all and (max-width: 576px){

	}