@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800,900,100,200);
@import url('https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900');

body{
  font-family: 'Catamaran', sans-serif;
  font-size:14px;
  font-weight: 400;
  overflow-y:scroll;
  -webkit-font-smoothing: antialiased;
 }

::selection {
		background: #000;
		color: #fff;
		text-shadow: none;
	}
	
	::-moz-selection {
		background: #000;
		color: #fff;
		text-shadow: none;
	}

p{
  font-family: 'Catamaran', sans-serif;
  font-size:14px;
  font-weight: 400;
}

a{
  text-decoration:none;
  -webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in; 
}

a:focus {
  outline:none;
}

strong{
  font-weight:700;

}



/*
**************************
PRELOADER
**************************
*/

.preloader{
  position:fixed;
  top:0;
  width:100%;
  height:100%;
  background:white;
  z-index:999;
}
 
.preloader .item{
  position:absolute;
  width:50px;
  height:50px;
  left:50%;
  top:50%;
  margin-left:-25px;
  margin-top:-25px;
} 

.spinner {
  width: 40px;
  height: 40px;
  margin: 0px auto;
  background-color: #333;
  border-radius: 100%;  
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}





/*
**************************
NAVIGATION OPACITY
**************************
*/



.opacity-nav{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.9);
}

ul.menu-fullscreen{
  width: 100%;
  top: 50%;
  position: absolute;
  height: 280px;
  margin-top: -140px;
}

ul.menu-fullscreen li{
  font-size:35px;
  text-align:center;
  line-height:60px;
  font-weight:500;
}

ul.menu-fullscreen li > a{
  color:#0C419A;
  border:0;
}

ul.menu-fullscreen li > a:hover{
  color:#F7A600;
}

#full{
  width:1140px;
  position: relative;
  top:0;
  margin:0 auto;
  z-index: 9997;
}


#fullscreen{
  display:none;
  position:absolute;
  top:0;
  width:100%;
  margin:0 auto;
  height:80px;
  z-index: 9998;
}

/*
**************************
HEADER
**************************
*/

header.boxed{
  position:fixed;
  width:100%;
  margin:0 auto;
  height:80px;
  z-index:9999;
  display:none;
  background:#FFF;
  top:0;
    -webkit-transition: background 0.2s ease-in;
	-moz-transition: background 0.2s ease-in;
	-ms-transition: background 0.2s ease-in;
	-o-transition: background 0.2s ease-in;
	transition: background 0.2s ease-in;
	
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

header.boxed .header-margin{
  width:1500px;
  margin:0 auto;
}

header.boxed .header-margin-mini{
  width:90%;
  margin:0 auto;
}


ul.social-icon{
  float:right;
}

ul.social-icon a{
  float:right;
  font-size:15px;
  border-bottom:0;
  color:#FFF;
  padding-right:0px !important;
}

ul.social-icon a:hover{
  color:#F7A600;
}

.menu-index{
  position: fixed;
  right: 5%;
  top: 30px;
  z-index: 99999;
  padding:20px;
  background:#0C419A;
  cursor:pointer;
}


.menu-index i{
  float:right;
  font-size:18px;
  color:#FFF;
  padding-right:0px !important;
}

.menu-index i:hover{
  color:#F7A600;
}


ul.menu-icon{
  float:right;
}

ul.menu-icon a{
  float:right;
  font-size:19px;
  color:white;
  padding-right:0px !important;
}

ul.menu-icon i{
  padding:20px;
  background:black;
}

ul.menu-icon a:hover{
  color:#c3c3c3;
}

header a{
  color:#FFF;
}

ul.header-nav{
  float:left;
}

header .logo > a{
  float:left;
  line-height:80px;
  padding-right:50px;
  height:80px;
}

header li{
  text-transform:uppercase;
  list-style-type: none; margin: 0 auto; float: left;
  margin-right:15px;
  margin-left:15px;
}

.icon {
  margin-left:6px;
}

header li > a{
  font-size:16px;
  color:#1A1A1A;
  font-weight:700;
  line-height:80px;
  display:inline-block;  
  border-bottom:0;
}

header li > a:hover{
  color:#F7A600;
}

header li > a #active{
  color:#F7A600;
}

