main {
	text-align: left;
}
.innerBox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 20px;
	p {
		border: 1px solid var(--color-grey-1);
		border-radius: 10px 20px 5px;
		box-shadow: 5px 5px 5px var(--color-grey-2);
		padding: 10px;
		max-width: 40%
	}
}

section:nth-of-type(1) {
	max-width: 780px;
	text-align: justify;
	img {
		float: right;
		width: 300px;
		margin-left: 20px;
		border-radius: 5px 30px 5px 5px;
	}
}

section:nth-of-type(2) {
	max-width: 700px;
	img {
		float: left;
		width: 300px;
		margin-right: 20px;
		border-radius: 5px 5px 5px 30px;
	}
}

section:nth-of-type(3) {
	max-width: 900px;
	img {
		float: right;
		width: 200px;
		margin-left: 20px;
		border-radius: 5px 30px 5px 5px;
	}
}

.particulier {
	.image {
		text-align: center;
		img {
			max-width: 900px;
			min-width: 200px;
			width: 90%;
			border-radius: 5px 5px 5px 30px;
		}
	}
}

.professionnel {
	.image {
		text-align: center;
		img {
			max-width: 800px;
			min-width: 200px;
			width: 90%;
			border-radius: 5px 5px 5px 30px;
		}
	}
}

@media screen and (max-width: 700px) {
	section:nth-of-type(1) {
		text-align: left;
		.image {
			text-align: center;
		}
		img {
			float: unset;
			width: 80%;
		}
	}

	section:nth-of-type(2) {
		.image {
			text-align: center;
		}
		img {
			float: unset;
			width: 80%;
			margin-right: 20px;
			border-radius: 5px 5px 5px 30px;
		}
	}

	.particulier {
		.image {
			text-align: center;
			img {
				max-width: 900px;
				min-width: 200px;
				width: 90%;
				margin-left: 20px;
				border-radius: 5px 5px 5px 30px;
			}
		}
	}
}
@media screen and (max-width: 550px) {
	section:nth-of-type(3) {
		.image {
			text-align: center;
			img {
				float: unset;
				width: 90%;
				margin-left: 0;
			}
		}
	}
}

@media screen and (max-width: 500px) {
	.innerBox  {
		flex-direction: column;
		p {
			border: 1px solid var(--color-grey-1);
			border-radius: 10px 20px 5px;
			box-shadow: 5px 5px 5px var(--color-grey-2);
			padding: 10px;
			max-width: 90%
		}
	}
}
