@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("font/Montserrat-ExtraBold.ttf");
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("font/Montserrat-Bold.ttf");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("font/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("font/Montserrat-Medium.ttf");
}

@font-face {
  font-family: "Raleway-Medium";
  src: url("font/Raleway-Medium.ttf");
}

.menu {
  /*border-bottom: 1px solid #ae8fe3;*/
  /*background-color: #c00a27;*/
  position: fixed;
  top: -1px;
  left: 0px;
  right: 0px;
  z-index: 999;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  transition: background-color .5s;
  padding: 0px 30px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.menu.fixe-menu {
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border: none;
}

.menu.fixe-menu .right li a {
  color: #c00a27 !important;
}

.menu.fixe-menu .right li a:after {
  border-color: #c00a27;
}

.menu .container {
  position: relative;
}

.menu .container:after {
  content: "";
  display: block;
  clear: both;
}

.menu .left {
  float: left;
  padding-top: 10px;
}

.menu .left img {
  width: auto;
  height: 90px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
}

.menu .left img.red {
  opacity: 0;
  transition: all .5s;
} 

.menu.fixe-menu .left img.red {
  opacity: 1;
} 

.menu .right {
  float: right;
  font-family: "Montserrat-ExtraBold";
}

.menu .right ul {
  margin: 0;
}

.menu .right ul li {
  position: relative;
  margin-right: 40px;
}

.menu .right ul li:last-child {
  margin-right: 0;
}

.menu .right ul li a {
  color: #FFF;
  font-size: 17px;
  line-height: 90px;
  position: relative;
}

.menu .right ul li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 0px;
  margin: auto;
  border-bottom: 2px solid #FFF;
  -webkit-transition: width .3s;
  -moz-transition: width .3s;
  transition: width .3s;
}

.menu .right ul li a:hover:after {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .menu {
    padding: 10px 15px;
    right: auto;
    width: 100%;
    border: none;
  }
  .menu .container {
    max-width: none !important;
  }
  .menu.fixe-menu {
    background-color: #FFF;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .menu.fixe-menu .left .right-menu {
    background-image: url(../image/menu.svg);
  }
  .menu .backgroundImage {
    background-image: url(../image/menu.svg) !important;
  }
  .menu .right li a {
    color: #c00a27 !important;
  }
  .menu .right li a:after {
    border-color: #c00a27;
  }
  .menu .left {
    float: none;
    position: relative;
    padding: 0;
    z-index: 5;
    min-height: 45px;
  }
  .menu .left:before {
    content: "";
    position: absolute;
    left: -30px;
    right: -30px;
    top: -15px;
    bottom: -15px;
    z-index: -1;
    background: #FFF;
    opacity: 0;
  }

  .menu:not(.fixe-menu).open .left img.red {
    opacity: 1;
  }
  
  .menu.open .left:before {
	opacity: 1;
  }
  /*.menu .left img {
    width: 45px;
    height: 45px;
  }*/
  .menu .left .right-menu {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 45px;
    background-image: url(../image/menuWhite.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .menu .right {
    float: none;
    position: relative;
    top: -1px;
    background: none;
    background-color: transparent;
  }
  .menu .right ul {
    position: absolute;
    right: -moz-calc(100vw - 30px);
    right: calc(100vw - 30px);
    width: 100vw;
    left: auto;
    opacity: 0;
    height: 100vh;
    background-color: #FFF;
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    top: 15px;
  }
  .menu .right ul:before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    top: 0;
    height: 100vh;
    z-index: -1;
  }
  .menu .right ul.active {
    right: -30px;
    opacity: 1;
  }
  .menu .right ul li {
    display: block;
    margin: 0;
    margin-right: 0;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
  }
  .menu .right ul li:first-child {
    margin-top: 30px;
  }
  .menu .right ul li a {
    left: 0px;
    padding: 0 15px;
    line-height: 20px;
  }
  .menu .right ul li a:after {
    border-color: #c00a27;
  }
}


@media screen and (max-height: 425px) {
  .menu .right ul.active {
    overflow-y: scroll;
  }
}

.header {
  position: relative;
}

.header .content {
  position: relative;
  min-height: 100vh;
  min-height: -moz-calc(100vh + 115px);
  min-height: calc(100vh + 115px);
  background-color: #c00a27;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  padding: 30px;
  z-index: 0;
}

.header .content:before {
  display: block !important;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/Superesto-Ballon.png");
  background-repeat: no-repeat;
  background-size: 35% auto;
  background-position: right center;
  max-width: 1140px;
  margin: auto;
  z-index: -1;
}

.header .inner-container {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .inner-container .titre {
  margin: 0;
  font-family: "Montserrat-Bold";
  font-size: 50px;
  line-height: 65px;
  color: #FFF;
}

.header .inner-container .desc {
  color: #FFF;
  text-align: center;
  margin: 10px auto 0;
  max-width: 700px;
}

.header .inner-container .buttons {
  text-align: center;
  text-transform: uppercase;
}

.header .inner-container .buttons .first, .header .inner-container .buttons .last {
  display: inline-block;
  padding: 0 35px;
  border: 2px solid #FFF;
  border-radius: 45px;
  color: #FFF;
  height: 50px;
  line-height: 45px;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -moz-transition: transform .4s, -moz-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s, -moz-transform .4s;
}

.header .inner-container .buttons .first:hover, .header .inner-container .buttons .last:hover {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.header .inner-container .buttons .first {
  margin-right: 20px;
  background-color: #FFF;
  color: #5a4cc6;
}

.header .mouse {
  position: absolute;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
  width: 3px;
  padding: 5px 11px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}

.header .mouse:hover {
  opacity: 1;
}

.header .mouse .scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  -webkit-animation-name: scroll;
     -moz-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 2.2s;
     -moz-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
     -moz-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.header .triangle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(10);
            transform: translateY(10);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
    opacity: 0;
  }
}

@-moz-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -moz-transform: translateY(10);
         transform: translateY(10);
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(25px);
         transform: translateY(25px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(10);
       -moz-transform: translateY(10);
            transform: translateY(10);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(25px);
       -moz-transform: translateY(25px);
            transform: translateY(25px);
    opacity: 0;
  }
}