header li ul{
  overflow: hidden; display: none; background: #4b4a4d; z-index:20; 
}
header li ul a {
    color:#eceded; padding:10px 0;
}
header li ul li a{
  line-height:50px;
  padding-left:30px; 
  width:400px;
}

header li:hover ul{
  position: absolute; padding: 0; display: block; width: 400px;
}



/*
**************************
CONTENT
**************************
*/

.hero-image{
  position:relative; 
  width:100%; 
  top:0; 
  height:400px; 
  background: url('../img/full/full.jpg') center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;  
}
.fond-jaune{
	background-color: #f7a600;
	padding: 20px;
	margin-top: 80px;
    color: #fff;
	background-image: url('../img/fond-jaune.jpg');
	background-repeat: no-repeat;
	background-position:center top;
}

.fond-gris-sauterelles{
	background-color: #eceded;
	padding-top: 10px;
	padding-bottom: 60px;
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 80px;
	background-image: url('../img/fond-gris.jpg');
}
.fond-gris{
	background-color: #eceded;
	padding-top: 10px;
	padding-bottom: 60px;
	padding-left: 40px;
	padding-right: 40px;
}
.fond-rouge{
	background-color: #FF0000;
    padding: 5em;
    text-align:center;
	background-image: url('../img/fond-rouge2.jpg');
    background-position: bottom;
}
.fond-rouge-padding h1{
  font-size:36px;
  text-transform:uppercase;
  font-weight:700;
  color:#FFF;
    margin-bottom: 1em;
}
.btn-suite, .btn-suite a {
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid #FFF;
	padding: 10px 20px;
}
.btn-suite:hover {
  color:#333333;
  background-color:#FFF;
}
.btn-center {
    text-align: center;
}
.btn-actu, .btn-actu a {
	color: #333333;
	border: 1px solid #333333;
	text-decoration: none;
	font-weight: 700;
	padding: 10px 20px;
}
.btn-actu:hover {
  color:#FFF;
  background-color: #333333;    
}


.bloc-part {
	background-color: #eceded;
	padding-top: 60px;
	padding-bottom: 60px;
}
.bloc-part .bloc-part-intro {
    width: 1140px;
    margin: 0 auto 0;
}
.bloc-part .bloc-part-intro h1 {
  font-size:36px;
  text-transform:uppercase;
  font-weight:700;
  line-height:70px;
  text-align:center;
  margin-bottom: 1em;
}
.bloc-part .bloc-part-intro .part-photo {
  width:30%;
  position:relative;
  float:left;
}
.bloc-part .bloc-part-intro .part-photo img {
  display: block;
  max-width: 90%;
  height: auto;
  border: 1px solid #c6c6c6;
}
.bloc-part .bloc-part-intro .part-text {
  width:70%;
  position:relative;
  float:left;
}
.bloc-part .bloc-part-intro .part-text p {
  font-size:16px;
  font-weight:400;
  letter-spacing:1px;
  margin-bottom:20px;
    
}




