/***************************************************/
/***************** Font material *******************/
/***************************************************/

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 90%;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	vertical-align: middle;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

.font-awesome i.fas:before {
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
}

.font-awesome i.fab:before {
	font-family: "Font Awesome 5 Brands";
	font-style: normal;
}


.header_news .et_parallax_bg {
	filter: blur(10px) grayscale(0.5) brightness(0.5) opacity(0.5) contrast(1.5);
}

/***************************************************/
/**************** Custom GF matrix *****************/
/***************************************************/
.table-matrix .gchoice input[type="checkbox"][disabled] {
    display: none;
}
.table-matrix .gchoice input[type="checkbox"][disabled] + label {
    pointer-events: none;
}

.table-matrix .gchoice input[type="checkbox"][disabled] {
    display: none;
}

.table-matrix td.gchoice:has(> input[type="checkbox"][disabled]) {
	background-image: linear-gradient(135deg, #ffffff 25%, #dedede 25%, #dedede 50%, #ffffff 50%, #ffffff 75%, #dedede 75%, #dedede 100%);
	background-size: 5.66px 5.66px;
	);
}




/***************************************************/
/**************** GRID adaptative ******************/
/***************************************************/

.adaptative-grid {
	display: grid;
	grid-template-columns: repeat(var(--dyncols), 1fr);
	grid-template-rows: 1fr;
	gap: 4em 2em;
}


/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
	.adaptative-grid {
		grid-template-columns: 1fr;
		gap: 2em 2em;
	}
}

/***************************************************/
/**************** NEWS Featured ********************/
/***************************************************/

.news-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 2em 2em;
	grid-template-areas:
		grid-template-areas: ". .";
}

/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px);
@media all and (max-width: 479px) {
	.news-featured {

	}
}

.news-featured .date {
	display: inline-block;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	color: #000;
	float: left;
	margin: 0;
	line-height: 120%;
	padding: 0.25em 0 0.15em 0;
}

.news-featured .type {
	border-radius: 4px;
	padding: 0.25em 0.5em 0.15em 0.5em;
	background: #333;
	color: #fff;
	font-size: 8px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	float: right;
	display: inline-block;
	line-height: 120%;
	margin: 0;
}

.news-featured .title {
	font-weight: bold;
	font-size:250%;

	margin-top: 0;
}
.news-featured .pict {
	height: 24em;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0;
}

.news-featured .stitle {
	font-weight: bold;
	color: #000;
	font-size:200%;
	border-top: 1px solid #ddd;
	padding: 1em 0;
}

.news-featured .text {
	font-size:150%;
	color: #000;
}

a.news-featured {
	position :relative;
	font-weight:normal;
}
a.news-featured:hover * {
	transition: all 0.3s ease-in-out 0s;
	opacity:0.5;
	filter: grayscale(100%);
}
a.news-featured:after {
	transition: all 0.15s ease-in-out 0s;
	--circle-radius: 6em;
	content: attr(data-label);
	position: absolute;
	display: inline-grid;
	align-items: center;
	top: Calc(50% - var(--circle-radius));
	left: Calc(50% - var(--circle-radius));
	border-radius: 100%;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0;
	width: Calc(2 * var(--circle-radius));
	height: Calc(2 * var(--circle-radius));
	text-align: center;
}
a.news-featured:hover:after {
	opacity:1;
}

/***************************************************/
/***************** NEWS Col X3 *********************/
/***************************************************/

.news-col .date {
	display: inline-block;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	color: #000;
	float: left;
	margin: 0;
	line-height: 120%;
	padding: 0.25em 0 0.15em 0;
}

.news-col .type {
	border-radius: 4px;
	padding: 0.25em 0.5em 0.15em 0.5em;
	background: #333;
	color: #fff;
	font-size: 8px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	float: right;
	display: inline-block;
	line-height: 120%;
	margin: 0;
}

.news-col .title {
	font-weight: bold;
	border-top: 1px solid #ddd;
	padding-top: 0.25em;
	margin-top: 0;
}
.news-col .pict {
	height: 12em;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 1em 0;
}

