@charset "UTF-8";
/* -------------------------------------------------------------------- 
               			SEAI
               		Main style-sheet
          		By Marie Pecqueur, 2016
-------------------------------------------------------------------- */

/* -------------------------------------------------------------------- 
*	RESET
-------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, figure, figcaption, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

*{  box-sizing: border-box;}

html {
  overflow-y: scroll;
}

body {
  	-webkit-text-size-adjust: 100%;
  	-webkit-font-smoothing: antialiased;
  	overflow: hidden;
	font: 100%/1.2 "OpenSans-Regular",Arial,sans-serif;
  	color: #555;
  	background: #f1f1f1;
  	box-sizing: border-box;
}

header, footer, main, nav, aside, article, section, figure {
  display: block;
}


/* --- FONT FACE DECLARATIONS --- */

@font-face {
	font-family:'OpenSans-Regular';
	src: url('OpenSans-Regular.eot');
	src: url('OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
		url('OpenSans-Regular.woff') format('woff'),
		url('OpenSans-Regular.ttf') format('truetype'),
		url('OpenSans-Regular.svg#OpenSans-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-FFFD;
}

@font-face {
	font-family:'DroidSerif-Regular';
	src: url('DroidSerif-Regular.eot');
	src: url('DroidSerif-Regular.eot?#iefix') format('embedded-opentype'),
		url('DroidSerif-Regular.woff') format('woff'),
		url('DroidSerif-Regular.ttf') format('truetype'),
		url('DroidSerif-Regular.svg#DroidSerif-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-FFFD;
}


/* ------------------------------------------------------------- 
 * DEFAULTS
 ---------------------------------------------------------------*/

h2{
	color: #232532;
    font-size: 1.9em;
    text-align: center;
    width: 100%;
	padding-bottom:2em;
	font-family:'DroidSerif-Regular';
}

h3 {
	color: #232532;
    font-size: 1.7em;
	font-family:'DroidSerif-Regular';
	margin-bottom:0.5em;
}

dl{
	margin-top:1.5em;
}

dl:first-child{
	margin-top: 0;
}

dt{
	font-weight: bold;
	color: #000;
	margin-bottom: 0.3em;
	
}

p, li, dt, dd {
  	font-size: 0.90em;
}

li p, li li, ol li {
  	font-size: 100%;
}

ul{
	margin-top:1em;
}

li{
	margin-left: 2em;	
}

a:hover {
    text-decoration: underline;	
}

a{
	text-decoration: none;	
  	color: #5f77bf;
	transition: all 0.3s ease 0s;
}	

hr {
  	display: none;
}

img {
  	max-width: 100%;
  	border: 0;
}


/* ------------------------------------------------------------- 
 * PAGE STRUCTURE
 ---------------------------------------------------------------*/
 
#container {
	width: 100%;
	margin:0 auto;
	background:#FFF;
	min-width: 320px;
	max-width: 1500px;
}

#container > header {
	width: 100%;
	border-bottom:1px solid #eaeaea;
	background:#FFF; 
	position: fixed;
	z-index:5;
	max-width: 1500px;
}

#main {
	width:100%;
	padding-top:7.9em;
	position:relative;
}

main.box-contact{
	background: rgba(0, 0, 0, 0) url("../imgs/map.png") no-repeat scroll center center;
}

/* ------------------------------------------------------------- 
 * FOOTER ELEMENTS
 ---------------------------------------------------------------*/
#container > footer {
	background: #1b1a2a;
  	padding: 1.5em 5%;
	position: relative;
}
	
p.k-copyright {
  	color: #FFF;
	padding-top: 1.5em;
	margin-top: 1.5em;
	text-align:center;
	border-top:1px solid #2f2e3e
}

footer ul{
	text-align: center;
}

footer ul li{
	display: inline;
    margin-left: 0;
    text-indent: -9000px;
	margin: 0.3em;
}