/************************** style alignum ***************************/
.gris10 {
	background-color:#eceded;
}
.gris20 {
	background-color:#d9dadb;
}
.orange {
	background-color:#f27407;
}
.gris90 {
	background-color:#646567;
}
.jaune {
	background-color:#fbb319;
}
.gris50 {
	background-color:#b1b3b4;
}
.height-ref1 {
	  min-height:475px;
}
.height-ref2 {
	  min-height:650px;
}
.height-ref3 {
	  min-height:300px;
}
.height-ref4 {
	  min-height:580px;
}
.height-ref5 {
	  min-height:200px;
}
.petite-column{
  width:40%;
  position:relative;
  float:left;
}
.petite-column .bloc-photo {
	position:relative; 
	max-height:100%;
	width:auto;
	display:block;
	top:0; 
	background-image: url('../img/image-test.jpg');
	background-size: cover;
}
.grande-column{
  width:60%;
  position:relative;
  float:left;
}
.grande-column .bloc-text-intro, .petite-column .bloc-text-intro {
	margin:50px;
	color:#434345;
}
.grande-column .bloc-text, .petite-column .bloc-text {
	margin:50px;
	color:#FFF;
}
.grande-column h2, .petite-column h2{
  font-size:30px;
  text-transform:uppercase;
  font-weight:800;
}
.grande-column h3, .petite-column h3 {
  font-size:18px;
  text-transform:uppercase;
  font-weight:700;
  line-height:22px;
  letter-spacing:1px;
}
.grande-column p{
  width:100% !important;
  font-size:16px;
  margin-top:30px;
  font-weight:300;
  line-height:22px;
  letter-spacing:0.5px;
}
.grande-column p a {
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid #FFF;
	padding: 10px 20px;
	border-radius: 6px;
}
.grande-column p a:hover {
  color:#f27407;
  text-decoration:none;
  font-weight:700;
  background-color:#FFF;
}
.petite-column .btn-compet {
  border-bottom:2px solid #FFF;
  margin-top:30px;
  padding-bottom:25px;
}
.petite-column .btn-compet a {
  color:#434345;
}
.petite-column .btn-compet a:hover {
	text-decoration:none;
  color:#f27407;
}


.large-column{
  width:100%;
  position:relative;
  float:left;
}
/************************** FIN style alignum ***************************/

.one-column{
  width:40%;
  position:relative;
  float:left;
}

.two-column{
  width:60%;
  position:relative;
  float:left;
}

.trois-column{
  width:50%;
  position:relative;
  float:left;
}

.one-column p{
  width:90% !important;
}

.two-column p{
  width:90% !important;
}

.trois-column p{
  width:90% !important;
}


.clear{
  clear:both;
}

.content{
  position:relative;
  width:1140px;
  margin:50px auto;
}
.content .domaine{
  width: 1140px;
  margin-top: 0px;
  margin: -50px auto 0;
  background-color:#0000FF;
}
.content .intro-home{
  text-align:center;
}
.content .text-intro{
  width: 1140px;
  margin-top: 150px;
  margin: 150px auto 0;
}
.content .intro-margin {
  margin-top: 50px;
}
.content .text-intro h1, .intro-home h1{
  font-size:36px;
  text-transform:uppercase;
  font-weight:700;
  line-height:70px;
  text-align:center;
}
.content .text-intro h2, .content .intro-home h2{
	font-size: 32px;
	color: #333333;
	font-weight: 300;
	letter-spacing: 2px;
}
.content .text-intro h3{
  font-size:18px;
  text-transform:uppercase;
  color:#F7A600;
  margin-top:30px;
  font-weight:700;
  line-height:22px;
  letter-spacing:1px;
  width:90%;
}
.content .text-intro h4{
  font-size:18px;
  color:#13235b;
  border-bottom:solid 2px #F7A600;
  margin-top:30px;
  font-weight:700;
  line-height:22px;
  letter-spacing:1px;
  width:50%;
}
.content .text-intro h5{
  font-size:18px;
  color:#13235b;
  font-weight:700;
  letter-spacing:1px;
}
.content .text-intro p{
  font-size:16px;
  color:#4b4a4d;
  line-height:1.3rem;
  letter-spacing:0.04rem;
}
.content .text-intro .img-solo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 2em;
  border: 1px solid #c6c6c6;
}
.content .text-intro img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    border: 1px solid #c6c6c6;
}

.content .text-contenant .colonnedroite {
    float: left!important;
    width: 45%!important;
    padding-left: 1rem;
    border: 1px solid #ECECEC;
}
.content .text-contenant .colonnegauche {
    float: left!important;
    width: 45%!important;
    padding-right: 1rem;
    border: 1px solid #ECECEC;
}

