@charset "utf-8";
body {
	font-family: "Rajdhani", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color: #CCC;
	background-color: #111923;
	margin: 0px;
	line-height: 22px;
}
a {
	color: #FFF;
	text-decoration: none;
}
.dates  {
	background-color: rgba(0, 0, 0, 0.7);
	color: #CCC;
	padding: 30px;
	position: absolute;
	z-index: 500;
	width: 350px;
	display: none;
}

a:hover {
	color: #CCC;
}
h1 {
	font-family: "Corinthia", cursive;
 	font-weight: 700;
	font-style: normal;
	font-size: 100px;
	text-align: center;
	padding: 0px;
	line-height: 100px;
	color: #0099CC;
	margin-top: 10px;
	margin-bottom: 10px;
}
h2 {
	font-family: "Corinthia", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 60px;
	padding: 0px;
	line-height: 60px;
	color: #0099CC;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;	
}

h3 {
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 22px;
	padding: 0px;
	line-height: 24px;
	color: #0099CC;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.sel {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0099CC;
	animation-name: opacite-soulignement-menu;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
@keyframes opacite-soulignement-menu {
  0%   {opacity: 0.5;}
  50%  {opacity: 1;}
  100% {opacity: 0.5;}
}





}

p {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.fond {
	background-color: #111923;
}
.fond-agenda {
	background-image: url("images/fond-agenda.jpg"); 
	background-size: contain;
	background-repeat: no-repeat;
}
.fond-leprojet {
	background-image: url("images/fond-leprojet.jpg"); 
	background-size: 500px;
	background-repeat: no-repeat;
	background-position: top;
}
#infos:hover .dates {
	display: block;
}
.conteneur-principal {
	width: 99%;
	max-width: 1170px;
	min-height: 200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0.5%;
	padding-left: 0.5%;
	padding-bottom: 30px;
	padding-top: 1px;
}

.logo-insolite {
	background-image: url(images/logo-linsolite.png);
	background-repeat: no-repeat;
	background-position: left top;
	float: right;
	height: 90px;
	width: 220px;
}
.entete {
	padding-top: 10px;
	height: 150px;
}
.menu-principal {
	float: left;
	padding-top: 30px;
	padding-left: 10px;
}

.menu-principal a {
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	color: #fff;
}
.bouton-menu {
	float: left;
	margin-right: 25px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-transform: uppercase;

}
.sous-menu {
	display: none;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	position: absolute;
	z-index: 1000;
	background-color: rgba(0,153,204,0.2);
	padding-top: 3px;
	padding-bottom: 3px;
	text-transform: none;
}
.sous-menu a {
	display: block;
	font-family: "Rajdhani", sans-serif;
	font-weight: 500;
	font-style: normal;
	text-align: center;
	font-size: 16px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 15px;
	padding-left: 15px;
}
.sous-menu a:hover {
	background-color: rgba(0,153,204,1);
}

.titres-accueil {
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 40px;
	text-align: left;
	line-height: 40px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.bloc3col {
	margin-top: 30px;
	width: 31.33%;
	min-height: 100px;
	margin-right: 1%;
	margin-left: 1%;
	float: left;
	text-align: justify;
}
.bloc-footer {
	margin-top: 30px;
	width: 31.33%;
	min-height: 100px;
	margin-right: 1%;
	margin-left: 1%;
	float: left;
	text-align: justify;
}

.bloc3col img {
	max-width: 100%;
	height: auto;
	margin-bottom: 5px;
}
.bloc3col:hover img { 
	-webkit-animation-name: overgris; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
	animation-name: overgris;
	animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.battements {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 10s;
  animation-duration: 8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;}
  @-webkit-keyframes pulse {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  50% {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
  @keyframes pulse {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  50% {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  } 


.espace {
	border-bottom: 2px solid #CCC;
	height: 50px;
	width: 100%;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes overgris {
    to {opacity: 0;}
}
/* Standard syntax */
@keyframes overgris {
    from {opacity: 1;}
    to {opacity: 0.5;}
}
.clear {
	clear: both;
}
.bloc-double {
	width: 64.66%;
	float: left;
	margin-right: 1%;
	margin-left: 1%;
	margin-top: 30px;
}
.bloc-double img {
	width: 100%;
	height:auto;
	max-height: 500px;
	object-fit: contain;
}
.bloc-legende-presentation {
	width: 27.33%;
	float: left;
	margin-top: 30px;
	margin-right: 1%;
	margin-left: 1%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 2%;
	padding-right: 2%;
	border-bottom: 1px solid #0099CC;
	border-top: 1px solid #0099CC;
	text-align: justify;
	background-color: #011531;
	box-shadow: 12px 12px 8px #0a0f14;

}
.bloc-legende-presentation img {
	max-width: 100%;
	height: auto;
	margin-bottom: 5px;
}
.bloc-legende-presentation:hover img { 
	-webkit-animation-name: overgris; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
	animation-name: overgris;
	animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

}
.bouton-nav {
	display: block;
	background-color: #888;
	float: left;
	margin-right: 5px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	color: #333;
	margin-bottom: 10px;
}


.conteneur-footer {
	min-height: 200px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 5%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.6)), color-stop(5%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 5%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 5%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 5%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 5%); /* W3C */
	margin: 0px;
	padding: 0px;
}
.footer { 
	width: 100%;
	max-width: 1170px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}
