*{
	font-family: 'Manrope', sans-serif;
}

h3 {
	text-transform: uppercase;
	font-size: 2em;
	font-weight: 800;
	color : rgb(49, 43, 141, 1.0);
}

.newsletters {
	text-align: center;
	justify-content: center;
}

.nl_art {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: 10%;
	margin-right: 10%;
}

.nl_case {
	height: 290px;
	width: 290px;
	margin: 20px;
}

.nl_haut {
	background-color: #ebebed;
	height: 60%;
	text-align: left;
	font-size: 0.8em;
	transition-property: height;
	transition-duration: 0.5s;
}

.nl_bas {
	background-color: rgb(49, 43, 141, 1.0);
	text-align: left;
	height: 40%;
	transition-property: height;
	transition-duration: 0.5s;
	padding-left: 20px;
	padding-right: 20px;
}

.nl_infos {
	padding-top: 20px;
	padding-left: 20px;
}

.nl_art_title {
	font-size: 1.5em;
	color: white;
	padding-top: 15px;
}

.nl_incipit {
	display: none;
	font-size: 0.8em;
	color: white;
	transition-property: margin-top;
	transition-duration: 0.5s;
	height: 5px;
	text-overflow: hidden;
}

.nl_case:hover .nl_bas{
	height: 75%;
}

.nl_case:hover .nl_haut {
    height: 25%;
}

.nl_case:hover .nl_incipit{
	margin-top: 15px;
	display: block;
}