footer ul li a{
	position:relative
}

footer ul li a:before{
	border-radius: 35px;
    content: "";
    height: 40px;
    left: 0;
    position: absolute;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
	background: #2f2e3e;
	border: 1px solid #2f2e3e;
}

footer ul li a:hover:before{
	border: 1px solid #2f2e3e;
	background-color: transparent ;
}

footer .ic-facebook:before{
	background: #2f2e3e url(../imgs/ic-facebook.svg) no-repeat center center / 30px 30px;
}

footer .ic-google:before{
	background: #2f2e3e url(../imgs/ic-googlePlus.svg) no-repeat center center / 30px 30px;
}


/* ------------------------------------------------------------- 
 * HEADER ELEMENTS
 ---------------------------------------------------------------*/
.tools-contact{
	width:100%;
	background:#252434;
	margin-top:0;
	padding: 0.4em 5% 0.6em;
}

.tools-contact li{
	color: #e2e2eb;
    display: inline-block;
    font-size: 0.8em;
    margin: 0 2em 0 0;
    padding-left: 1.6em;
    position: relative;
    vertical-align: middle;
}

.tools-contact li:last-child{
    margin: 0 ;
}

.tools-contact li:first-child:before, .tools-contact li:last-child:before{
	color: #fff;
	position:absolute;
	width:12px;
	height:12px;
	left: 0;
	content:"";
}

.tools-contact li:first-child:before{
	background: url(../imgs/ic-contact.svg) no-repeat center center;
	width:16px;
}

.tools-contact li:last-child:before{
	background: url(../imgs/ic-phone.svg) no-repeat center center;
}
 
 header h1{
	width: 7.5em;
	float:left;
	padding: 0.5em 5% 0.4em 5%}

/* ---------NAVIGATION------------*/

.main-nav{
	float:right;
	padding: 0 5%;	
	font-family:'DroidSerif-Regular';
}

nav#main-navigation .btn-nav{
  	display: none;
}

.main-nav ul{
	margin-top: 0;	
}

.main-nav li{
	display:inline-block;
	padding: 2.3em 0;
	font-size: 1em;
	position: relative;
}

.main-nav li a{
	color: #242434	
}

.main-nav li a:hover{
	color: #4478b2;
	text-decoration:none;	
}

.main-nav li.active{
	color: #4478b2;
	border-top: 3px solid #4478b2;	
}

.main-nav li.ic-formation{
	height: 6em;
    padding: 1.7em 0;
    vertical-align: top;
}

.sub-nav{
	background: #4478b2;
    font-size: 0.8em;
    position: absolute;
    right: 0;
    top: 7.5em;
	height:0;
	width:20em;
	text-indent: -9000px;
}

.main-nav li:hover .sub-nav:after, .main-nav li:focus .sub-nav:after{
	background: #fff;
    content: "";
    height: 1em;
    position: absolute;
    right: 0;
    top: -0.4em;
    transform: rotate(45deg);
    width: 1em;
	z-index: 5
}

.main-nav li:hover .sub-nav, .main-nav li:focus .sub-nav{
	transition: height .3s ease-in;
	border-top:1px solid #fff;
   	height:15em;
    text-indent: 0;
	z-index: 6
}


.sub-nav li{
	margin: 0 1em;
    padding: 1em 0 0 0;
}

.sub-nav li a{ 
	color:#fff;
	display:inline-block;
	width:100%;
}

.sub-nav li a:hover{ 
	color:#1d3549;
}

/* ------------------------------------------------------------- 
 * FORM
 ---------------------------------------------------------------*/
form{}

form label{
	position: absolute;
    text-indent: -9000px;
}

form input, form textarea{
	border: 1px solid #d3d3d3;
    border-radius: 4px;
    font-size: 100%;
    padding: 0.7em 1em;
    width: 100%;
	font-family: "OpenSans-Regular",Arial,sans-serif;
	font-size: 0.95em;
}

