/* ************************************************************************ */
/* ***********************************ENTREPRISES************************** */
/* ************************************************************************ */

/********STRUCTURE MAIN*********/
main
{
	display: flex;
	flex-direction: column;
}
.corps
{
	display: flex;
	flex-direction: row;
	margin-bottom: 100px;
}

.mainLeft
{
	margin-left: 10px;
	margin-right: 5px;
	background-color: #f7f7f7;
	flex-basis: 200px;
	width: 300px;
	padding: 0;
}

.mainMiddle
{
	display: flex;
	flex-direction: column;
	margin-left: 5px;
	margin-right: 10px;
	background-color: white;
	width: 100%;
	align-items: center;
}


/*********ENTREPRISE MIDDLE**********/
.changementPage
{
	display: flex;
	flex-direction: row;
	width: 600px;
	justify-content: space-between;
}

.blocEntreprise
{
	display: flex;
	flex-direction: column;
	width: 600px;
	background-color: #f7f7f7;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 30px;
}

.entreprise
{
	display: flex;
	flex-direction: row;
	margin-top: 5px;
	margin-bottom: 5px;
}

.secteurActivite ul
{
	margin-top: 0px;
}

.detailsEntreprise
{
	width: 400px;
}

.tuteurs
{
	border-radius: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #CCFF62;
	color: #639CD3;
}


/* ************************************************************************ */
/* ********************************PETITS ÉCRANS*************************** */
/* ************************************************************************ */
@media screen and (max-width: 850px)
{
	.corps
	{
		flex-direction: column;
		align-items: center;
	}

	.mainMiddle
	{
		margin-top: 10px;
	}

	.mainLeft
	{
	width: 600px;
	}
}

@media screen and (max-width: 610px)
{
	.mainLeft
	{
	width: 400px;
	}

	.changementPage 
	{
		width: 400px;
	}

	.blocEntreprise
	{
		width: 400px;
	}

	.detailsEntreprise
	{
		width: 250px;
	}
}