/* BEGIN OF Fonts */
/* devanagari */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local('Poppins Regular'), local('Poppins-Regular'), url(../fonts/poppins2.woff2) format('woff2');
	unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local('Poppins Regular'), local('Poppins-Regular'), url(../fonts/poppins2.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local('Poppins Regular'), local('Poppins-Regular'), url(../fonts/poppins.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* END OF Fonts */

/* Style the video: 100% width and height to cover the entire window */
.BGVideo {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -10;
}

/* Style the Image: 100% width and height to cover the entire window */
.BGimage {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -15;
}

/* Style for video color translucent overlay */
.VideoOverlay {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -2;
	background: rgba(255,255,255,0.6);
	z-index: -5;
}

/* Main page styles */
body,h1,h2,h3,h4,h5 {
	font-family: "Poppins", sans-serif;
	overflow:hidden;
}
body {
	font-size:16px;
}

/* Images exemples */
.exemples img {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin-bottom:-6px;
	margin-top:16px;
/*	opacity:0.9; */
	cursor:pointer;
	filter:grayscale(80%);
	border:1px solid transparent;
}
.exemples img:hover {
/*	opacity:1; */
	filter:grayscale(00%);
	border:1px solid black;
}

/* Main page margins */
.mainmargins {
	margin-left:340px;
	margin-right:40px;
}
@media (max-width:992px) {
.mainmargins {
	margin-left:0px!important;
	margin-right:0px!important;
	max-width:100%!important;
}}
.mainnegativemargins {
	margin-left:-340px;
	margin-right:-40px;
}
@media (max-width:992px) {
.mainnegativemargins {
	margin-left:0px!important;
	margin-right:0px!important;
	max-width:100%!important;
}}

/* Positionnement ancres */
a.anchor {
    display: block;
    position: relative;
    top: 10px;
    visibility: hidden;
}
@media (max-width:992px) {
a.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}}

/* Icônes */
.icons {
	padding: 10px;
	width: 100%;
	max-width: 350px;
	max-height: 100%;
	filter:grayscale(25%);
/*	filter: drop-shadow(5px 5px 0px #AAAAAA); */
}
.iconscontainer {
	width: 100%;
	text-align: center;
	background: rgba(205,205,205,0.75);
}

/* NOT IN USE Alignements  */
.minheight {
	min-height: 250px;
 }
 .flex {
	display: flex;
}
@media (max-width:992px) {
.flex {
}}
.col {
  flex: 1;
  padding: 16px;
} 