html{
	overflow-x: hidden;		
}
#corp{
	display: block;
	margin-bottom: 0px;
	min-height: 100%;
	position:relative;
	overflow-y: scroll;
	scroll-behavior: smooth;
}
::-webkit-scrollbar {width: 0px;}
/*Partie headPage*/
#headerPage{			
	overflow: hidden;
	height: calc(100vh - 100px);
	position: relative;			
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 700px;
}
#headerPage img{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}
.headerPage_content{
	width: 100%;
	height: 100%;	
	z-index: 1;
	background-color: var(--blanc);
	backdrop-filter:  blur(50px);
	clip-path: polygon(0 0, 38% 0, 61% 100%, 0% 100%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;			
}
.headerPage_content > h1{
	font-size: 60px;
	font-weight: 900;
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	width: 40%;
	padding-left: 30px;
	color: var(--noir);
}
.headerPage_content > h2{
	font-size: 22px;
	line-height: 29px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	width: 40%;
	padding-left: 30px;
	color: var(--noir);
	opacity: 0.9;
}
.headerPage_content > div{
	font-size: 22px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: var(--noir);
	border:  1px solid var(--noir);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 25px 10px 25px;
	border-radius: 2px;	
	margin: 10px 0px 0px 30px;
	transition: 0.3s ease-in-out all;
	cursor: pointer;
	z-index: 3;
}
.headerPage_content > div:hover{
	transition: 0.3s ease all;
	background: var(--noir);
	color: var(--blanc);
}

@media screen and (min-width: 0px) and (max-width: 1200px) {	
	.headerPage_content{
		clip-path: none;
		align-items: center;
		justify-content: center;	
		padding: 100px 0px;	
	}
	#headerPage{
		height: auto;
		overflow: hidden;
		position: relative;
	}
	#headerPage img{
		z-index: 2;
		opacity: 0.2;
	}
	.headerPage_content > div{
		display: none;
	}
	.headerPage_content > h2{
		text-align: center;
		width: 40%;
	}
	.headerPage_content > h1{
		padding: 0px;
		text-align: center;
	}
}


