@charset "utf-8";
/* CSS Document */


/* styles de base */
:root{
	--bck-color: #F1F6FA;
	--primary-color: #343543;
	--secondary-color: #EEAB83;
	--third-color: #3C73A8;
}
html{
	height: 100%;
}
body{
	font-family: "Montserrat", sans-serif;
	font-size:15px;
	margin: 0;
	min-height: 100%;
	background: var(--bck-color);
	color: var(--primary-color);
}
.gloock{
	font-family: "Gloock", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 4px;
}
.bold{
	font-weight:bold;
}
.italic{
	font-style:italic;
}
.capitale{
	text-transform:uppercase;
}
.justify{
	text-align: justify;
}
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}
.relative{
	position: relative;
}
a img{
	border:0;
}
a {
	text-decoration:none;
}
ul,ol,figure{
	margin:0;
	padding:0;
	list-style: none;
}
.nonValide{
	background-color: rgba(255,0,0,0.6) !important;
}
.inlineMiddle,.inlineBottom,.inlineTop{
	display: inline-block;
	vertical-align: middle;
}
.inlineBottom{
	vertical-align: bottom;
}
.inlineTop{
	vertical-align: top;
}
.none,.notMobile{
	display: none;
}
.floatLeft{
	float: left;
	margin: 0 5px 5px 0;
}
.floatRight{
	float: right;
	margin: 0 0 5px 5px;
}
.clear{
	clear: both;
}
.lienInvisible{
	color: inherit;
}
.bloc{
	display: block;
}
.imgResp{
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.imgAdapt{
	width: 100%;
	height: 100%;
	object-fit: cover;
}