.content .text-contenant a {
  color:#F7A600;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid #dedede;
}
.content .text-contenant a:hover {
  color:#0C419A;
  text-decoration:none;
  font-weight:700;
}
.content .text-contenant ul li {
  font-size:16px;
  color:#4b4a4d;
  margin-top:10px;
  font-weight:400;
  letter-spacing:1px;
  width:100%;
}
.content .text-contenant li:before {
  content: "\0025A0";
  padding: 0 10px;
  color: #F7A600;
}
.content .text-contenant img {
  display: block;
  width: 75%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  border: 1px solid #c6c6c6;
  text-align: center;
}
@media (max-width: 768px) {
.content .text-contenant img {
  width: 100%;
}
}

/*.content .text-contenant ul li a {
  color:#4b4a4d;
  font-weight:700;
    text-decoration:underline;
}
.content .text-contenant ul li a:hover {
  color:#F7A600;
}
.content .text-contenant p{
  font-size:16px;
  margin-top:0px;
  color:#4b4a4d;
  font-weight:400;
  letter-spacing:1px;
}*/
/*.content .text-contenant p a {
  color:#F7A600;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid #dedede;
}
.content .text-contenant p a:hover {
  color:#0C419A;
  text-decoration:none;
  font-weight:700;
}*/
/*.content .text-contenant img {
  display: block;
  width: 50%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  border: 1px solid #c6c6c6;
  text-align: center;
}*/












        .typed-cursor{
            opacity: 1;
            font-weight: 900;
            -webkit-animation: blink 0.7s infinite;
            -moz-animation: blink 0.7s infinite;
            -ms-animation: blink 0.7s infinite;
            -o-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
        }
        @-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }

/*
**************************
HOME SIDEBAR
**************************
*/

.home-sidebar{
  top:0;
  position:absolute;
  width:33.3333%;
  right:0;
  height:100%;
  background:#f4f4f4;
  z-index:9;
  overflow:hidden;
  background-size:100%;
}

.parallax{
  position:absolute;
}

.parallax-option{
  position:absolute; width:100%; height:100%;
}

/*
**************************
PORTFOLIO GRID
**************************
*/

.prev-next{
  width:100%;
  max-width:1170px;
  margin:0 auto;
  padding-top:100px;
}

.prev-next a{
  color:#f27407;
  font-weight:600;
  padding-bottom: 10px;
  border-bottom:1px solid #434345;
}

.prev-next a:hover{
  color:#434345;
  border-bottom:1px solid #f6f6f6;
}

.prev-button{
  width:50%;
  position:relative;
  float:left;
  text-align:left;
}

.next-button{
  width:50%;
  position:relative;
  float:left;
  text-align:right;
}


#ajax-content{width:100%;}

.portfolio-grid{
  width:1170px;
  position:relative;
  margin: 30px auto;
  overflow:hidden;
}

#portfolio-sidebar{
  width: 780px !important;
  padding-right: 390px;

}


li.grid-item{
  width:360px;
  position:absolute;
  float:left;
  padding:15px;
}



.grid-item-figure{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 250px;
    border:1px solid #c8c8c8;
}

li.grid-item2{
  width:540px;
  position:relative;
  float:left;
  padding:15px;
    margin-bottom:0em;
}
li.grid-item2 img{
  width:540px;
}


.ht-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 250px!important;
}