/*Partie des fonctionalités*/
#LesFonctionalites{
	width: 100%;	
	padding: 0px 0px 0px 0px;	
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 80vh;	
	font-family: "Poppins", sans-serif;
}
#LesFonctionalites h2{
	font-weight: 800;
	font-family: sans-serif;
	color: var(--noir);
	font-size: 45px;	
	padding-top: 20px;
}
.Fonctionalites{	
	width: 1200px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 20px;
	overflow: visible;
}
.Fonctionalites .Fon_card{	
	height: 250px;
	background: #fff;
	display: flex;
	width: 40%;
	margin: 30px 50px 30px 50px;
	overflow: visible;
}
.Fonctionalites .Fon_card .Fon_imgBox{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--noir);
	font-family: "Poppins", sans-serif;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;	
	transition: 0.5s ease-in-out;
}
.Fonctionalites .Fon_card:hover .Fon_imgBox{
	width: 150px;
	height: 150px;
	left: -100px;
	top: calc(50% - 75px);
	transition: 0.5s ease-in-out;
}
.Fonctionalites .Fon_card .Fon_imgBox:before{
	content: attr(data-text);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 4em;
	color: rgba(255, 255, 255, 0.05);
	font-weight: 700;
	margin-bottom: 20px;
}
.Fonctionalites .Fon_card .Fon_imgBox svg{
	max-width: 100px;
	transition: 0.5s ease-in-out;
	fill: var(--blanc);
	color:  var(--blanc);
}
.Fonctionalites .Fon_card:hover .Fon_imgBox svg{
	max-width: 75px;
}
.Fonctionalites .Fon_card .Fon_content{
	position: absolute;
	right: 0;
	width: calc(100% - 75px);
	height: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.Fonctionalites .Fon_card .Fon_content h3{
	margin-bottom: 5px;
	font-size: 24px;
}
.Fonctionalites .Fon_card .Fon_content a{
	display: inline-block;
	margin-top: 10px;
	padding: 7px 15px;
	border-radius: 2px;
	border:  1px solid var(--noir);
	background: var(--blanc);
	color: var(--noir);
	transition: 0.3s ease all;
	text-decoration: none;
	cursor: pointer;
}
.Fonctionalites .Fon_card .Fon_content a:hover{
	background: var(--noir);
	color: var(--blanc);
	transition: 0.3s ease all;
}
@media (max-width:  1200px){
	.Fonctionalites{
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.Fonctionalites .Fon_card{width: 300px;}
}
@media (max-width: 850px){
	.Fonctionalites .Fon_card{
		max-width: 300px;
		flex-direction: column;
		height: auto;
	}
	.Fonctionalites .Fon_card .Fon_imgBox{position: relative;}
	.Fonctionalites .Fon_card .Fon_imgBox, 
	.Fonctionalites .Fon_card:hover .Fon_imgBox{
		width: 100%;
		height: 200px;
		left: 0;
	}
	.Fonctionalites .Fon_card .Fon_imgBox svg, 
	.Fonctionalites .Fon_card:hover .Fon_imgBox svg{
		max-width: 100px;
	}
	.Fonctionalites .Fon_card .Fon_content{
		position: relative;
		width: 100%;
	}
}

/*Partie compatibilité*/
.Compatibilite{
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	position: relative;
	align-items: center;
	box-sizing: border-box;
	min-height: 80vh;
	background: var(--noir);
}
.Compatibilite img{
	width: 80%;
}
.Compatibilite h2{
	position: absolute;
	left: 30px;
	top: -100px;
	font-weight: 800;
	font-family: sans-serif;
	color: var(--blanc);
	font-size: 45px;
	padding-top: 20px;
}



/*Partie des tarifs*/
.tarifs{
	display: none;
	justify-content: center;
	align-items: center;
	background: var(--gris);
	min-height: 100vh;
	position: relative;
}
.tarifs > h2{
	position: absolute;
	left: 30px;
	top: -50px;
	font-weight: 800;
	font-family: sans-serif;
	color: var(--noir);
	font-size: 45px;
	padding-top: 20px;
}
.box_tarif{
	position: relative;
	width: 300px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--noir);
	overflow: hidden;
	border-radius: 20px;
	transform: perspective(800px) rotateY(10deg);
	transition: 0.5s;
	-webkit-box-reflect:  below 1px linear-gradient(transparent, transparent, #0004);
	margin: auto 50px auto 50px;
}
.box_tarif:hover{
	transform: perspective(800px) rotateY(0deg) translateY(-40px) scale(1.2);
}
.box_tarif::before{
	content: '';
	position: absolute;
	width: 200px;
	height: 140%;
	background: linear-gradient(to left, var(--color-bleu), var(--color-bleuFonce));
	animation: animate 7s linear infinite;						
}
.box_tarif::after{
	content: '';
	position: absolute;
	inset:  4px;
	border-radius: 16px;
	background: var(--noir);
	backdrop-filter: blur(10px);
}
@keyframes animate{
	0%{transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}
.box_tarif h2{
	color: #fff;
	font-size: 10em;
	position: relative;
	z-index: 10;
}
@media screen and (min-width: 0px) and (max-width: 1200px) {	
	/*Partie des tarifs*/
	.tarifs{
		padding: 150px 0px;
		flex-direction: column;
		align-items: center;
	}
	.box_tarif{
		margin: 50px 0px;
	}
}

/*Partie de la devise*/
#Devise_Content{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
	margin: 0px;
	padding: 0px;
	background: var(--gris);
	overflow: visible;
}
#Devise{
	margin-top: 75px;
	position: relative;
	color: rgba(0,127,215, 0.7);
	font-weight: 700;
	font-size: 5em;
	line-height: 1.1em;
	letter-spacing: 1px;
	text-align: center;
	transform: rotate(-15deg) skew(25deg);
	font-family: 'sport', cursive;
	overflow: visible;
}
#Devise:before{
	content: attr(data-text);
	position: absolute;
	top: 30px;
	left: -30px;
	color: rgb(0, 0, 0, 0.65);
	text-shadow: none;
	filter: blur(8px);
	z-index: -1;
	font-size: 1.02em;			
}
@media screen and (min-width: 0px) and (max-width: 1200px) {
	#Devise{
		font-size: 3em;
	}

}

