
/*Pied de page*/
footer
{	background:#151516;
	color:white;
	display:flex;
	flex-wrap: wrap;
}

footer h3 {
	margin-top: 30px;
}

.rect {
	width: 50px;
	height: 8px;
	background: linear-gradient(90deg, rgb(204, 51, 0, 1) 0%, rgb(204, 51, 0, 0) 100%);
	margin-bottom: 20px;
}

/*Formulaire*/

form{
	display: flex;
	flex-direction: column;
	/* background-color: #000033 ; */
	width:60%;
}

form > div {
	margin-left: 5%;
	width:80%;
	height: 420px;
	justify-content:space-between;
}

form div div {
	display: flex;
	justify-content: space-between;
}

form input{
	padding-left: 15px;
	box-sizing: border-box;
	background-color:rgb(55, 55, 55);
	height:50px;
	color:white;
	border:none;
	margin-bottom: 15px;
}

form div > input:first-child, form div input:nth-child(2) {
	width:49%;
	justify-content: center;
}

form div > input:nth-child(4) {
	width:100%;

}

form div > input:nth-child(5) {
	width:100%;
	height: 100px;
}

/* Animation bouton */

form > div > input:last-child{
	width: 15%;
	cursor: pointer;
	color:white;
	padding-left: 0;

	background-color: rgb(204, 51, 0);
	transition: all ease 0.2s;
}

form > div > input:last-child:hover{
	color: black;
	background-color: rgb(255, 204, 51);
}

	
/*Adresse*/

footer > div {
	display: flex;
	flex-direction: column;
	width: 38%;
} 


.info {
	display: flex;
	align-items: flex-start;
	margin-bottom: 60px;
}

.info div {
	display: flex;
	flex-flow: column wrap;

}

.info p {
	margin: 0;
}

footer div img {
	display: flex;
	object-fit: contain;
	width: 20px;
	height: auto;
	margin-right: 10px;
}




footer > p:last-of-type{
	display: block;
	text-align: center;
	margin: 15px auto;
}