.corps{
	padding-top: 0px;
}
.projet{
	display: flex;
}
	/* Partie description projet*/
	.description{
		position: fixed;
		height: 100vh;
		width: 300px;
		background-color: white;
		/*box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);*/
		padding: 60px 30px;
		background-color: #f8f9fa;
	}

		.description > a{
			margin-bottom: 30px;
			border-radius: 30px;
		}

		.gobackproject{
			display: flex;
			align-items: center;
		}

			.gobackproject svg{
				width: 20px;
			}

			.gobackproject p{
				margin: 0;
				margin-left: 10px;
			}

		.description h2{
			margin-bottom: 10px;
		}

		.description ul{
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			margin-bottom: 10px;
		}

			.description li{
				font-size: 0.8em;
				margin-right: 10px;
				font-family: poppins,sans-serif;
				font-style: normal;
				background-color: #efefef;
				border-radius: 20px;
				padding: 5px 12px;
				margin: 5px 10px 5px 0;
			}

	/* Partie Productions */
	.production{
		display: grid;
		grid-template-columns: repeat(auto-fill,90%);
		/*grid-row-gap: 20px;*/
		justify-content: center;
		align-items: center;
		margin-left: 300px;
		margin-top: 60px;
		margin-bottom: 60px;
	}

		.production img{
			width: 100%;
			border-radius: 8px;
		}

		.production iframe{
			width: 100%;
			border-radius: 8px;
		}

		.production .legende{
			margin: 5px 0 20px 0;
		}
		.production .legende svg{
			width: 12px;
		}

/*Ecran portable*/
	@media all and (max-width:768px){
		.projet{
			flex-direction: column-reverse;
		}

			/* Partie description projet*/
			.description{
				background-color: transparent;
				position: static;
				height: auto;
				padding: 0;
				margin-bottom: 40px;
			}

			/* Partie Productions */
			.production{
				margin: 0;
				grid-template-columns: repeat(auto-fill,100%);
			}
	}