@media screen and (max-width: 991px) {
  .header {
    min-height: auto;
    height: auto;
  }
  .header .inner-container {
    position: relative;
    padding: 150px 0;
    left: auto;
    right: auto;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .header .inner-container .titre {
    font-size: 70px;
    line-height: 70px;
  }
  .header .inner-container .desc {
    padding: 0 30px;
  }
  .header .mouse {
    bottom: 50px;
  }
}

@media screen and (max-width: 500px) {
  .header {
    padding: 0;
    background-position: center;
  }
  .header .inner-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header .inner-container .titre {
    font-size: 50px;
    line-height: 50px;
  }
  .header .inner-container .desc {
    padding: 0;
  }
  .header .inner-container .buttons .first {
    margin-bottom: 25px;
    margin-right: 0;
  }
  .header .triangle {
    bottom: -1px;
  }
}

.approche {
  position: relative;
}

.approche .inner-container {
  position: relative;
  padding: 80px 15px;
  padding-bottom: 195px;
}

.approche .left {
  padding-right: 30px;
  top: 80px;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 1199px){
  .approche .left {
    padding-right: 15px;
  }
}

.approche .left.active {
  top: 0;
  opacity: 1;
}

.approche .left .desc {
  color: #999999;
  /*padding-bottom: 16px;*/
}

.approche .right {
  position: relative;
  padding-left: 30px;
  top: 80px;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
}

@media screen and (max-width: 1199px){
  .approche .right {
    padding-left: 15px;
  }
}

.approche .right.active {
  top: 0;
  opacity: 1;
}

.approche .right.active .titre- .titre:after {
  width: 44px;
}

.approche .right .titre- {
  width: 30px;
  overflow: hidden;
}

.approche .right .titre- .titre {
  position: absolute;
  top: 0px;
  left: 40px;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  font-size: 20px;
  line-height: 30px;
  color: #c00a27;
  text-transform: uppercase;
  margin: 0;
  margin-top: 45px;
}

.approche .right .titre- .titre:after {
  content: "";
  position: absolute;
  top: 15px;
  left: -60px;
  width: 0px;
  height: 2px;
  background-color: #c00a27;
  margin-right: 16px;
  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  transition: width 1s;
}

.approche .right .blog-img {
  position: relative;
  height: 100%;
  margin-left: 30px;
}

.approche .right .blog-img .img {
  width: 33.33333%;
  height: 33.33333%;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 4px;
  padding-bottom: 4px;
}

.approche .right .blog-img .img:nth-child(2) {
  left: 33.33333%;
}

.approche .right .blog-img .img:nth-child(3) {
  left: 66.66667%;
  height: 66.66667%;
}

.approche .right .blog-img .img:nth-child(4) {
  top: 33.33333%;
  height: 33.33333%;
  width: 66.66667%;
}

.approche .right .blog-img .img:nth-child(5) {
  top: auto;
  bottom: 0;
  left: 0;
}

.approche .right .blog-img .img:nth-child(6) {
  top: auto;
  bottom: 0;
  left: 33.33333%;
}

.approche .right .blog-img .img:nth-child(7) {
  top: auto;
  bottom: 0;
  left: 66.66667%;
}

.approche .right .blog-img .img .background {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.approche .right .blog-img .img .background .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  margin: auto;
  color: #FFF;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  padding: 0 5px;
  -webkit-transition: bottom .5s;
  -moz-transition: bottom .5s;
  transition: bottom .5s;
}

.approche .triangle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1999px) {
  .approche .right .blog-img {
    padding: 300px 0;
  }
}