/*li.grid-item img {
    border: 1px solid #eceded;
}*/
/* Spé actu GEIQ */
.blog-text2 {
  margin-bottom:40px;
  position: relative;
  float: left;
  width:100%;
      height: 260px!important;

  background: #fff;
  border: 1px solid rgbs(#000, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-text-padding {
	padding:30px;
}

.blog-text2 span {
  display: inline-block;
  margin-bottom: 20px;
  color:#3e3d40;
  font-size: 16px;
}
.blog-text2 h3 {
  font-size: 24px;
  font-weight:500;
  margin-bottom: 20px;
  line-height: 1.5;
  color:#F7A600;
}
.blog-text2 h3 a {
  color:#F7A600;
}
.blog-text2 p {
  font-size: 18px;
  margin-bottom:30px;
  color:#3e3d40;
  line-height: 1.5;
}
.blog-text2:hover {
  -webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  -ms-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  -o-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
}
.btn {
  height: 30px;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 5px;
}
.btn-primary {
  color: #333333;
  background-color: #F7A600;
  border-color: #F7A600;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
/* FIN -------  Spé actu GEIQ */

.grid-hover{
  position: absolute;
  width:360px;
  height: 270px;
  top:0;
  background: white;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in; 
}

.grid-hover:hover{
  opacity: 0.5;
}
.grid-item h1{
  font-size:20px;
  max-width:80%;
  bottom:30px;
  left:15px;
  position:absolute;
  text-transform:uppercase;
  color:#fff;
  font-weight:900;
  background-color:#3e3d40;
  padding: 5px;
}

.grid-hover h1{
  font-size:20px;
  max-width:80%;
  bottom:30px;
  left:15px;
  position:absolute;
  text-transform:uppercase;
  color:#fff;
  font-weight:900;
  background-color:#3e3d40;
  padding: 5px;
}

.grid-hover p{
  font-size:13px;
  bottom:20px;
  left:20px;
  position:absolute;
  color:#686868;
  letter-spacing:1px;
  font-weight:400;
}

li.grid-item img{
  width:360px;
}

/*
**************************
FOOTER
**************************
*/

#footer-box{height:150px; margin-top:75px;}

footer{
  background: #333333;
  width:100%;
  margin-top:50px;
  height:250px;
  overflow:hidden;
  position:relative;
  z-index:10;
}

.footer-margin{
  width:1140px;
  margin: 30px auto;
  line-height: 30px;
}

#footer-left{text-align:left;}

.footer-margin .copyright{
  color: #FFF;
  letter-spacing: 1px;
  font-size: 14px;
  width: 100%;
  text-align:center;
  float: left;
}
.footer-margin .copyright a {
  color: #FFF;
}
.footer-margin .copyright a:hover {
  color: #F7A600;
}


.footer-margin .social-footer{
  color: #FFF;
  letter-spacing: 1px;
  font-size: 14px;
  width: 100%;
  text-align:center;
  float: left;
}

.footer-margin .social-footer a{
  font-size:15px;
  color:#FFF;
  padding: 20px;
}

.footer-margin .social-footer a:hover{
  color:#f17831;
}


/*
**************************
CONTACT
**************************
*/

.contact-one, .contact-two{
  width:30%;
  padding-right:3%;
  position:relative;
  float:left;
}

.contact-three{
  width:33%;
  position:relative;
  float:left;
}

.contact-one p, .contact-two p, .contact-three p{
  width:100% !important;
}

input{

  width:100%;
  height:40px;
  background:#f1f1f1;
  border:0;
  color:#3e3d40;
  font-weight:500;
  line-height:40px;
  font-family: 'Raleway', sans-serif;
  margin-bottom:10px;
  font-size:14px;
  padding-left:15px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

input.button-submit{

  width:220px;
  height:40px;
  background:#F7A600;
  font-weight:500;
  border:0;
  font-family: 'Raleway', sans-serif;
  color:#1A1A1A;
  float:right;
  font-weight:900;
  line-height:40px;
  font-size:14px;
}

input:focus{
  background:#f1f1f1; 
}

textarea{

  width:100%;
  height:40px;
  border:0;
  line-height:40px;
  background:#f1f1f1;
  color:#3e3d40;
  font-size:14px;
  font-family: 'Raleway', sans-serif;
  font-weight:500;
  margin-bottom:10px;
  padding:0 0 0 15px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
    -webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in; 
}

textarea:focus{background:#f1f1f1; height:250px;}

/*
**************************
FH5CO
**************************
*/


#fh5co-main {
  clear: both;
}
#fh5co-portfolio {
  padding-left: 0em;
  padding-right: 0em;
  padding-top: 0em;
  padding-bottom: 0em;
  float: left;
  width: 100%;
}
.bleu {
	background-color:#0C419A;
	color:#FFF;
}
.jaune {
	background-color:#F7A600;
	color:#FFF;
}
.vert {
	background-color:#66B821;
	color:#FFF;
}
.rouge {
	background-color:#FF0000;
	color:#FFF;
}


#fh5co-portfolio img {
    max-width: 100% !important;
  }
@media screen and (max-width: 768px) {
  #fh5co-portfolio {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 1200px) {
  #fh5co-portfolio {
    padding-left: 0em;
    padding-right: 0em;
  }
}
#fh5co-portfolio .fh5co-portfolio-item {
  float: left;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #fh5co-portfolio .fh5co-portfolio-item {
    display: block;
  }
}



#fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-description,
#fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-figure {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-description,
  #fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-figure {
    display: block;
    width: 100%;
  }
}



#fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-figure {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #fh5co-portfolio .fh5co-portfolio-item .fh5co-portfolio-figure {
    height: 400px;
  }
}


.fh5co-portfolio-description .description-padding {
  padding: 5em;
}

@media screen and (max-width: 1200px) {
.fh5co-portfolio-description .description-padding {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
.fh5co-portfolio-description .description-padding {
    padding-top: 2em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 3em;
  }
}


.fh5co-portfolio-description p {
  font-size:18px;
  font-weight: 400;
  line-height:30px;
  margin-bottom:20px;
}
.fh5co-portfolio-description h1 {
  font-size:36px;
  text-transform:uppercase;
  font-weight:700;
  line-height:40px;
  margin-bottom:20px;
}


#fh5co-portfolio .fh5co-portfolio-item.fh5co-img-right .fh5co-portfolio-figure {
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #fh5co-portfolio .fh5co-portfolio-item.fh5co-img-right .fh5co-portfolio-figure {
    position: relative;
    top: auto;
    bototm: auto;
    height: 400px;
  }
}










.fh5co-arrow {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  display: block;
  color: #333333;
  font-size: 40px;
  z-index: 99;
  text-decoration: none;
  margin-top:20px;
}
.fh5co-arrow:hover {
  outline: none;
}

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-fill-mode: both;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}



.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #eceded;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > li a {
  color: #777777;
    font-weight: bold;
}
.breadcrumb > .active {
  color: #777777;
}


/*********************************************************************************/
/* Logo responcive                                                                   */
/*********************************************************************************/

.erb-image-wrapper{
    max-width:500px;
    height:auto;
    position: relative;
    display:block;
    margin:0 auto;
}
.erb-image-wrapper img{
    width:100% !important;
    height:100% !important;
    display:block;
}

.colonne {
    float:left;
    width: 50%;
}

.m-0 {
    margin: 0!important;
}




.img-item {
	margin-top: 80px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    height: 200px;
    width: 100%;
}
.evenement-caption {
  position: absolute;
  right: 10%;
  left: 10%;
  z-index: 10;
  color: #fff;
  text-align: center;
      font-size:36px;
  text-transform:uppercase;
  font-weight:700;
line-height: 200px;
}



.img-gradient-rouge {
  position:relative;
  display:inline-block;
}
.img-gradient-rouge:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: #ff0000;
  opacity: 0.6;
}
.img-gradient-rouge img{
  display:block;
}

.img-gradient-bleu {
  position:relative;
  display:inline-block;
}
.img-gradient-bleu:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: #0C419A;
  opacity: 0.6;
}
.img-gradient-bleu img{
  display:block;
}

.img-gradient-vert {
  position:relative;
  display:inline-block;
}
.img-gradient-vert:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: #66B821;
  opacity: 0.6;
}
.img-gradient-vert img{
  display:block;
}

.img-gradient-jaune {
  position:relative;
  display:inline-block;
}
.img-gradient-jaune:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: #F7A600;
  opacity: 0.6;
}
.img-gradient-jaune img{
  display:block;
}