form p{
	margin-bottom: 1.5em
}

form p:last-child{
	margin-bottom: 0
}

.bt-bar{
	text-align:center;
}

input[type='submit']{
	background: #f05658;
	color: #fff;
	font-family:'DroidSerif-Regular';
	font-size:1.2em;
	width:auto;
	border:none;
	cursor:pointer;
}

input[type='submit']:hover{
	background: #dd4f51;
}

.alert{
	background:rgba(0, 0, 0, 0.7);
	border-radius: 4px;
	padding: 2em 1em;
	color:#fff;
	text-align: center;
}

/* -----SPECIFICS-------------*/

#form-contact{
	display: inline-block;
    margin: 0 auto ;
    padding: 0 5%;
    width: 50%;
}

/* ------------------------------------------------------------- 
 * ICONS
 ---------------------------------------------------------------*/
[class*="ic-"]{
	display: inline-block;
    text-indent: -9000px;
	width: 40px;
 	height: 40px;
}

[class*="ic-"] a{
	display: block;
	width: 40px;
 	height: 40px;
}

.ic-formation > a{
	background: #4478b2 url("../imgs/ic-formation.svg") no-repeat scroll center center/30px auto;
	border-radius: 4px;
}

.ic-linkedin{
	background: url(../imgs/ic-linkedin.svg) no-repeat center center;
}

.ic-email{
	background: url(../imgs/ic-email.svg) no-repeat center center;
}

.ic-site{
	background: url(../imgs/ic-site.svg) no-repeat center center / auto 22px;
}

.ic-goTop{
	background: #f05658 url("../imgs/ic-goTop.svg") no-repeat scroll center center;
	background-size: auto 17px;
    border-radius: 4px;
    bottom: 3em;
    position: fixed;
    right: 1em;
	z-index: 900;
}

.ic-tel {
    background: #0a7bb5 url("../imgs/ic-tel.svg") no-repeat scroll right center / 37px auto;
    border-radius: 35px;
    color: #fff;
    text-indent: -9000px;
	text-align:center
}

.ic-tel:hover {
   transition: all 200ms ease-in-out 100ms;
    text-indent: 0;
    width: 130px;
	background: #0a7bb5;
}



/* ------------------------------------------------------------- 
 * BLOCKS
 ---------------------------------------------------------------*/
 
  /* --------SECTION/DIV-------*/
 main > section,  main > div, main > form{
	padding:5em 5%; 
}

 main > section:nth-child(5){
	background: #ededed;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

h2 + p{
	font-size: 1em;
    line-height: 1.5;
    margin: 0 auto 4em;
    text-align: center;
    width: 40em;
}
 
 /* --------HIGHLIGHT-------*/
 .highlight{
	 width:100%;
	 background:url(../imgs/slide.jpg) no-repeat left top;
	 background-size: cover;
	 position:relative;
}

 .highlight:after{
	 position:absolute;
	 width: 100%;
	 height:100%;
	 content:"";
	 background:rgba(0,0,0,0.7);
	 top:0;
	 left:0;
	 z-index: 2;
}
	 
.highlight p{
	color:#FFF;
	font-size: 3em;
	text-align:center;
	z-index: 3; 
	position:relative;
	font-family:'DroidSerif-Regular'; }
	 
.highlight span{ 
	display: block;
    font-size: 0.5em;
}

.highlight a{ 
	color:#FFF;
	text-decoration:none;
	border:1px solid #FFF;
	border-radius: 4px;
	padding: 0.5em 1em;
	font-size:0.35em;
	margin-top:3em;
	display: inline-block;
}

.highlight a:hover{ 
	color:#242434;
	border:1px solid #FFF;
	background: #fff;
}

 /* --------HIGHLIGHT ARTICLE-------*/

.highlight-article{ 
	width:100%;
	 background:url(../imgs/slide2.jpg) no-repeat left bottom;
	 background-size: cover;
	 position:relative;
	padding: 7em 5%;
}

.highlight-article p {
    font-size: 1.52em;
	font-style: italic;
}

 /* --------HIGHLIGHT DETAIL ARTICLE-------*/

.highlight-detail-article{ 
	width:100%;
	position:relative;
	padding: 0;
	background: none;
	max-height: 25em;
	overflow: hidden;
}

 .highlight-detail-article:after{
	 z-index: 3;
}

.highlight-detail-article img {
    display:block;
	width: 100%;
}


  /* --------LINK DETAIL-------*/
.link-detail {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.9);
    border-radius: 25px;
    display: inline-block;
    left: 45%;
    position: absolute;
    top: 20%;
}