@media screen and (max-width: 991px) {
  .approche .left {
    padding-bottom: 30px;
  }
  .approche .right .titre- .titre {
    left: 15px;
  }
  .approche .right .blog-img {
    padding: 350px 0;
    margin-left: 5px;
  }
}

@media screen and (max-width: 760px) {
  .approche .right .blog-img .img {
    width: 50%;
    height: 20%;
    position: absolute;
    left: 0;
    top: 0;
    padding-right: 4px;
    padding-bottom: 4px;
  }
  .approche .right .blog-img .img:nth-child(2) {
    top: 20%;
    left: 0;
  }
  .approche .right .blog-img .img:nth-child(3) {
    left: 50%;
    height: 40%;
  }
  .approche .right .blog-img .img:nth-child(4) {
    top: 40%;
    height: 20%;
    width: 100%;
  }
  .approche .right .blog-img .img:nth-child(5) {
    top: 60%;
    left: 0;
    height: 40%;
  }
  .approche .right .blog-img .img:nth-child(6) {
    top: 60%;
    left: 50%;
  }
  .approche .right .blog-img .img:nth-child(7) {
    top: 80%;
    left: 50%;
  }
}

@media screen and (max-width: 500px) {
  .approche .inner-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 80px;
	overflow: hidden;
  }
  
  .approche .left {
	padding-right: 15px;
    padding-left: 15px;
  }
  .approche .right .titre- .titre {
    font-size: 16px;
    line-height: 16px;
    left: 20px;
  }
  .approche .right .titre- .titre:after {
    top: 7px;
  }
  .approche .triangle {
    bottom: -1px;
  }
}

.services {
  position: relative;
  padding: 80px 0;
  padding-bottom: 160px;
  background-color: #f0f0f0;
}

.services.marketing {
  background-color: #ffffff;
}

