/* //////////////////////////////// */
/* larger */
/* //////////////////////////////// */
@media screen and (min-width: 901px) and (max-width: 1300px) {
	#hamburger { display:none; }
	#menu-smartphone { display:none; }
	#grille {
        grid-template-columns: repeat(3, 1fr);
      }
	.case, .case-unit { width:33.33%; }
	.case img { width:100%;height:auto; }

	#fiche-col0 { display:none; }
	#fiche-col2 { display:block; }
}



/* //////////////////////////////// */
/* laptop */
/* //////////////////////////////// */
@media screen and (min-width: 641px) and (max-width: 900px) {
	#nav_container { display:none; }
	#hamburger { right:20px;display:block; }
	
	#menu-smartphone { display:none; }
	 #grille {
        grid-template-columns: repeat(2, 1fr);
      }
	.case, .case-unit { width:50%; }
	.case img { width:100%;height:auto; }

	#fiche-col0 { display:block; }
	#fiche-col2 { display:none; }
}


/* //////////////////////////////// */
/* smartphone */
/* //////////////////////////////// */
@media screen and (max-width: 640px) {

	#nav_container { display:none; }

	#hamburger { display:block;opacity:0.4; }
	#grille {
        grid-template-columns: 1fr;
      }
	.case, .case-unit { width:100%; }
	.case img { width:100%;height:auto; }

	#fiche-col0, #fiche-col1, #fiche-col2 { width:100%; }
	#fiche-col0 { display:block; }
	#fiche-col2 { display:none; }
	#fiche-col1 { margin-left:0; }
	#fiche-description {padding-top:20px; }
}