.link-detail:hover {
    background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(0, 0, 0, 0.5);
}

.link-detail a {
    background: rgba(0, 0, 0, 0) url("../imgs/ic-view.svg") no-repeat scroll center center / 20px auto;
    color: #fff;
    display: block;
    height: 3em;
    text-indent: -9000px;
    width: 3em;
}

 /* --------BOX EXPERTISE-------*/	 
.box-expertise{
	 display: flex;
    flex-flow: row wrap;
	justify-content: space-between;
}

.box-expertise li{
	list-style: outside none none;
    margin-left: 0;
    width: 30%;
	padding-left:5em;
	position:relative;
	min-height: 4em;
}

.box-expertise li:nth-child(n+4){
	margin-top:2em
}


.box-expertise li:before{
	width:4em;
	height:4em;
	content:"";
	position:absolute;
	border-radius: 35px;
	left:0;
	transition: all 0.3s ease-in-out 0s;
}

.box-expertise li:nth-child(1):before{
	background: #f05658 url("../imgs/ic-expertise1.svg") no-repeat scroll center center / 20px 20px;
}

.box-expertise li:nth-child(2):before{
	background: #f05658 url("../imgs/ic-expertise2.svg") no-repeat scroll center center / 20px 20px;
}

.box-expertise li:nth-child(3):before{
	background: #f05658 url("../imgs/ic-expertise3.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(4):before{
	background: #f05658 url("../imgs/ic-expertise4.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(5):before{
	background: #f05658 url("../imgs/ic-expertise5.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(6):before{
	background: #f05658 url("../imgs/ic-expertise6.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:hover:before{
	background-color: #242434;
}

.box-expertise li:nth-child(1):hover:before{
	background-image: transparent url("../imgs/ic-expertise1.svg") no-repeat scroll center center / 20px 20px;
}

.box-expertise li:nth-child(2):hover:before{
	background-image: transparent url("../imgs/ic-expertise2.svg") no-repeat scroll center center / 20px 20px;
}