.services .inner-container {
  position: relative;
  top: 80px;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.services .inner-container.active {
  top: 0;
  opacity: 1;
}

.services .inner-container.active .titre:after {
  height: 44px;
}

.services .titre {
  width: 100%;
  height: 100px;
  margin: 0;
  text-align: center;
  position: relative;
}

.services .titre:after {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  margin: auto;
  height: 0px;
  width: 2px;
  background: #c00a27;
  -webkit-transition: height 1s;
  -moz-transition: height 1s;
  transition: height 1s;
}

.services .service {
  padding: 30px 10px;
  position: relative;
  padding-bottom: 80px;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  top: 80px;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.services .service .service-inner .devis {
	position: absolute;
    bottom: 0;
    padding: 20px;
    left: 0;
    right: 0;
}

.services .service .service-inner .devis:before {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
  border-top: 1px dashed #888;
  opacity: .3;
}

.services .service.no-hover:nth-child(even) .devis:before {
	border-top: 1px dashed #fff;
}

.services .service.has-botton {
  padding-bottom: 0;
}

.services .service.active {
  top: 0;
  opacity: 1;
}

.services .service:hover {
  -webkit-box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.services .service .icon {
  width: 58px;
  height: 62px;
  margin: 30px auto;
}

.services .service .titre-services {
  font-size: 20px;
  line-height: 25px;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #c00a27;
}

.services .service .desc {
  font-size: 15px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 6px;
  margin-top: 30px;
  padding: 0 15px;
}

.services .service .more {
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0px;
  margin: auto;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: border-color .4s;
  -moz-transition: border-color .4s;
  transition: border-color .4s;
  border-radius: 40px;
  border: 2px solid transparent;
  background: #c00a27;
}

.services .service .more:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a77d4;
  background: -moz-linear-gradient(45deg, #413dc4, #3a77d4);
  background: linear-gradient(45deg, #413dc4, #3a77d4);
  border-radius: 40px;
  z-index: -1;
  -webkit-transition: opacity .4s;
  -moz-transition: opacity .4s;
  transition: opacity .4s;
  opacity: 0;
}

.services .service .more a {
  color: #FFF;
  font-size: 13px;
  line-height: 20px;
  -webkit-transition: color .4s;
  -moz-transition: color .4s;
  transition: color .4s;
}

.services .service .more:hover {
  /*border-color: #c00a27;*/
  background: #90071d;
}

.services .service .more:hover:before {
  opacity: 0;
}

/*.services .service .more:hover a {
  color: #c00a27;
}*/

.services .triangle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  background-color: #FFF;
}

@media screen and (max-width: 500px) {
  .services .triangle {
    bottom: -1px;
  }
}

.produits {
  position: relative;
  padding: 80px 0;
}

.produits .inner-container {
  position: relative;
  top: 50px;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.produits .inner-container.active {
  top: 0;
  opacity: 1;
}

.produits .inner-container.active .titel:after {
  height: 44px;
}

.produits .titel {
  width: 100%;
  height: 100px;
  margin: 0;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.produits .titel:after {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  margin: auto;
  height: 0px;
  width: 2px;
  background: #c00a27;
  -webkit-transition: height 1s;
  -moz-transition: height 1s;
  transition: height 1s;
}

.produits .produit .left {
  position: relative;
  min-height: 300px;
  height: 100%;
  overflow: hidden;
}

.produits .produit .left .titre {
  position: absolute;
  max-width: 200px;
  right: -50px;
  text-align: right;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.produits .produit .left .titre.active {
  right: 30px;
  opacity: 1;
}

.produits .produit .left .img {
  position: absolute;
  left: -50px;
  right: 50%;
  width: 100%;
  top: 0;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.produits .produit .left .img.active {
  opacity: 1;
  left: 0;
}

.produits .produit .right {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.produits .produit:nth-of-type(2n) {
  padding-top: 50px;
}

.produits .produit:nth-of-type(2n) .left {
  text-align: right;
}

.produits .produit:nth-of-type(2n) .left .titre {
  left: -50px;
  right: auto;
  -webkit-transition: left 1s,opacity 1s;
  -moz-transition: left 1s,opacity 1s;
  transition: left 1s,opacity 1s;
  text-align: left;
}

.produits .produit:nth-of-type(2n) .left .titre.active {
  left: 30px;
}

.produits .produit:nth-of-type(2n) .left .img {
  right: -50px;
  left: auto;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.produits .produit:nth-of-type(2n) .left .img.active {
  right: 0;
}

.produits .produit:nth-of-type(2n) .right {
  text-align: right;
}

@media screen and (max-width: 991px) {
  .produits .produit .left .titre.active {
    right: 0;
  }
  .produits .produit .left .img {
    background-position: left;
  }
  .produits .produit:nth-of-type(2n) .left .titre.active {
    left: 0;
  }
  .produits .produit:nth-of-type(2n) .left .img {
    background-position: right;
  }
}

@media screen and (max-width: 769px) {
  .produits .inner-container .produit .left .titre {
    right: 30px;
  }
  .produits .inner-container .produit .left .img {
    background-position: center;
  }
  .produits .inner-container .produit .right {
    padding-top: 30px;
  }
  .produits .inner-container .produit:nth-of-type(2n) .left .titre {
    left: 30px;
  }
  .produits .inner-container .produit:nth-of-type(2n) .left .img {
    background-position: center;
  }
}

@media screen and (max-width: 500px) {
  .produits .inner-container .titel:after {
    top: 64px;
  }
  .produits .inner-container .produit .left .titre {
    right: 15px;
  }
  .produits .inner-container .produit .left .img {
    background-position: left;
    -webkit-transform: scale(0.8);
       -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .produits .inner-container .produit .right {
    text-align: left;
  }
  .produits .inner-container .produit:nth-of-type(2n) .left .titre {
    left: 15px;
    text-align: left;
  }
  .produits .inner-container .produit:nth-of-type(2n) .left .img {
    background-position: right;
    -webkit-transform: scale(0.8);
       -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.contact {
  background: #1f2123;
  position: relative;
}

.contact .triangle {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 2;
}

.contact .maps {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.contact .maps #map {
  position: absolute;
  top: -40px;
  left: 0;
  right: -40px;
  background: #efefef;
  overflow: hidden;
  bottom: -25px;
}

.contact .inner-container {
  padding: 80px 0;
  padding-bottom: 0;
}

.contact .inner-container .titre {
  color: #FFF;
  text-align: center;
}

.contact .inner-container .left {
  padding-right: 30px;
}

.contact .inner-container .group {
  width: 100%;
  overflow-y: hidden;
  position: relative;
  margin-bottom: 30px;
}

.contact .inner-container .group:last-child {
  margin-bottom: 0;
}

.contact .inner-container .group label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #919599;
  font-family: "Montserrat-SemiBold";
  font-size: 16px;
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  cursor: text;
  -webkit-transition: .25s ease;
  -moz-transition: .25s ease;
  transition: .25s ease;
}

.contact .inner-container .group label.valid {
  top: 0px;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  color: #919599;
}

.contact .inner-container .group input, 
.contact .inner-container .group select, 
.contact .inner-container .group textarea {
  display: block;
  width: 100%;
  padding-top: 0;
  border: none;
  border-radius: 0;
  color: #FFF;
  background: transparent;
  font-family: "Montserrat-SemiBold";
  font-size: 16px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  padding: 15px 0px;
  margin-top: 10px;
  outline: none;
}

.contact .inner-container .group input:focus, .contact .inner-container .group textarea:focus {
  outline: none;
}

.contact .inner-container .group input:focus ~ label, .contact .inner-container .group textarea:focus ~ label {
  top: 0px;
  color: #919599;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.contact .inner-container .group input:focus ~ .bar:before, .contact .inner-container .group textarea:focus ~ .bar:before {
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.contact .inner-container .group input::-moz-selection, 
.contact .inner-container .group select::-moz-selection, 
.contact .inner-container .group textarea::-moz-selection {
  background: rgba(33, 150, 243, 0.3);
}

.contact .inner-container .group input::selection,
.contact .inner-container .group select::selection,
 .contact .inner-container .group textarea::selection {
  background: rgba(33, 150, 243, 0.3);
}

.contact .inner-container .group .bar {
  background: #999999;
  content: '';
  width: 100%;
  height: 1px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  position: relative;
}

.contact .inner-container .group .bar:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #3a77d4;
  background: -moz-linear-gradient(45deg, #413dc4, #3a77d4);
  background: linear-gradient(45deg, #413dc4, #3a77d4);
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  background: #ffffff;
  opacity: .8;
}

.contact .inner-container .group .oblig {
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 2;
  color: #c00a27;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat-SemiBold";
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}

.contact .inner-container .group .oblig.active {
  opacity: 0;
}

.contact .inner-container .right {
  padding-left: 30px;
  position: relative;
}

.contact .inner-container .right .group {
  /*position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;*/
}

.contact .inner-container .right .group:last-of-type  {
	height: 100%;
	max-height: 100%;
    max-height: calc(100% - 112px);
}

.contact .inner-container .right .group label {
  top: 20px;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.contact .inner-container .right .group label.valid {
  top: 0px;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  color: #999999;
}

.contact .inner-container .right .group .bar {
  position: absolute;
  bottom: 0;
  left: 0;
}

.contact .inner-container .button {
  position: relative;
  font-family: "Montserrat-ExtraBold";
  font-size: 15px;
  line-height: 45px;
  text-transform: uppercase;
  background: none;
  margin: 50px auto;
  margin-top: 80px;
  display: table;
  padding: 0 35px;
  /*border: 2px solid transparent;*/
  border-radius: 45px;
  color: #FFF;
  height: 50px;
  cursor: pointer;
  z-index: 1;
  outline: none;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  background: #c00a27;
  border: none;
}

.contact .inner-container .button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3a77d4;
  background: -moz-linear-gradient(45deg, #413dc4, #3a77d4);
  background: linear-gradient(45deg, #413dc4, #3a77d4);
  border-radius: 45px;
  z-index: -1;
  -webkit-transition: opacity .4s;
  -moz-transition: opacity .4s;
  transition: opacity .4s;
  opacity: 0;
}

.contact .inner-container .button:hover {
  background: #ffffff;
  color: #c00a27;
}

.contact .inner-container .button:hover:before {
  opacity: 0;
}

.contact .inner-container .button .loading {
  width: 40px;
  background-image: url("../image/loading.svg");
  height: 40px;
  position: absolute;
  top: 2px;
  right: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  transition: opacity 1s;
}

.contact .inner-container .error {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  top: 20px;
  font-family: "Montserrat-Bold";
  font-size: 15px;
  line-height: 45px;
  color: #FFF;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}

.contact .inner-container .error.active {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .contact .inner-container .left {
    padding-right: 15px;
  }
  .contact .inner-container .right {
    min-height: 200px;
    padding-left: 15px;
    margin-top: 30px;
  }
  .contact .inner-container .right .group {
    width: auto;
  }
  .contact .triangle {
    top: -1px;
  }
}

.footers {
  background-color: #1f2123;
  padding: 80px 0;
  padding-bottom: 10px;
}

.footers .footer {
  font-family: "Montserrat-Medium";
  font-size: 25px;
  text-align: center;
  text-transform: uppercase;
}

.footers .footer.tel {
  font-family: "Montserrat-Bold";
  font-size: 35px;
  line-height: 45px;
  color: #FFF;
  padding-bottom: 50px;
  border-bottom: 1px solid #77777e;
}

.footers .footer.copyright, .footers .footer.copyright a{
  color: #FFF;
  font-family: "Montserrat-SemiBold";
  padding-top: 10px;
  font-size: 17px;
}

*, *:before, *:after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  margin: 0;
}

ul li {
  list-style: none;
  display: inline-block;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover, a:focus {
  text-decoration: none !important;
}

img {
  width: 100%;
}

a {
  font-family: "Montserrat-ExtraBold";
  font-size: 17px;
}

a:focus {
  outline: none;
}

p {
  font-family: "Raleway-Medium";
  font-size: 17px;
  line-height: 26px;
  color: #999999;
}

.row {
  margin: 0;
}

.titre {
  font-family: "Montserrat-Bold";
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 50px;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.5);
}

::selection {
  background-color: rgba(0, 0, 0, 0.5);
}

.error-404 {
  padding-top: 80px;
  height: 100vh;
  position: relative;
  background-color: #c00a27;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: border-box;
  background-position: center;
}

.error-404 .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
	text-align: center;
	min-width: 300px;
	-webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.error-404 .page-title .title {
	font-family: "Montserrat-Bold";
	font-size: 20vw;
    line-height: 20vw;
	text-transform: uppercase;
    margin: 0;
	color: #FFF;
}

.error-404 .page-title .desc {
	font-family: "Raleway-Medium";
	font-size: 20px;
    line-height: 20px;
    text-transform: none;
    margin: 0;
	color: #FFF;
	margin-bottom: 30px;
}

.error-404 .page-title .accueil {
	display: inline-block;
    padding: 0 35px;
    border: 2px solid #FFF;
    border-radius: 45px;
    color: #FFF;
    padding: 10px 25px;
    line-height: 20px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -moz-transition: transform .4s, -moz-transform .4s;
    transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s, -moz-transform .4s;
}

.error-404 .page-title .accueil:hover{
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

p.center {
  text-align: center; 
}

.approche .center {
  margin-bottom: 30px;
  margin: 0 auto 70px;
  color: #000;
}

.details .detail {
  display: none;
  padding: 70px 15px;
  background: rgba(#919599,.1);
  background: rgba(145, 149, 153, .05)
}

.details .detail .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #919599;
  cursor: pointer;
  background-image: url(../image/btn-fermer.svg);
  background-position: center center;
  background-size: 10px auto;
  background-repeat: no-repeat;
}

.marketing .sous-title {
	max-width: 85%;
	margin: auto;
	text-align: center;
}


/*.realisation .item {
	max-width: 85%;
	margin: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 25px;
	min-height: 500px;
	position: relative;
	z-index: 0;
}

.realisation .item .content {
	position: absolute;
	top: 50%;
	left: 30px;
	right: 30px;
	margin: auto;
	-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
	padding: 30px;
}

.realisation .item h3 {
	text-align: center;
	text-transform: uppercase;
}

.realisation .item p, .realisation .item h3 {
	color: #fff;
}

.realisation .item:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(192, 10, 39, .8);
	z-index: -1;
	transform: scale(.5);
	opacity: 0;
	visibility: hidden;
	transition: all .5s .2s;
}

.realisation .item:hover:before {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	transition: all .5s;
}


.realisation .item:hover .content {
	opacity: 1;
	visibility: visible;
	transition: all .5s .2s;
}*/

.realisation .owl-carousel .owl-nav button.owl-next, 
.realisation .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	outline: none;
	border: none;
}

.realisation .owl-carousel .owl-nav button.owl-prev {
	left: 0;
	-webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.realisation .owl-carousel .owl-nav button.owl-next {
	right: 0;
}