/*** CSS MOBILE ***/


/*** CSS TABLETTE ***/

@media (min-width:768px) {

}

/*** CSS PETIT ECRAN ***/

@media (min-width:992px) {
.liste_pageintermediaire {
		position: relative;
    	display: flex;
    	flex-flow: row wrap;
    	justify-content: space-between;
    	width: 100%;
    	text-align: center;
    	margin-top: 35px;
	}
	
		.encadreintermediaire {
		border: #CCC 2px dotted;
		width: 30%;
		display: inline-block;
		padding: 10px;
		vertical-align: top;
		margin-bottom: 15px;
	}
}
	


/*** CSS GRAND ECRAN ***/
@media (min-width:1200px) {
	.liste_pageintermediaire {
		position: relative;
    	display: flex;
    	flex-flow: row wrap;
    	justify-content: space-between;
    	width: 100%;
    	text-align: center;
    	margin-top: 35px;
	}
	
	.encadreintermediaire {
		border: #CCC 2px dotted;
		width: 30%;
		display: inline-block;
		padding: 10px;
		vertical-align: top;
		margin-bottom: 15px;
	}
}