#contact{
	display:none;
	position:absolute;
	right:-100%;
	top:0;
	transition:right 2s;
/* 	background-image:url("../../img/Web/Fond.webp");
	background-size:cover; */
	height:100%;
	height: calc(var(--vh, 1vh) * 100);
	width:100%;
	min-height:800px;
	z-index:1;
}

#fond_dessus{
	position: absolute;
    top: 0;
    height: calc(50% - 40px);
    width: 100%;
    z-index: -1;
	background-image:url("../../img/Contact/fond_contact.webp");
	background-size:cover;
	background-repeat:no-repeat;
}

#contact h2{
	font-size:2em;
	border-bottom:1px solid;
	text-align:center;
	margin: 20px auto;
    padding: 0 50px 20px;
    width: fit-content;
	text-shadow: 0 0 10px white;
}

#infosContact{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-around;
	width:80%;
	height: calc(50% - 150px);
	margin:auto;
}

#infosContact > div{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	background-color:rgba(100,100,100,.4);
	padding:20px 0;
	color:white;
	margin: 0 2%;
    width: 50%;
    min-height: 166px;
}

#infosContact h3{
	color:orange;
	margin-bottom: 30px;
    font-size: 1.5em;
}

#infosContact p{
	margin: 0 0 10px 0;
    font-family: arial;
}

#infosContact > div a{
	color:#00d0ff;
	text-decoration: underline;
}

.field input:not([type="submit"]), .field textarea, .field select{
	background-color: rgb(14, 14, 14);
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px;
    min-width: 100%;
    max-width: 100%;
    color: white;
	box-sizing: content-box;
	max-height: 150px;
	font-family: arial
}

.field input[type="submit"]{
	background-color: white;
    border: 3px solid;
    padding: 20px 50px;
    border-radius: 20px;
	font-family: 'qualy';
	font-size:1.2em;
	cursor: url(../../img/Icones/clicker.webp), auto;
	transition:background-color .5s;
}

.field input[type="submit"]:hover{
	background-color:#00d0ff;
}

.field{
	margin-bottom: 20px;
}

/* .field:nth-child(3){
	text-align:right;
	margin-top:100px;
} */

#contact textarea{
	height:120px;	
}

#contact form{
	position: absolute;
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: center;
	top: calc(50% + 100px);
	transition:margin-top 1s;
}

#contact form > div{
	width: 30%;
}

#formDest{
	position: fixed;
    bottom: 0;
    border: none;
    height: 50px;
    z-index: 0;
    width: 100%;
}

#reseauxSociaux img{
	transition:transform .5s;
}

#reseauxSociaux img:hover{
	transform:scale(1.2);
}

@media screen and (max-width:1000px){
	#contact h2{
		font-size:1.5em;
	}
	
	#infosContact{
		flex-direction: column;
		height: 240px;
	}
	
	#infosContact > div{
		width: 70%;
		min-height: 110px;
		padding:10px 0;
	}
	
	#infosContact p{
		margin:0;
	}
	
	#infosContact h3{
		margin-bottom: 10px;
		margin-top:0;
	}
	
	#contact form > div {
		width: 40%;
	}
}

@media screen and (max-width:620px){
	#contact form{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		top: calc(50% + 20px);
	}
	
	#contact form > div {
		width: 80%;
	}
	
	.field input[type="submit"]{
		font-size:1em;
		padding: 10px 20px;
	}
	
	.field:nth-child(3) {
		margin-top: 10px;
	}
	
	#contact h2{
		font-size:1em;
		padding: 0 20px 10px;
	}
	
	#infosContact h3{
		font-size: .9em;
	}
	
	#infosContact p {
		font-size: .8em;
	}
	
	#infosContact > div{
		width:100%;
	}
}