.news-col .stitle {
	font-weight: bold;
	color: #000;
	font-size: 120%;
}

.news-col .text {
	color: #000;
	font-weight:normal;
}

.news-col a {
	position :relative;
	font-weight:normal;
	display: block;
}
.news-col a:hover * {
	opacity:0.5;
	filter: grayscale(100%);
	transition: all 0.3s ease-in-out 0s;
}
.news-col a:after {
	--circle-radius: 6em;
	transition: all 0.15s ease-in-out 0s;
	content: attr(data-label);
	position: absolute;
	display: inline-grid;
	align-items: center;
	top: Calc(50% - ((var(--circle-radius) / 3) * 2));
	left: Calc(50% - var(--circle-radius));
	border-radius: 100%;
	background: rgba(0,0,0,1);
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0;
	width: Calc(2 * var(--circle-radius));
	height: Calc(2 * var(--circle-radius));
	text-align: center;
}
.news-col a:hover:after {
	opacity:1;
}

/***************************************************/
/********************** Team  **********************/
/***************************************************/

.team-col .bloc {
}
.team-col .infos {
  background: #f6f6f6;
  padding: 1em 0.5em;
  border: 1px solid #ddd;
  border-radius: 0.25em;
  min-height: 14ch;
  margin: auto;
}

.team-col .pict {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: calc(20% * var(--dyncols));
  margin: 0 auto 1em auto;
  padding-bottom: calc(20% * var(--dyncols));
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
.team-col .name,
.team-col .team {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;

}
.team-col .name h4  {
    display: inline-block;
}
.team-col h6.team {
line-height: 1.5em;
  text-transform:inherit !important;
	text-align:center;
}
.team-col.jobs {
}
.team-col .linsks {
  margin-top:2em;
}

.team-col .fa-linkedin,
.team-col .fa-twitter {
  color: #ccc;
}

.team-col .fa-linkedin:hover {
  color: #0e76a8;
}
.team-col .fa-twitter:hover {
  color: #1DA1F2;
}

/***************************************************/
/**************** MOBILE SETTINGS ******************/
/***************************************************/
@media only screen and (max-width : 980px) {
	.reverse-row {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.reverse-row .et_pb_column .et_pb_image img {
		margin-top:2em;
	}
	footer .two-columns .et_pb_column {
		width: 50%!important;
	}

	.three-columns .et_pb_column {
		width: 33.33%!important;
	}

	.four-columns .et_pb_column {
		width: 25%!important;
	}
	.material-icons-btn a:hover,
	.material-icons-btn a:visited,
	.material-icons-btn a:focus {
		color:#fff!important;
	}
	.noselect {
		-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
		-moz-user-select: none; /* Old versions of Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
		user-select: none; /* Non-prefixed version, currently */
	}
}

/***************************************************/
/***************** RGPD cookie  ********************/
/***************************************************/

#cn-notice-text {
	display: block;
	width: 75%;
	margin: 1em auto;
}
#cn-notice-text > strong {
	display: inline-block;
	float: left;
	font-size: 200%;
	font-weight: 100;
	padding: 0.2em 0 0.5em 0;
	margin-right: 1em;
}
#cn-notice-text > span {
	text-align: left;
	display: block;
	margin-left: 1em;
	font-size: 90%;
	line-height: 130%;
	font-weight: 300;
}
@media screen and (max-width: 991px) {
	#cn-notice-text {
		display: block;
		width: initial;
		margin: auto auto 1em auto;
		font-size: 1em;
	}
	#cn-notice-text > strong {
		display: inline-block;
		float: none;
		font-size: 150%;
		font-weight: 400;
		padding: 0;
		margin-right: 0;
	}
	#cookie-notice .cn-button {
		display: block;
		margin-bottom: 1em;
	}
}

/***************************************************/
/********************* BCK *************************/
/***************************************************/

/*** Responsive Styles Large Desktop And Above ***/
@media all and (min-width: 1405px) {
}

/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) and (max-width: 1405px) {
}

/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
}

/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {
}

/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
}

/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
}