.box-expertise li:nth-child(3):hover:before{
	background-image: transparent url("../imgs/ic-expertise3.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(4):hover:before{
	background-image: transparent url("../imgs/ic-expertise4.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(5):hover:before{
	background-image: transparent url("../imgs/ic-expertise5.svg") no-repeat scroll center center / 20px 20px
}

.box-expertise li:nth-child(6):hover:before{
	background-image: transparent url("../imgs/ic-expertise6.svg") no-repeat scroll center center / 20px 20px
}

 /* --------BOX CITATION-------*/
.box-citation{
	background: #51505e;
	text-align:center;
	font-family:'DroidSerif-Regular';
}

.box-citation blockquote{
	font-size:3em;
	color:#FFF;
}

.box-citation p{
	font-size:1em;
	color:#8c8ba1;
	margin-top: 1em;
}

 /* --------BOX PROFIL-------*/
.box-profil{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.box-profil > li{
    list-style-type: none;
    margin: 1em 0;
    text-align: center;
    width: 31%;
}

.box-profil-index > li{
	width: 23%;
}

.box-profil h3 {
    margin-bottom:0;
}

.box-profil h3 img{
    display: block;
    margin: 0 auto 1em auto;
	
}

.box-profil .statut{
	color: #4477ae;
    font-size: 1.2em;
	text-transform: uppercase;
	font-family:'DroidSerif-Regular';
}

.box-profil .info{
	margin-top: 1em;
}

.box-profil .link {
	margin-top: 1em;
	border-top: 1px dashed #dcdcdc;
    padding-top: 1em;
	position: relative;
}

.box-profil .link li{
	display:inline-block;
	margin-left: 0;
	background-color: #0a7bb5;
	border-radius: 35px;
	margin: 0 0.2em;
	padding: 0.7em 0;
}

.box-profil .link li:hover{
	background-color: #242434;
}

 /* --------BOX QUESTION-------*/
.box-question{
	width: 100%;
	padding-right:40%;
	background: url(../imgs/prototype-voiture.png) no-repeat right center;
	background-size: auto 100%;
}

.box-question li{
	margin-left: 0;
	list-style-type:none;
	position:relative;
    min-height: 4em;
    padding-left: 5em;
	margin-bottom:2em;
	background: #ededed
}

.box-question li:last-child{
	margin-bottom:0;
}

.box-question li:before {
	width:4em;
	height:4em;
	content:"";
	position:absolute;
	border-radius: 35px;
	left:0;
	transition: all 0.3s ease-in-out 0s;
}

.box-question li:nth-child(1):before{
	background: #f05658 url("../imgs/ic-question1.svg") no-repeat scroll center center / 25px 25px
}

.box-question li:nth-child(2):before{
	background: #f05658 url("../imgs/ic-question2.svg") no-repeat scroll center center / 25px 25px
}

.box-question li:nth-child(3):before{
	background: #f05658 url("../imgs/ic-question3.svg") no-repeat scroll center center / 25px 25px
}

.box-question li:hover:before{
	background-color: #242434;
}

 /* --------BOX ARTICLE-------*/	
.box-article{
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
}

.box-article li, .box-article div{
	border: 1px solid #f0f0f0;
    list-style-type: none;
    margin: 0.7em 1%;
    padding: 1.5em;
    width: 31%;
	position:relative;
}

.highlight-detail-article + .box-article div{
	width: 80%;
}

.box-article h3, .box-article h2{
	color: #2a3d4c;
    font-size: 1em;
    text-transform: uppercase;
	font-family:'OpenSans-Regular';
	border-bottom: 2px solid #798a9c;
	padding-bottom:0.5em;
	margin-bottom:0;
	text-align: left;
}

.box-article h2{
    font-size: 1.1em;
}

.box-article h3 img, .box-article h2 img{
	display: block;
    width: 100%;
	margin-bottom:1.5em;
}

.box-article small{
	padding-left: 2em;
    color: #798a9e;
    font-size: 0.8em;
    margin-bottom: 2em;
    text-align: right;
	background: url(../imgs/ic-calendar.svg) no-repeat left center;
	float:right;
	margin-top:0.5em;
}

.box-article p{
	clear:both;	
}

 /* --------BOX ADRESSE-------*/
.box-adresse{
    border-right: 1px solid #e0e0e0;
    display: inline-block;
    padding: 0 5%;
    text-align: right;
    width: 49%;
	vertical-align: top;
	height: 21em;
}

.box-adresse dl{
    background: #eeeeee;
	padding: 0.85em;
}

/* ------------------------------------------------------------- 
 * API
 ---------------------------------------------------------------*/
#map{
	height:22em;
	width:100%
}

#map2{
    border: 3px solid #fff;
    height: 8em;
    margin-top: -10em;
    width: 8em;
}

.gm-style-iw{
	text-align: center
}

.gm-style-iw span{
	color: #232532;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

/* ------------------------------------------------------------- 
 * SITE UTILITIES
 ---------------------------------------------------------------*/






