body{
	padding: 0;
	margin: 0;
}

/*Fonts*/
	@font-face{
		font-family:"Homizio";
		src: url("fonts/Homizio-regular.ttf");
	}
		
/*TOTAL*/	
.corps{
	min-height: 100vh;
	width: calc(100vw - 300px);
	margin-left: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #f8f9fa;
}

.box{
	
}

img{
	border-radius: 2px;
}

p{
	font-family: poppins,sans-serif;
	font-weight: 400;
	font-style: normal;
}

h1, h2, h3, h4, h5{
	font-family: poppins,sans-serif;
	font-weight: 700;
	font-style: normal;
}

a{
	text-decoration: none;
	color: black;
	font-family: poppins,sans-serif;
	font-weight: 400;
	font-style: normal;
}

	a:hover{
		text-decoration: none;
		color: #ff5d66;
	}

.btn{
	border-radius: 4px;
	font-family: poppins,sans-serif;
	background-color: transparent;
	color: black;
	border: solid black 2px;
	box-sizing: border-box;
	transition: 0.3s;
	line-height: 20px;
	font-size: 0.8em;
}

	.btn:hover{
		color: white;
		background-color: #111111;
		transform: translateY(-6px);
	}

	.btn svg{
		transition: 0.3s;
	}

		.btn:hover svg{
			fill: white;
		}

.formulaire{
	border: none;
	border-bottom: solid #111111 0.5px;
	margin-bottom: 15px;
	background-color: transparent;
}

ul{
	padding: 0;
	margin: 0;
}

li{
	list-style-type: none;
}

@media all and (max-width:767px){
	.corps{
		width: 100%;
		margin-left: 0;
		padding: 0 50px;
	}

	.box{
		margin-bottom: 50px;
	}
}