*
{
	margin-top: 0;
	padding-top: 0;
	font-family: 'poppins', sans-serif;
	box-sizing; border-box;
}
.espace
{
}
.hero
{
	background-image: linear-gradient(rgba(0,0,0,0.7), #3551b5), url("/cecrej/assets/images/biblio3.jpg");
	background-size: cover;
	position: relative;
	min-height: 100vh;
	padding: 50px 100px;
	display: flex;
	justify-content :center;
	align-items: center;
	flex-direction: column;
}
.hero .contact1
{
	max-width: 800px;
	text-align: center;
	color: #fff;
	font-family: 'Georgia', serif;    
}.hero .contact1 h3
{
	font-size: 50px;
	font-weight: 500;
	font-family: 'Algerian', serif;	
}
.try
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.try .content
{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.try .content .box
{
	position: relative;
	padding: 20px 0;
	display: flex;
}
.try .content .box .icon
{
	min-width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 22px;
}
.try .content .box .contactInfoText
{
	display: flex;
	margin-left: 20px;
	font-size: 16px;
	color: #fff;
	flex-direction: column;
	font-weight: 300;
}
.try .content .box .contactInfoText h3
{
	font-weight: 500;
	color: #03ECFF;
}
.try .content .box .contactInfoText a
{
	color: #fff;
}
.contactInfo1 a:link
{
	color: #265301;
}
.contactInfo1 a:visited
{
	color: #437A16
}
.contactInfo1 a:focus
{
	border-bottom: 1px solid;
	color: #FF6603;
}
.contactInfo1 a:hover
{
	border-bottom: 1px solid;
	color: #CDFEAA;
}
.contactInfo1 a:active
{
	background: #265301;
	color: #FF6603;
}
.contactform
{
	width: 50%;
	padding: 40px;
	background: #fff;
}
.contactform h2
{
	font-size: 25px;
	color: #333;
	font-weight: 500;
}
.contactform .input-group
{
	position: relative;
	width: 100%;
	margin-top: 10px;
}
.contactform .input-groupemail
{
	position: relative;
	width: 100%;
	margin-top: 10px;
}
.contactform .input-group input
{
	
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: nonw;
	resize: none;
	height: 30px;
}
.contactform .input-groupemail input
{
	
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: nonw;
	resize: none;
	height: 30px;
}
.contactform .input-group textarea
{
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: nonw;
	resize: none;
	height: 60px;
}
.contactform .input-group label
{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	
}
.contactform .input-groupemail label
{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	
}
.contactform .input-group input:focus ~ label,
.contactform .input-group input:valid ~ label,
.contactform .input-group textarea:focus ~ label,
.contactform .input-group textarea:valid ~ label
{
	color: #e91e63;
	font-size: 12px;
	transform: translateY(-20px);
}
.contactform .input-groupemail input:focus~.upLabel,
.contactform .input-groupemail input:not(:placeholder-shown)~.upLabel
{
	color: #e91e63;
	font-size: 12px;
	transform: translateY(-20px);
}

.contactform .input-group input[type="submit"]
{
	width: 100px;
	background: #00bcd4;
	color: #fff;
	border: none;
	cursor: pointer; 
	font-size: 16px;
}

@media (max-width: 991px)
{
	.hero
	{
		padding: 50px;
	}
	.try
	{
		flex-direction: column;
	}
	.try .content,
	.contactform
	{
		margin-bottom: 40px;
		width: 100%;
	}
}