body{
	overflow: hidden;
}

nav li{
	cursor: pointer
}

#nav1 ul{
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: fixed;
	color: white;
	z-index: 950;
	width: 100%;
	padding: 0;
	margin: auto;
	list-style-type: none;
	font-size: 2em;
}
#nav1ul{
	height: 30px;
	top: -10%;
	transition: top 1s;
}
#nav1 li{
	padding: 25px 0;
	min-width: 15vw;
	position: relative;
	top: -1.5em;
	transition: top 1s;
}
#nav1 a{
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	transition: color 1s;
	position: relative;
	top: -10px;
}
#nav1 a:hover{
	color: var(--text_ebebeb);
	text-decoration: none;
}
#nav1 a *{
	transition: opacity 1s;
}

#nav1 li:hover{
	top: 0em;
}
#nav1 li:hover .icon{
	opacity: 0;
}
#nav1 li .cache{
	opacity: 0;
}
#nav1 li:hover .cache{
	opacity: 1;
}

#nav2{
	position: absolute;
	top: calc(var(--heightScreen)/3);
}
#nav2 ul{
	display: flex;
	flex-direction: column;
	font-size: 2em;
	list-style-type: none;
}
#nav2 li{
	background-color: white;
	margin: 10px 0;
	padding: 5px;
	text-align: right;
}
#nav2 a{
	position: relative;
	color: var(--peugeot_blue);
	transition: left 1s;
	left: -80%;
}
#nav2 a:hover{
	text-decoration: none;
	left: 0px;
}
#nav2 ul{
	margin: 0;
	padding: 0;
}
#nav2 .icon{
	padding: 5px 5px 5px 15px;
}

.S{
	position: relative;
	top: calc(-1*(var(--heightScreen)*0.1));
}

#top{
	background-color: var(--peugeot_blue);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(var(--heightScreen)*0.1);
	z-index: 900;
}
#logoPeugeot{
	position: absolute;
	right: 0;
	z-index: 1000;
}
#titre{
	position: absolute;
	text-align: center;
	margin: 0;
	left:0;
	padding:10px;
	z-index: 1000;
}

#serviceul li{
	padding: 0 30px;
	width: 20vw;
}

.fromLeft, .boxLeft .anim{
	position: relative;
	left: -50vw;
	transition: left 1s;
	z-index: 10;
}
.fromRight, .boxRight .anim{
	position: relative;
	right: -50vw;
	transition: right 1s;
	z-index: 10;
}

#sec_2 article .flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin-bottom: 10px;
}
#sec_2 article .flex2{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#sec_2 div.colonne{
	width: 49%;
	margin: 0;
}
#sec_3 article .boxLeft, #sec_3 article .boxRight{
	width: 48%;
}
#sec_4 .flexligne div{
	width: 30%;
}