/*Contact*/
.Contact{
	width: 100%;
	padding: 50px 0px 50px 0px;
	margin: 0;
	justify-content: center;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background: var(--gris);
}
.contact_content{
	width: 60%;
	padding: 75px 30px 75px 30px;
	border-radius: 25px;
	background-image: linear-gradient(45deg, #213BC4 0%, #AA47CC 77%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_content > div{
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contact_content h3{
	font-weight: 800;
	font-size: 26px;
	font-family: sans-serif;
	color: var(--blanc);
	margin: 0px 0px 10px 0px;
} 
.contact_content p{
	font-weight: 700;
	width: 80%;
	font-size: 18px;
	font-family: sans-serif;
	color: var(--blanc);
	text-align: center;
	margin: 0;
}
.contact_content h4{
	font-weight: 800;
	font-size: 17px;
	margin: 0px 0px 10px 0px;
	font-family: sans-serif;
	color: var(--blanc);
}
.contact_content .boutonContact{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--grisClair);
	color: var(--noir);
	font-weight: 800;
	font-family: sans-serif;
	font-size: 21px;
	padding: 8px 15px 8px 15px;
	margin: 10px 0px 0px 0px;
	border-radius: 7px;
	transition: 0.3s ease all;
	cursor: pointer;
}
.contact_content .boutonContact:hover{
	transition: 0.3s ease all;
	background: var(--noir);
	color: var(--gris);
}
.contact_content .boutonContact svg{
	height: 23px;
	width: 23px;
	margin-left: 10px;
}
@media screen and (min-width: 0px) and (max-width: 1200px) {	
	.contact_content{
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
	}
	.contact_content >div{
		width: 80%;
		margin: 25px 0;
	}
}


/*Footer*/
footer{			
	background-color: var(--noir);
	margin: 0;
	padding: 0;
	margin-top: -5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

	box-sizing: border-box;
	overflow: hidden;
}
footer h3{
	font-family: 'Poppins', sans-serif;
	color: var(--gris);
	font-size: var(--text-size-4);
	width: 100%;
	text-align: left;
	padding-top: 20px;
	padding-left: 30px;
	margin: 0;
}
footer p{
	font-family: 'Poppins', sans-serif;
	color: var(--blanc);
	font-size: 16px;
	font-weight: 500;
	width: 30%;
	padding: 0 0 0 30px;
	margin: 0;
	text-align: left;
}
footer p a{
	color: var(--color-bleu);
	text-decoration: none;
	transition: 0.3s ease all;
	cursor: pointer;			
}
footer p a:hover{
	transition: 0.3s ease all;
	color: rgb(236, 103, 103);
}

footer nav{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer ul{			
	padding: 0;
	margin: 0px auto 0px auto;
	display: flex;
	justify-content: center;
	align-items: center;				
}
footer ul li{
	list-style: none;
	width: 50px;
	height: 50px;
	margin: 0px 15px 0px 15px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 25px;
	background: var(--gris);
	transition: 0.3s ease all;
	-webkit-box-reflect:  below 10px linear-gradient(transparent, transparent, #0001);
}
footer ul li:hover{
	transition: 0.3s ease all;
	transform: scale(1.1);
}
footer ul li svg{
	height: 35px;
	width: 35px;
	fill: var(--noir);
}
.footer_bottom{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-size-2);
	color: var(--grisClair);
	text-align: center;
	font-family: 'Abril Fatface', cursive;
	padding-bottom: 10px;
}

@media screen and (min-width: 0px) and (max-width: 1200px) {	
	::-webkit-scrollbar {
   		 width: 0em;
	}
	footer{
		align-items: center;
	}
	footer > h3{
		text-align: center;
	}
	footer > p{
		width: 80%;
		text-align: center;
		margin: 20px 0px;
	}
}