/*
Import less files
*/
/* bootstrap conf -> http://getbootstrap.com/customize/?id=f7167e40c15352988beb */
@import "bootstrap.min.css";
@import "bootstrap-theme.min.css";
@import "lightbox.css";
@import "jquery-ui-1.10.4.custom.min.css";
@import "font-awesome.min.css";
/*
Define theme variables
*/
/************************ GENERAL *************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/************************** CLEARFIX ***************************/
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
* {
  outline: none;
}
/************************** FONT AWESOME ***************************/
/*
Usefull less functions
*/
.btn-hover-white {
  background: white;
  border: 1px solid #4381C1;
  position: relative;
  overflow: hidden;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 4;
}
.btn-hover-white:before {
  background: #4381C1;
  transform: translate(0, -100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-hover-white:hover:before {
  background: #4381C1;
  color: white;
  transform: translate(0, 0);
}
.btn-hover-white:hover {
  color: white;
}
.btn-hover-blue {
  background: #4381C1;
  border: 1px solid #4381C1;
  position: relative;
  color: white;
  overflow: hidden;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 4;
}
.btn-hover-blue:before {
  background: white;
  transform: translate(0, -100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-hover-blue:hover:before {
  background: white;
  color: #4381C1;
  transform: translate(0, 0);
}
.btn-hover-blue:hover {
  color: #4381C1;
}
/*.transition(@arg) {
    -webkit-transition: all @arg ease-in-out;
    -moz-transition: all @arg ease-in-out;
    -ms-transition: all @arg ease-in-out;
    -o-transition: all @arg ease-in-out;
    transition: all @arg ease-in-out;
}*/
.sinkin_xlight {
  font-family: 'Sinkin', sans-serif;
  font-weight: 200;
  font-style: normal;
}
.sinkin_light {
  font-family: 'Sinkin', sans-serif;
  font-weight: 300;
  font-style: normal;
}
.sinkin_regular {
  font-family: 'Sinkin', sans-serif;
}
.sinkin_medium {
  font-family: 'Sinkin', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.sinkin_semibold {
  font-family: 'Sinkin', sans-serif;
  font-weight: 600;
  font-style: normal;
}
.sinkin_bold {
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.new-btn-border--bot {
  position: relative;
  min-width: 115px;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  color: #2e81c4;
  background-color: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
}
.new-btn-border--bot:after {
  content: '';
  height: 1px;
  background-color: #2e81c4;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: height 0.2s ease;
}
.new-btn-border--bot:hover,
.new-btn-border--bot:focus {
  color: #2e81c4;
  text-decoration: none;
}
.new-btn-border--bot:hover:after,
.new-btn-border--bot:focus:after {
  height: 3px;
  bottom: 0;
  left: 0;
  transition: height 0.2s ease;
}
.new-btn--big {
  width: 100%;
}
.new-btn--medium {
  min-width: 230px !important;
}
@media (max-width: 768px) {
  .new-btn--medium {
    width: 100% !important;
  }
}
.new-btn-blue {
  min-width: 170px;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  background-color: #2e81c4;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
}
.new-btn-blue:hover,
.new-btn-blue:focus {
  transition: all 0.2s ease;
  color: #ffffff;
  background-color: #333333;
  text-decoration: none;
}
.new-btn-ghost {
  min-width: 170px;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #ffffff;
}
.new-btn-ghost:hover,
.new-btn-ghost:focus {
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px #ffffff;
}
.new-btn-ghost--dark {
  min-width: 170px;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  color: #333333;
  background-color: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #333333;
}
.new-btn-ghost--dark:hover,
.new-btn-ghost--dark:focus {
  transition: all 0.2s ease;
  color: #333333;
  box-shadow: inset 0 0 0 2px #333333;
}
.color-blue {
  color: #0bbbef;
}
.color-black {
  color: #333333;
}
.color-white {
  color: #ffffff;
}
.color-grey {
  color: rgba(51, 51, 51, 0.5);
}
.bg-blue {
  background-color: #0bbbef;
}
.bg-black {
  background-color: #333333;
}
.bg-darkgrey {
  background-color: #435362;
}
.bg-white {
  background-color: #ffffff;
}
.bg-grey {
  background-color: #d0d5d4;
}
.bg-gradient {
  background-image: linear-gradient(270deg, #88cdd3 0%, #0bbbef 100%);
}
.home-content {
  padding: 40px 20px;
  transition: padding 0.2s ease;
}
@media (min-width: 768px) {
  .home-content {
    padding: 70px 0 70px 0;
  }
}
.single.single-post h1 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
h1,
.h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333333;
  transition: padding 0.2s ease;
}
@media (max-width: 596px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}
h1 a,
.h1 a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
h1 a:hover,
.h1 a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
h2,
.h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 200;
  color: #333333;
  transition: padding 0.2s ease;
}
@media (max-width: 596px) {
  h2,
  .h2 {
    font-size: 26px;
  }
}
h2 a,
.h2 a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
h2 a:hover,
.h2 a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #333333;
  transition: padding 0.2s ease;
}
@media (max-width: 596px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}
h3 a,
.h3 a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
h3 a:hover,
.h3 a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
h4,
.h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #333333;
  transition: padding 0.2s ease;
}
@media (max-width: 596px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}
h4 a,
.h4 a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
h4 a:hover,
.h4 a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 200;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-200XLight.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 200;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-200XLightItalic.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 300;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-300Light.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 300;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-300LightItalic.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 400;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-400Regular.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 400;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-400Italic.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 500;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-500Medium.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 500;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-500MediumItalic.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 600;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-600SemiBold.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 600;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-600SemiBoldItali.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 700;
  font-style: normal;
  src: url('fonts/sinkin/SinkinSans-700Bold.otf');
}
@font-face {
  font-family: 'Sinkin';
  font-weight: 700;
  font-style: italic;
  src: url('fonts/sinkin/SinkinSans-700BoldItalic.otf');
}
@media (min-width: 1200px) {
  /*
    body {
        background-image:url(../images/step-wl/bg.gif);
    }*/
  .span45 {
    width: 420px;
  }
  .header-top--infos {
    margin-left: 0;
  }
  #header-top,
  #site-footer {
    /*#contact-nav {
            float: left;
            width: 100%;
            margin-top: 20px;
            background: #4481c2;
            text-align: center;

           a {
                width: 50%;
                float: left;
                text-align: center;
           }

           a.devis {
                border-left: 1px solid white;
           }

           a.acces {
                background: #4481c2;
                color: white;
                padding: 10px 20px;
            }
        }*/
  }
  #header-top .telephone,
  #site-footer .telephone {
    margin: 47px 0 0 55px;
  }
  #header-top .telephone a,
  #site-footer .telephone a {
    font-family: 'Sinkin', sans-serif;
    font-size: 20px;
    color: #4481c2;
    text-transform: uppercase;
  }
  #header-top .telephone a i,
  #site-footer .telephone a i {
    position: relative;
    margin-left: 32px;
  }
  body.header-fixed-1 #header-top #toggle-navigation {
    top: 3px;
  }
  body.header-fixed-1 #header-top .telephone {
    margin: 5px 0 0 55px !important;
  }
  /*#header-bottom {
        position: relative;
    }*/
  /* MENU */
  #main-menu .menu > li.offre-parent .sub-menu .offre-1 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-2 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-3 a {
    min-height: 110px;
  }
  /* RECHERCHE */
  #recherche:hover #s,
  #recherche #s:focus {
    width: 180px;
  }
  /* PAGE */
  /* PAGE ACCUEIL */
  #home-starht-1 .titre {
    margin: 150px 610px 14px 30px;
  }
  #home-starht-1 .texte {
    margin: 10px 630px 18px 30px;
  }
  #home-starht-1 a {
    margin-left: 30px;
  }
  #home-starht-2 .texte {
    margin: 0 350px 0 160px;
  }
  #home-offres {
    background-size: 1px 398px;
  }
  #home-offres .container {
    background-position: center 398px;
  }
  #home-offres #liste-offres {
    background-size: 1170px auto;
  }
  #home-offres #liste-offres .offre-home .content {
    background-size: 1170px auto;
    min-height: 260px;
  }
  #home-offres #liste-offres .offre-home .exclu {
    right: 30px;
  }
  #home-offres #liste-offres .offre-home .desc {
    padding: 0 30px;
  }
  #home-offres #liste-offres .offre-home .page-menu a {
    padding: 10px 30px;
  }
  /* PAGE */
  /* GALERIE MÉDIAS */
  #media-gallery #gallery-footer.scroll #gallery-menu-cont {
    width: 790px;
  }
  /* RIGHT COL */
  #right-col .bloc-droite .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  #right-col .bloc-droite .content hr {
    margin-left: 30px;
    margin-right: 30px;
  }
  /* FORMULAIRE */
  .entry .wpcf7 .wpcf7-response-output {
    bottom: 35px;
    width: 560px;
  }
}
/* PAGE-OFFRE */
@media (min-width: 992px) and (max-width: 1200px) {
  body.page-template-page-offre #main .offre .tab .prix p {
    font-size: 20px;
  }
  #contact-nav {
    float: left;
    width: 100%;
    margin-top: 45px;
    background: #4481c2;
    text-align: center !important;
  }
  #contact-nav a {
    width: 50%;
    float: left;
    text-align: center !important;
    padding: 10px 20px !important;
  }
  #contact-nav a.devis {
    border-left: 1px solid white;
  }
  #contact-nav a.acces {
    background: #4481c2;
    color: white;
    padding: 10px 20px;
  }
  #toggle-navigation {
    right: 30px;
    position: absolute;
    top: 40px;
    font-size: 24px;
    color: #4381C1;
  }
  #toggle-navigation i {
    position: relative;
    left: 15px;
  }
  #header-top .telephone,
  #site-footer .telephone {
    display: block;
    position: absolute;
    margin: 0;
    top: 39px;
    left: 325px;
  }
  body.header-fixed-1 #header-top .telephone {
    top: 0px;
    left: 445px;
  }
  body.header-fixed-1 #header-top #toggle-navigation {
    top: 5px;
  }
}
/*================================
    Layout CSS
================================*/
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-family: 'Sinkin', sans-serif;
}
body .ui-header,
body .ui-footer {
  border: none;
}
strong {
  font-weight: bold;
}
/* demi-colonne */
.col-md-45 {
  width: 340px;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.home-offers ul,
#page-content ul {
  padding-left: 40px;
}
.home-offers ul li,
#page-content ul li {
  font-size: 14px;
  line-height: 32px;
}
.home-offers ul > li,
#page-content ul > li {
  padding: 0 0 0 20px;
  display: block;
  position: relative;
}
.home-offers ul > li:before,
#page-content ul > li:before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  color: #0bbbef;
  width: 4px;
  height: 4px;
  border-radius: 100%;
}
.home-offers ul > li ul,
#page-content ul > li ul {
  padding-left: 12px;
}
.home-offers ul > li ul li,
#page-content ul > li ul li {
  padding-left: 12px;
  position: relative;
}
.home-offers ul > li ul li:before,
#page-content ul > li ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  color: #0bbbef;
  width: 4px;
  height: 4px;
  border-radius: 100%;
}
a:hover {
  text-decoration: none;
}
hr {
  margin: 12px 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #ccc;
}
/* SURCHARGE JQUERY MOBILE */
.ui-content,
.ui-panel-inner {
  padding: 0 !important;
}
.ui-panel-open + #site-header {
  transition: transform 300ms ease;
  transform: translate3d(-20em, 0, 0);
}
.flex {
  display: flex;
}
.flex-end {
  align-items: center;
  justify-content: flex-end;
}
#categories-filter {
  margin-bottom: 20px;
}
/* HEADER */
#site-header {
  transition: transform 300ms ease;
  background: white;
  width: 100%;
  z-index: 9999;
  position: fixed;
}
#site-header #logo img {
  max-width: 100%;
  height: auto;
}
.header-top--infos {
  background-color: #0bbbef;
  color: #fff;
}
.header-top--infos-item a {
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: transparent;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.header-top--infos-item a img {
  display: inline-block;
  margin-left: 10px;
}
.header-top--infos-item a.acces,
.header-top--infos-item a.contact {
  font-size: 12px;
}
.header-top--infos-item a.acces:hover,
.header-top--infos-item a.contact:hover,
.header-top--infos-item a.acces:focus,
.header-top--infos-item a.contact:focus {
  background-color: #435362;
}
@media (max-width: 596px) {
  .header-top--infos-item a {
    padding: 14px 20px;
  }
}
@media (max-width: 596px) {
  .header-top--infos-item.tel {
    margin-bottom: 0 !important;
  }
  .header-top--infos-item.tel a {
    padding-bottom: 0;
  }
}
#header-top,
#site-footer {
  position: relative;
  background: #fff;
  margin: 0 auto;
  width: 100%;
}
#header-top .container,
#site-footer .container {
  position: relative;
}
#header-top #contact-nav,
#site-footer #contact-nav {
  float: right;
}
#header-top #contact-nav .bande-bleue,
#site-footer #contact-nav .bande-bleue {
  background: none repeat scroll 0 0 #4481c2;
  padding: 23px;
  position: absolute;
  right: -1150px;
  top: 35px;
  width: 100%;
}
#header-top #contact-nav a,
#site-footer #contact-nav a {
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  text-align: left;
}
#header-top #contact-nav a i,
#site-footer #contact-nav a i {
  left: 10px;
  font-size: 24px;
  top: 2px;
}
#header-top #contact-nav a.devis,
#site-footer #contact-nav a.devis {
  background: #4481c2;
  color: white;
  padding: 10px 20px;
  display: inline-block;
}
#header-top #contact-nav a.devis:before,
#site-footer #contact-nav a.devis:before {
  content: '';
  position: absolute;
  background: #4381c1;
  width: 100%;
  height: 45px;
  top: 35px;
  left: 1155px;
}
#header-top #contact-nav a.acces,
#site-footer #contact-nav a.acces {
  padding: 5px;
}
#header-top #contact-nav a.acces i,
#site-footer #contact-nav a.acces i {
  left: 15px;
}
/* NAVIGATION */
#nav-panel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#nav-panel.ui-panel-display-push {
  z-index: 99999;
}
#nav-panel #mobile-main-menu .menu > li {
  margin-top: 0;
}
#nav-panel #mobile-main-menu .menu > li:first-child {
  margin-top: 0;
}
#nav-panel #mobile-main-menu .menu > li.offre-parent {
  border: none;
}
#nav-panel #mobile-main-menu a {
  display: block;
  color: #333333;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#nav-panel #mobile-main-menu li {
  display: block;
}
#nav-panel #mobile-main-menu .menu > li > a {
  border-top: 1px solid rgba(228, 236, 246, 0.5);
  font-size: 12px;
  line-height: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
#nav-panel #mobile-main-menu li.offre-parent-1 > a {
  border-bottom: 1px solid #2e81c4;
}
#nav-panel #mobile-main-menu li.offre-parent-2 > a {
  border-bottom: 1px solid #2e81c4;
}
#nav-panel #mobile-main-menu li.offre-parent-3 > a {
  border-bottom: 1px solid #2e81c4;
}
#nav-panel #mobile-main-menu li.acces > a {
  border-color: #2e81c4;
}
#nav-panel #mobile-main-menu .sub-menu a {
  padding-left: 40px;
}
#nav-panel #mobile-main-menu .sub-menu > li {
  /*padding-top:1px;*/
  /*background:url(../images/trait-fff-40.png) repeat-x left top;*/
}
#nav-panel #mobile-main-menu .sub-menu > li a {
  font-size: 14px;
  text-transform: initial;
}
#nav-panel #mobile-main-menu .sub-menu > li:first-child {
  padding-top: 0;
  background: none;
}
#nav-panel #mobile-main-menu li a:hover {
  color: #fff;
  background: #333333;
}
#nav-panel #mobile-main-menu li.offre-parent-1 a:hover {
  background: #333333;
}
#nav-panel #mobile-main-menu li.offre-parent-2 a:hover {
  background: #333333;
}
#nav-panel #mobile-main-menu li.offre-parent-3 a:hover {
  background: #333333;
}
#nav-panel #mobile-main-menu li.acces > a:hover {
  background: #333333;
}
/* RECHERCHE */
#recherche-mobile {
  position: relative;
}
#recherche-mobile #s-mobile {
  background-color: #435362;
  color: #fff;
  padding: 15px 36px 15px 20px;
  width: 250px;
  height: 100%;
  width: 100%;
  border: none;
}
#recherche-mobile #search-submit-mobile svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .header #toggle-navigation {
    right: 45px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #2e81c4;
  }
  .header #toggle-navigation i {
    position: relative;
    left: 15px;
  }
}
/* MAIN */
#main {
  overflow: hidden;
  margin-top: 182px;
}
@media (min-width: 597px) {
  #main {
    margin-top: 169px;
  }
}
@media (min-width: 768px) {
  #main {
    margin-top: 185px;
  }
}
@media (min-width: 992px) {
  #main {
    margin-top: 171px;
  }
}
@media (min-width: 1200px) {
  #main {
    margin-top: 117px;
  }
}
#header-top #contact-nav li a:hover,
#site-footer #contact-nav li a:hover {
  border-color: #8fc4df;
}
.after-footer {
  background: #e4ecf6;
  text-align: center;
  margin-top: 50px;
  position: relative;
  /* END COPYRIGHT ADVISA */
}
.after-footer .container {
  min-height: 0 !important;
  /* COPYRIGHT ADVISA */
}
.after-footer .container ul {
  padding: 20px 0;
}
.after-footer .container ul li a {
  color: #333333;
  font-size: 16px;
}
.after-footer .container ul li:last-child {
  display: none;
}
.after-footer .container .cont-copyright-advisa {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 50px;
}
.after-footer .container .copyright-advisa {
  width: 39px;
  height: 32px;
  float: right;
  background: url(../images/copyright_advisa/logo_advisa.png) no-repeat top center;
}
.after-footer .container *html .copyright-advisa {
  background: url(../images/copyright_advisa/logo_advisa.gif) no-repeat top center;
}
.after-footer .container .copyright-over {
  display: none;
  width: 184px;
  height: 32px;
  position: absolute;
  right: 0;
  font-family: Arial, Verdana, Helvetica, sans serif;
  font-size: 11px;
  line-height: 100%;
  color: #fff;
  background: url(../images/copyright_advisa/bg_over.png) no-repeat top center;
}
.after-footer .container .cont-copyright-advisa table {
  border-collapse: collapse;
  border: 0;
  margin: 0;
}
.after-footer .container .cont-copyright-advisa td {
  padding: 0;
  vertical-align: top;
}
.after-footer .container .copyright-text {
  width: 150px;
  height: 26px;
  text-align: center;
  line-height: 26px;
}
.after-footer .container .copyright-over a {
  color: #fff;
  text-decoration: none;
}
.after-footer .container .copyright-img {
  width: 28px;
  height: 26px;
  padding: 0 8px 0 0;
}
/* RECHERCHE */
#recherche {
  position: absolute;
  bottom: 0;
  right: 0;
  height: calc(100% - 11px);
}
#recherche form {
  height: 100%;
}
#search-submit,
#search-submit-mobile {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5px;
  top: calc(50% - 15px);
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-submit:hover,
#search-submit-mobile:hover {
  color: #2e81c4;
}
#s,
#s-mobile {
  font-size: 14px;
  line-height: 18px;
  padding: 0;
  color: transparent;
  background: transparent;
  border: none;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  transition: all 100ms linear;
  outline: none;
  height: 100%;
  width: 0;
}
#search-open {
  display: none;
}
#recherche:hover #s,
#recherche #s:focus {
  background-color: #435362;
  color: #fff;
  border: none;
  padding: 15px 36px 15px 20px;
  width: 250px;
  height: 100%;
}
#recherche:hover #s + a svg path,
#recherche #s:focus + a svg path {
  fill: #fff;
}
/* MENU */
#navigation {
  position: relative;
  font-family: 'Sinkin', sans-serif;
  padding-top: 11px;
}
#navigation .menu {
  display: flex;
  flex-wrap: wrap;
}
#navigation .menu > li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 16px 13px;
}
#navigation .menu > li a {
  display: block;
  font-size: 12px;
  color: #333333;
  text-transform: uppercase;
  line-height: 22px;
}
#navigation .menu > li a .title i,
#navigation .menu > li a .title span {
  display: inline-block;
  vertical-align: bottom;
  height: 22px;
  line-height: 22px;
}
#navigation .menu > li a .title i {
  font-size: 24px;
  width: 18px;
}
#navigation .menu > li:hover {
  background: #d0d4d3;
  cursor: pointer;
}
#navigation .menu > li:hover a {
  color: #333333;
}
#navigation .menu > li.acces {
  display: block;
  float: right;
}
#navigation .menu > li.menu-item-has-children {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 16px 13px;
}
#navigation .menu > li.menu-item-has-children a {
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#navigation .menu > li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  z-index: 200;
  left: 0;
  top: 54px;
  min-width: 270px;
  background-color: #d0d4d3;
  padding: 15px 0;
}
#navigation .menu > li.menu-item-has-children .sub-menu li:last-child a {
  border-bottom: none !important;
}
#navigation .menu > li.menu-item-has-children .sub-menu li {
  display: block;
}
#navigation .menu > li.menu-item-has-children .sub-menu li a {
  text-transform: initial;
  font-size: 12px;
  display: block;
  background: none;
  color: #333333;
  margin: 0;
  padding: 10px 20px;
  /*border-bottom: 1px solid @color_blue3;*/
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#navigation .menu > li.menu-item-has-children .sub-menu li.current-menu-item a,
#navigation .menu > li.menu-item-has-children .sub-menu li.current-post-ancestor a,
#navigation .menu > li.menu-item-has-children .sub-menu li a:hover {
  color: white;
  /*border-bottom: 1px solid @color_blue2;*/
  background-color: #333333;
}
#navigation .menu > li.menu-item-has-children:hover .sub-menu,
#navigation .menu > li.menu-item-has-children:focus .sub-menu {
  display: block;
}
#navigation .menu > li.current-menu-item,
#navigation .menu > li.current-page-ancestor,
#navigation .menu > li.current-menu-ancestor:not(.offre-parent) {
  background-color: #d0d4d3;
}
#navigation .menu > li.current-menu-item a,
#navigation .menu > li.current-page-ancestor a,
#navigation .menu > li.current-menu-ancestor:not(.offre-parent) a {
  color: #333333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#navigation .menu > li.current-menu-item:hover,
#navigation .menu > li.current-page-ancestor:hover {
  background-color: #333333;
}
#navigation .menu > li.current-menu-item:hover a,
#navigation .menu > li.current-page-ancestor:hover a {
  color: white;
}
/* HEADER STICKY */
body.header-fixed-1 #site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
}
body.header-fixed-1 #site-header #header-top .description {
  margin-top: 5px;
  margin-left: 60px;
}
body:not(:-moz-handler-blocked) #site-footer a.devis,
body:not(:-moz-handler-blocked) #header-top a.devis {
  background: #4481c2;
  color: white;
  padding: 10px 20px;
  display: inline-block;
}
body:not(:-moz-handler-blocked) #site-footer a.devis:before,
body:not(:-moz-handler-blocked) #header-top a.devis:before {
  content: '';
  position: absolute;
  background: #4381c1;
  width: 100%;
  height: 47px;
  top: 36px !important;
  left: 1154px;
}
body:not(:-moz-handler-blocked).header-fixed-1 #header-top a.devis {
  background: #4481c2;
  color: white;
  padding: 10px 20px;
  display: inline-block;
}
body:not(:-moz-handler-blocked).header-fixed-1 #header-top a.devis:before {
  content: '';
  position: absolute;
  background: #4381c1;
  width: 100%;
  height: 46px !important;
  top: 0px !important;
  left: 1154px;
}
body:not(:-moz-handler-blocked).header-fixed-1 #site-footer a.devis:before {
  top: 36px !important;
}
/* PAGES */
#page-header {
  background: url(../images/svg/bandeau-pages.svg) no-repeat center center;
  background-size: cover;
}
#page-header .page-menu {
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding: 6px 40px 12px 0;
}
#page-header .page-menu li {
  display: inline-block;
  margin-right: 10px;
}
#page-header .page-menu li a {
  color: #000;
  text-transform: uppercase;
  display: block;
  padding: 0 14px;
  font-size: 14px;
}
#page-header .page-menu li.current-menu-item a,
#page-header .page-menu li.current-post-ancestor a,
#page-header .page-menu li a:hover {
  color: #fff;
}
#page-header span.main-title,
#page-header h1 {
  display: block;
  font-size: 36px;
  line-height: 40px;
  font-weight: normal;
  font-family: 'Sinkin', sans-serif;
  color: #fff;
  padding: 0;
  margin: 32px 0 32px 50px;
}
#page-header span.main-title strong,
#page-header h1 strong {
  font-weight: normal;
  color: #fff;
}
.page-template-archive-php #page-header.header-image .container .image img {
  height: 210px;
}
#page-header.header-image .container {
  position: relative;
  z-index: 0;
}
#page-header.header-image .container .image {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 30px;
  right: 0px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-header.header-image span.main-title,
#page-header.header-image h1 {
  left: 0;
  z-index: 100;
  position: relative;
  padding: 8px 0;
}
#page-header.header-image span.main-title strong:before,
#page-header.header-image h1 strong:before,
#page-header.header-image span.main-title strong:after,
#page-header.header-image h1 strong:after {
  content: "";
  display: block;
  clear: both;
}
/* PAGE ACCUEIL */
.top-home {
  background: url(../images/bg-home-top.jpg) no-repeat left top;
  background-size: cover;
  padding: 20px 0 60px;
  overflow: hidden;
  background-position: center center;
}
.top-home .offres .container {
  padding: 0 15px;
}
.top-home .offres .container h2 {
  text-align: center;
  font-family: 'Sinkin', sans-serif;
  color: white;
  margin-bottom: 20px;
}
.top-home .offres .container .offre {
  padding: 0;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top-home .offres .container .offre:hover {
  transform: translate(0, 10px);
}
.top-home .offres .container .offre i {
  display: block;
  width: 100%;
  height: 60px;
  padding: 5px 0;
}
.top-home .offres .container .offre i img {
  color: white;
  position: relative;
}
.top-home .offres .container .offre .content-offre {
  background: rgba(2, 173, 220, 0.7);
  margin: 0 1px;
  padding: 5px 15px;
}
.top-home .offres .container .offre .content-offre a {
  color: white;
  display: block;
}
.top-home .offres .container .offre .content-offre h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.top-home .offres .container .offre .content-offre p {
  font-family: 'Sinkin', sans-serif;
  font-size: 18px;
}
.top-home .offres .container .offre .content-offre p a {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.top-home .offres .container .offre .content-offre p a:hover {
  transform: scale(1.07);
}
.top-home .offres .container .offre .offre:nth-child(2) .content-offre {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.top-home .inities {
  padding: 0;
  color: white;
}
.top-home .inities h2 {
  margin-top: 60px;
  text-align: center;
  font-family: 'Sinkin', sans-serif;
}
.top-home .inities .initie {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 0;
  margin-top: 20px;
}
.top-home .inities .initie a {
  font-family: 'Sinkin', sans-serif;
  font-size: 24px;
  color: white;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top-home .inities .initie a h3 {
  font-size: 24px;
}
.top-home .inities .initie a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.top-home .inities .initie:nth-child(2) {
  border-right: 0 none;
  border-left: 0 none;
}
.middle-home .actualites .container h2 {
  font-size: 34px;
  font-family: 'Sinkin', sans-serif;
  color: #2e81c4;
  text-align: center;
  margin: 30px 0 50px;
}
.middle-home .actualites .container header aside {
  color: #2e81c4;
}
.middle-home .actualites .container header aside.cat {
  text-transform: uppercase;
  font-size: 24px;
}
.middle-home .actualites .container header aside.date {
  font-size: 16px;
  margin-bottom: 10px;
}
.middle-home .actualites .container header h3 a {
  color: #333333;
}
.middle-home .actualites .container .content-actus {
  font-size: 16px;
  color: #333333;
}
.middle-home .actualites .container .link {
  text-align: center;
  margin: 30px 0;
}
.middle-home .actualites .container .link a {
  padding: 10px 20px;
  display: inline-block;
  background: white;
  border: 1px solid #2e81c4;
  position: relative;
}
.middle-home .actualites .container .link a:before {
  background: #2e81c4;
}
.middle-home .actualites .container hr {
  width: 100%;
  float: left;
  border: 1px solid #e4ecf6;
}
.middle-home .actualites .container .social {
  text-align: center;
  margin-top: 30px;
}
.middle-home .actualites .container .social ul li a img {
  width: 43px;
  height: 43px;
}
.middle-home .actualites .container .offre-emploi {
  text-align: center;
  margin-top: 30px;
}
.middle-home .actualites .container .offre-emploi a {
  padding: 10px 20px;
  background: #2e81c4;
  color: white;
  border: 1px solid #2e81c4;
}
.middle-home .actualites .container .offre-emploi a:before {
  background: white;
}
.middle-home .actualites .container .offre-emploi a:hover,
.middle-home .actualites .container .offre-emploi a:focus,
.middle-home .actualites .container .offre-emploi a:active {
  color: #2e81c4;
}
.bottom-home {
  background: #229f8c;
  margin-top: 30px;
}
.bottom-home .qui-sommes-nous .container .bg {
  width: 100%;
  background-size: cover !important;
  padding: 0 50px !important;
  margin: 0 !important;
  min-height: 900px;
  position: relative;
  float: left;
}
.bottom-home .qui-sommes-nous .container .bg h2 {
  color: white;
  font-family: 'Sinkin', sans-serif;
  font-size: 64px;
  margin-bottom: 20px;
  margin-top: 50px;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous {
  color: #333333;
  font-family: 'Sinkin', sans-serif;
  font-size: 20px;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered {
  text-align: center;
  margin-top: 50px;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered a.button-active {
  padding: 10px 20px;
  background: #f3f3f3;
  color: #229f8c;
  border: 1px solid #229f8c;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered a.button-active:before {
  background: #229f8c;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered a.button-active:hover,
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered a.button-active:focus,
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered a.button-active:active {
  color: white;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .text {
  text-align: left;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a {
  background: #229f8c;
  padding: 10px 20px;
  color: white;
  position: absolute;
  right: 50px;
  bottom: 30px;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a span {
  font-size: 25px;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a:before {
  background: white;
}
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a:hover,
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a:focus,
.bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a:active {
  color: #229f8c;
}
.home-content img {
  max-width: 100%;
  height: auto;
}
.home-content .container .content-phrase {
  font-size: 12px;
}
/* PAGES */
.page #page-content {
  padding-top: 40px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.page #page-content small,
.page #page-content .small {
  display: block;
  font-size: 12px !important;
  line-height: 24px !important;
}
.page #page-content .row {
  margin: 0;
}
.page #page-content .row .entry p {
  font-family: 'Sinkin', sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 30px;
  letter-spacing: 0;
}
.page #page-content .row .entry h2 {
  font-size: 1.15em;
  font-weight: normal;
  line-height: 110%;
  padding: 6px 0;
  margin: 10px 0 20px 0;
  border-bottom: 1px solid #0099cc;
}
.page #page-content .row .entry h3 {
  font-size: 1.05em;
  font-weight: bold;
  margin: 0 0 0.2em 0;
}
.page #page-content div.page-intro,
.page #page-content p.page-intro {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 768px) {
  .page #page-content div.page-intro,
  .page #page-content p.page-intro {
    font-size: 16px;
    line-height: 25px;
  }
}
.page #page-content p.page-intro.header-image {
  padding-right: 540px;
  min-height: 230px;
}
.page-template-archive .page #page-content p.page-intro.header-image {
  padding-right: 540px;
  min-height: 60px;
}
#right-col .autre_lien h3 {
  color: #2e81c4;
}
#right-col .autre_lien nav.page-menu ul {
  padding: 0;
}
#right-col .autre_lien nav.page-menu ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e4ecf6;
  padding-left: 0;
}
#right-col .autre_lien nav.page-menu ul li a {
  font-size: 16px;
  display: block;
  font-family: 'Sinkin', sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
}
#right-col .autre_lien nav.page-menu ul li small {
  font-family: 'Sinkin', sans-serif;
  font-size: 20px;
  line-height: 20px;
}
/* PAGES OFFRE */
body.page-template-page-offre #main .offre {
  padding: 0;
  margin-bottom: 20px;
}
body.page-template-page-offre #main .offre .tab .titre {
  padding: 15px 20px 0;
}
body.page-template-page-offre #main .offre .tab .titre h2 {
  font-size: 22px;
  color: white;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  border: none;
  padding: 0;
  margin: 0 0 15px;
}
body.page-template-page-offre #main .offre .tab .titre span {
  font-family: 'Sinkin', sans-serif;
  font-size: 18px;
  color: black;
  line-height: 17px;
}
body.page-template-page-offre #main .offre .tab .img {
  background-position: center center;
  background-size: cover !important;
  height: 119px;
  text-align: center;
}
body.page-template-page-offre #main .offre .tab .prix {
  padding: 10px 20px;
  text-align: center;
}
body.page-template-page-offre #main .offre .tab .prix p {
  text-align: center;
  font-family: 'Sinkin', sans-serif;
  color: white;
  font-size: 26px;
  line-height: 30px;
}
body.page-template-page-offre #main .offre .tab .prix .savoirplus {
  min-height: 70px;
}
body.page-template-page-offre #main .offre .tab .prix .savoirplus button {
  background: none;
  border: none;
  position: absolute;
  width: 100px;
  height: 50px;
  left: 50%;
  margin-left: -50px;
  bottom: 0;
  outline: none;
}
body.page-template-page-offre #main .offre .tab .prix .savoirplus button span {
  display: block;
  font-family: 'Sinkin', sans-serif;
  font-size: 16px;
}
body.page-template-page-offre #main .offre .tab .prix .savoirplus button.actif {
  width: 65px;
  margin-left: -34.5px;
  bottom: -11px;
}
body.page-template-page-offre #main .offre .cache-tab {
  display: none;
  padding: 20px;
  background: white;
  border-left: 1px solid #e4ecf6;
  border-right: 1px solid #e4ecf6;
  border-bottom: 1px solid #e4ecf6;
  margin-bottom: 70px;
  position: relative;
}
body.page-template-page-offre #main .offre .cache-tab .content_ghost h4 {
  font-family: Arial, sans-serif;
  font-size: 20px;
}
body.page-template-page-offre #main .offre .cache-tab .content_ghost .caption {
  display: block;
  background: #f1f5fa;
  padding: 30px;
}
body.page-template-page-offre #main .offre .cache-tab .content_ghost p {
  font-size: 16px;
  font-family: Arial, sans-serif;
}
body.page-template-page-offre #main .offre .cache-tab .content_ghost a.conseil {
  text-align: center;
  margin: 50px 0;
}
body.page-template-page-offre #main .offre .cache-tab .content_ghost a.conseil span {
  padding: 15px 30px;
  display: inline-block;
  font-size: 16px;
}
body.page-template-page-offre #main .offre .cache-tab button {
  background: white;
  border: none;
  position: absolute;
  width: 65px;
  height: 50px;
  right: 65px;
  bottom: -49px;
  border-left: 1px solid #e4ecf6;
  border-right: 1px solid #e4ecf6;
  border-bottom: 1px solid #e4ecf6;
}
body.page-template-page-offre #main .asterisque p {
  font-size: 12px;
  color: #333333;
  margin-left: 30px;
}
body.page-template-page-offre #main .tableau {
  margin-top: 50px;
}
body.page-template-page-offre #main .tableau h2 {
  font-family: Arial, sans-serif !important;
  font-size: 20px !important;
  color: #333333 !important;
  border: 0 none !important;
  text-transform: normal !important;
}
body.page-template-page-offre #main .tableau table.mobile_tab {
  width: 100%;
  overflow-x: auto;
}
body.page-template-page-offre #main .tableau table.mobile_tab th,
body.page-template-page-offre #main .tableau table.mobile_tab tr,
body.page-template-page-offre #main .tableau table.mobile_tab td {
  text-align: center;
}
body.page-template-page-offre #main .tableau table.mobile_tab tbody tr:nth-child(odd) {
  background: #f1f5fa;
  border-bottom: 1px solid #e4ecf6 !important;
  border-top: 1px solid #e4ecf6;
}
body.page-template-page-offre #main .tableau table.mobile_tab tbody tr:nth-child(odd) td {
  font-weight: bold;
}
body.page-template-page-offre #main .tableau table.mobile_tab tbody tr:nth-child(odd) td:first-child {
  font-weight: normal;
}
body.page-template-page-offre #main .tableau table.mobile_tab tbody tr:last-child td {
  font-weight: bold;
}
body.page-template-page-offre #main .tableau table.mobile_tab thead tr:first-child {
  background: none;
}
body.page-template-page-offre #main .tableau table.mobile_tab th {
  font-family: Arial, sans-serif;
  font-size: 13px;
  padding: 0;
  text-transform: uppercase;
  color: #333333;
  border-top: 1px solid #e4ecf6;
  border-bottom: 1px solid #e4ecf6;
  border-left: 1px solid #e4ecf6;
  text-align: center;
}
body.page-template-page-offre #main .tableau table.mobile_tab th span {
  padding: 10px 10px 20px;
  display: block;
}
body.page-template-page-offre #main .tableau table.mobile_tab th:first-child {
  border-left: 0 none;
}
body.page-template-page-offre #main .tableau table.mobile_tab td.titre-col {
  font-size: 12px;
}
body.page-template-page-offre #main .tableau table.mobile_tab td {
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-left: 1px solid #e4ecf6;
  text-align: center;
}
body.page-template-page-offre #main .tableau table.mobile_tab td:first-child {
  border-left: none;
}
body.page-template-page-offre #main .tableau table.mobile_tab td i {
  color: #2e81c4;
}
body.page-template-page-offre #main .tableau table.desktop_tab {
  width: 100%;
  overflow-x: auto;
}
body.page-template-page-offre #main .tableau table.desktop_tab tbody tr:nth-child(even) {
  background: #f1f5fa;
  border-bottom: 1px solid #e4ecf6 !important;
  border-top: 1px solid #e4ecf6;
}
body.page-template-page-offre #main .tableau table.desktop_tab tbody tr:nth-child(even) td:first-child {
  font-weight: normal;
}
body.page-template-page-offre #main .tableau table.desktop_tab tbody tr:last-child td {
  font-weight: bold;
}
body.page-template-page-offre #main .tableau table.desktop_tab tbody tr:last-child td:first-child {
  font-weight: normal;
}
body.page-template-page-offre #main .tableau table.desktop_tab thead tr:first-child {
  background: none;
}
body.page-template-page-offre #main .tableau table.desktop_tab th {
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 0;
  text-transform: uppercase;
  color: #333333;
  border-top: 1px solid #e4ecf6;
  border-bottom: 1px solid #e4ecf6;
  border-left: 1px solid #e4ecf6;
  text-align: center;
}
body.page-template-page-offre #main .tableau table.desktop_tab th span {
  padding: 10px 10px 20px;
  display: block;
}
body.page-template-page-offre #main .tableau table.desktop_tab th:first-child {
  text-align: left;
  border-left: 0 none;
}
body.page-template-page-offre #main .tableau table.desktop_tab td {
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-left: 1px solid #e4ecf6;
  text-align: center;
}
body.page-template-page-offre #main .tableau table.desktop_tab td:first-child {
  max-width: 126px;
  border-left: none;
  text-align: left;
}
body.page-template-page-offre #main .tableau table.desktop_tab td i {
  color: #2e81c4;
}
/* GALERIE MÉDIAS */
#media-gallery {
  margin: 40px 0;
}
#media-gallery #gallery-header {
  width: 100%;
  height: auto;
  position: relative;
  background: #f7f7f7;
  line-height: 0;
}
#media-gallery #gallery-header .bg-img {
  width: 100%;
  height: auto;
}
#media-gallery #gallery-header #gallery-slides {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 1;
}
#media-gallery #gallery-header #gallery-slides .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  /*background-size:cover;*/
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  /*opacity:0;*/
  z-index: 100;
}
#media-gallery #gallery-header #gallery-slides .slide img {
  width: 100%;
  height: auto;
  opacity: 0;
}
#media-gallery #gallery-header #gallery-slides .slide .legende {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/bg-000-66.png);
}
#media-gallery #gallery-header #gallery-slides .slide .legende p {
  padding: 10px;
  color: #bbb;
  font-size: 0.825em;
  line-height: 120%;
  margin: 0;
}
#media-gallery #gallery-header #gallery-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 250;
  display: none;
}
#media-gallery #gallery-header a.btn-next,
#media-gallery #gallery-header a.btn-prev {
  height: 80%;
  top: 10%;
}
#media-gallery #gallery-footer {
  width: 100%;
  height: 53px;
  overflow: hidden;
  position: relative;
}
#media-gallery #gallery-footer #gallery-menu-cont {
  display: block;
  height: 53px;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
}
#media-gallery #gallery-footer #gallery-menu {
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#media-gallery #gallery-footer #gallery-menu li {
  margin: 0;
  padding: 0;
  background: none;
  display: block;
  width: 80px;
  height: 53px;
  position: absolute;
  top: 0;
}
#media-gallery #gallery-footer #gallery-menu li a {
  display: block;
  width: 80px;
  height: 53px;
  overflow: hidden;
}
#media-gallery #gallery-footer #gallery-menu li.current a,
#media-gallery #gallery-footer #gallery-menu li a:hover {
  border-bottom: 3px solid #2e81c4;
  height: 50px;
}
#media-gallery #gallery-footer a.btn-next,
#media-gallery #gallery-footer a.btn-prev {
  width: 40px;
  display: none;
}
#media-gallery #gallery-footer a.btn-next i,
#media-gallery #gallery-footer a.btn-prev i {
  font-size: 26px;
  color: #333;
}
#media-gallery #gallery-footer a.btn-next.disabled i,
#media-gallery #gallery-footer a.btn-prev.disabled i {
  color: #999;
}
#media-gallery #gallery-footer.scroll #gallery-menu-cont {
  left: 40px;
  width: 620px;
}
#media-gallery #gallery-footer.scroll a.btn-next,
#media-gallery #gallery-footer.scroll a.btn-prev {
  background: #f7f7f7;
  display: block;
}
#media-gallery a.btn-next,
#media-gallery a.btn-prev,
#media-gallery a.btn-play,
#media-gallery span.btn-play {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 100%;
  z-index: 300;
}
#media-gallery a.btn-next i,
#media-gallery a.btn-prev i,
#media-gallery a.btn-play i,
#media-gallery span.btn-play i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 32px;
  color: #fff;
  text-align: center;
}
#media-gallery a.btn-next {
  left: auto;
  right: 0;
}
#media-gallery a.btn-play,
#media-gallery span.btn-play {
  width: 100%;
  z-index: 280;
}
#media-gallery a.btn-play i,
#media-gallery span.btn-play i {
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 80px;
  color: #000;
}
#media-gallery span.btn-play i {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 32px;
}
/* ACTUALITÉS */
#liste-actus .actu-list {
  margin-bottom: 30px;
  position: relative;
}
#liste-actus .actu-list a {
  padding: 0;
  border-bottom: 1px solid #2e81c4;
  display: block;
  color: #000;
  display: flex;
}
#liste-actus .actu-list a:hover {
  background: #f7f7f7;
}
#liste-actus .actu-list .image {
  width: 200px;
  margin: 0 20px 20px 0;
  line-height: 0;
}
#liste-actus .actu-list .image img {
  max-width: 100%;
  height: auto;
}
#liste-actus .actu-list .date {
  display: block;
  padding-top: 8px;
}
#liste-actus .actu-list h2 {
  padding-right: 110px;
  font-size: 18px;
  font-family: 'Sinkin', sans-serif;
  text-transform: uppercase;
  margin: 6px 0 8px 0;
}
#liste-actus .actu-list span.read-more {
  color: #2e81c4;
  display: block;
  position: absolute;
  right: 0;
  bottom: 8px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  text-transform: none;
}
#liste-actus .actu-list.actu-image h2 {
  padding-right: 0;
  padding-bottom: 20px;
  line-height: 25px;
}
#pagination {
  margin-top: 100px;
}
#pagination .cont-pagination {
  float: right;
}
#pagination .cont-pagination .page-numbers {
  float: left;
  display: block;
  border-top: 1px solid #b3b3b3;
  line-height: 20px;
  height: 20px;
  padding: 13px 0 14px 0;
  width: 48px;
  font-size: 14px;
  text-align: center;
  color: #000;
  font-family: 'Sinkin', sans-serif;
}
#pagination .cont-pagination .page-numbers.current {
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#pagination .cont-pagination .page-numbers.current,
#pagination .cont-pagination a.page-numbers:hover {
  border-top: 2px solid #2e81c4;
  padding-top: 12px;
}
#pagination .cont-pagination .page-numbers.next,
#pagination .cont-pagination .page-numbers.prev {
  font-size: 17px;
}
#pagination .cont-pagination .page-numbers.disabled {
  color: #b8b8b8;
}
.page.page-actu #page-content {
  padding-top: 40px;
}
.page.page-actu #page-content p.desc-actu {
  text-align: right;
}
.page.page-actu #page-content .image {
  margin: 20px 0;
}
.page.page-actu #right-col {
  padding-top: 36px;
}
/* RIGHT COL */
#right-col .bloc-droite {
  display: block;
  margin: 0 0 30px 0;
  position: relative;
  border: 1px solid #2e81c4;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #e4ecf6;
}
#right-col .bloc-droite .degrade {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.33)), color-stop(1, rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
#right-col .bloc-droite .content {
  position: relative;
  z-index: 100;
  padding: 20px;
  text-align: center;
}
#right-col .bloc-droite .content a {
  color: #2e81c4;
}
#right-col .bloc-droite .content .title {
  font-size: 16px;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}
#right-col .bloc-droite .content h2,
#right-col .bloc-droite .content hr {
  border-color: #2e81c4;
}
#right-col .bloc-droite .content h2 a {
  color: #000 !important;
}
#right-col .bloc-droite .content h2 a:hover {
  text-decoration: none !important;
  color: #2e81c4 !important;
}
#right-col .bloc-droite .content hr {
  margin-left: 20px;
  margin-right: 20px;
}
#right-col .bloc-droite .content ul > li {
  background-image: url(../images/puce.png);
}
#right-col .bloc-droite .content .list-docs {
  margin: 20px 0;
}
#right-col .bloc-droite .content a.link-doc {
  display: block;
}
#right-col .bloc-droite .content a.link-doc i {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
#right-col .bloc-droite .content a.link-doc span {
  display: block;
  text-align: center;
  color: #000;
}
#right-col .bloc-droite .content a.link-doc:hover {
  text-decoration: none;
}
#right-col .bloc-droite .content a.link-doc:hover span {
  color: #2e81c4;
  text-decoration: underline;
}
#right-col .bloc-droite .content .label {
  text-align: center;
}
#right-col .bloc-droite .content.trame {
  padding-top: 40px;
}
#right-col .bloc-droite:last-child {
  margin-bottom: none;
}
#right-col .bloc-droite.bloc-btn-bleu,
#right-col .bloc-droite.bloc-btn-orange {
  border: none;
}
#right-col .bloc-droite.bloc-btn-bleu .content,
#right-col .bloc-droite.bloc-btn-orange .content {
  text-align: left;
  color: #333333;
  padding-top: 50px;
}
#right-col .bloc-droite.bloc-btn-bleu .label,
#right-col .bloc-droite.bloc-btn-orange .label {
  margin: 0 0 20px 0;
  font-size: 36px;
  line-height: 110%;
  text-transform: none;
  font-family: 'Sinkin', sans-serif;
}
#right-col .bloc-droite.bloc-btn-bleu .text,
#right-col .bloc-droite.bloc-btn-orange .text {
  font-size: 16px;
  text-align: left;
}
#right-col .bloc-droite.bloc-picto .content {
  padding-top: 80px;
}
#right-col .bloc-droite.bloc-picto .label {
  margin: 0;
  font-size: 26px;
  font-family: 'Sinkin', sans-serif;
  line-height: 30px;
}
#right-col .bloc-droite.bloc-picto .picto {
  display: block;
  position: absolute;
  z-index: 200;
  width: 60px;
  height: 56px;
  padding: 4px 0 0 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  left: calc(50% - 30px);
  top: 10px;
}
#right-col .bloc-droite.bloc-picto .picto i {
  font-size: 48px;
  width: 60px;
  text-align: center;
  line-height: 56px;
  color: #2e81c4;
}
#right-col .bloc-droite:hover .degrade {
  opacity: 0;
}
#right-col .bloc-mentions {
  margin: -20px 0 0 0;
}
#right-col .bloc-mentions .content {
  font-size: 0.8em;
  color: #666;
}
#right-col a.actu-link {
  display: block;
  border-bottom: 1px solid #2e81c4;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #000;
}
#right-col a.actu-link h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 25px;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#right-col a.actu-link .image {
  margin: 0 0 6px 0 !important;
}
#right-col a.actu-link .image img {
  width: 100%;
  height: auto;
}
#right-col a.actu-link:hover {
  background: #f7f7f7;
}
/* FORMULAIRE */
.entry .formulaire .field {
  margin-bottom: 24px;
}
.entry .formulaire label {
  font-size: 1em;
  text-transform: uppercase;
  margin: 6px 0 2px 0 !important;
  font-weight: normal;
  font-family: Arial, sans-serif;
}
.entry .formulaire .wpcf7-list-item label {
  font-size: 1.15em;
  text-transform: none;
}
.entry .formulaire input[type=text],
.entry .formulaire input[type=email],
.entry .formulaire textarea {
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.entry .formulaire textarea {
  height: 194px;
  resize: none;
}
.entry .formulaire input[type=radio],
.entry .formulaire input[type=checkbox] {
  opacity: 0;
}
.entry .formulaire .cont-radio,
.entry .formulaire .cont-checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  outline: none;
  margin-right: 4px;
}
.entry .formulaire .cont-radio {
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.entry .formulaire .cont-radio.checked,
.entry .formulaire .cont-checkbox.checked {
  background: #333;
  border: 4px solid #ccc;
}
.entry .formulaire small {
  display: block;
  text-align: right;
  font-style: itlaic;
  font-size: 0.85em;
  margin-top: 50px;
}
.entry .formulaire .field-submit {
  text-align: right;
  position: relative;
  margin-bottom: 0;
}
.entry .formulaire input[type=submit] {
  min-width: 0;
}
.entry .wpcf7 {
  position: relative;
  margin-bottom: 24px;
}
.entry .wpcf7 .ajax-loader {
  display: block;
  position: absolute;
  right: 108px;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #fff;
  padding: 5px 30px;
  margin: 0;
}
.entry .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.entry .wpcf7 input[type=text].wpcf7-not-valid,
.entry .wpcf7 input[type=email].wpcf7-not-valid,
.entry .wpcf7 textarea.wpcf7-not-valid {
  border: 1px solid #f00;
}
.entry .wpcf7 span.wpcf7-list-item {
  display: block;
  margin: 0 0 12px 0;
}
.entry .wpcf7 span.wpcf7-list-item span {
  font-family: Arial, sans-serif;
  display: inline-block;
  height: 18px;
  line-height: 18px;
  vertical-align: top;
  font-size: 16px;
}
.entry .wpcf7 input[type=submit],
.entry .wpcf7 a.btn-bleu {
  display: inline-block;
  border: 1px solid #2e81c4;
  color: #2e81c4;
  background: #fff;
  font-family: 'titillium-regular', Arial, sans-serif;
  font-weight: normal;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 50px;
  text-align: center;
  min-width: 230px;
  text-transform: uppercase;
}
.entry .wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.85em;
  line-height: 14px;
  position: absolute;
  top: 102%;
  left: 0;
  width: 100%;
  color: #f00;
}
.entry .wpcf7 .wpcf7-response-output {
  position: absolute;
  bottom: 25px;
  right: 310px;
  text-align: right;
  width: 380px;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1em;
}
.entry .wpcf7 .wpcf7-validation-errors {
  color: #f00;
}
/* FOOTER */
#site-footer {
  position: relative;
  overflow: hidden;
}
#site-footer #footer-1 {
  overflow: hidden;
}
#site-footer hr {
  margin: 50px 20px;
}
#site-footer .menu-footer ul li {
  padding: 7px 0;
}
#site-footer .menu-footer ul li a {
  color: #333333;
  font-family: 'Sinkin', sans-serif;
  font-size: 16px;
}
#site-footer .menu-footer ul li a:hover {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #2e81c4;
}
#site-footer {
  position: relative;
  overflow: hidden;
}
#site-footer .container {
  position: relative;
  min-height: 200px;
}
#site-footer #footer-nav {
  display: block;
  float: left;
  margin: 20px 0 0 20px;
  padding: 5px 0 50px 10px;
  border-left: 1px solid #2e81c4;
  position: relative;
  width: 220px;
}
#site-footer #footer-nav li {
  display: block;
  width: 220px;
}
#site-footer #footer-nav li.sep {
  margin-top: 18px;
}
#site-footer #footer-nav li.left {
  position: absolute;
  bottom: 14px;
  right: 241px;
  text-align: right;
}
#site-footer #footer-nav a {
  color: #333;
  line-height: 18px;
  font-size: 16px;
}
#site-footer #footer-nav a:hover {
  color: #2e81c4;
}
#site-footer #footer-contact-nav,
#site-footer .bande-rouge {
  background: #2e81c4;
}
#site-footer #footer-contact-nav li a:hover {
  background: #2e81c4;
  border-color: #e47275;
}
#site-footer #footer-contact-nav p.title,
#site-footer #footer-contact-nav a.contact {
  position: absolute;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  text-transform: uppercase;
  left: 0;
  line-height: 20px;
  top: -26px;
}
#site-footer #footer-contact-nav a.contact {
  display: block;
  left: 15px;
  top: 70px;
  color: #000;
  height: 24px;
  text-transform: uppercase;
}
#site-footer #footer-contact-nav a.contact i,
#site-footer #footer-contact-nav a.contact span {
  vertical-align: top;
  line-height: 24px;
  height: 24px;
}
#site-footer #footer-contact-nav a.contact i {
  font-size: 24px;
  margin-right: 9px;
}
#site-footer #footer-contact-nav a.contact:hover {
  color: #2e81c4;
}
#site-footer #footer-contact-nav p.adresse {
  position: absolute;
  left: 15px;
  top: 110px;
  color: #999;
}
@media (min-width: 768px) and (max-width: 991px) {
  /*
    body {
        background-image:url(../images/step-wl/bg.gif);
    }*/
  .span45 {
    width: 420px;
  }
  #site-header {
    height: 185px;
  }
  #header-top .telephone,
  #site-footer .telephone {
    float: left;
    margin: 0;
    text-align: right;
    width: 100%;
    margin: 20px 0 0;
  }
  #header-top .telephone a,
  #site-footer .telephone a {
    font-size: 16px;
  }
  #header-top .telephone a i,
  #site-footer .telephone a i {
    display: none;
  }
  #header-top #toggle-navigation,
  #site-footer #toggle-navigation {
    right: 30px;
    position: absolute;
    top: 47px;
    font-size: 24px;
    color: #4381C1;
  }
  #header-top #toggle-navigation i,
  #site-footer #toggle-navigation i {
    position: relative;
    left: 15px;
  }
  #header-top #contact-nav,
  #site-footer #contact-nav {
    float: left;
    width: 100%;
    margin-top: 5px;
    background: #4481c2;
    text-align: center;
  }
  #header-top #contact-nav a,
  #site-footer #contact-nav a {
    width: 50%;
    float: left;
    text-align: center !important;
  }
  #header-top #contact-nav a.devis,
  #site-footer #contact-nav a.devis {
    border-left: 1px solid white;
  }
  #header-top #contact-nav a.acces,
  #site-footer #contact-nav a.acces {
    background: #4481c2;
    color: white;
    padding: 10px 20px !important;
  }
  body.header-fixed-1 #site-header #header-top {
    padding-bottom: 10px !important;
    border: 1px solid #e4ecf6;
  }
  body.header-fixed-1 #site-header #header-top #toggle-navigation {
    top: 3px;
  }
  body.header-fixed-1 #site-header #header-top .telephone {
    margin: 5px 0 0 !important;
  }
  #header-bottom {
    position: relative;
  }
  /* MENU */
  #main-menu .menu > li.offre-parent .sub-menu .offre-1 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-2 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-3 a {
    min-height: 110px;
  }
  /* RECHERCHE */
  #recherche {
    margin: 0 -425px 0 0;
    /* 1170/2 + 10 - 170 */
  }
  #recherche:hover #s,
  #recherche #s:focus {
    width: 948px;
  }
  /* PAGE */
  /* PAGE ACCUEIL */
  #home-starht-1 .titre {
    margin: 150px 610px 14px 30px;
  }
  #home-starht-1 .texte {
    margin: 10px 630px 18px 30px;
  }
  #home-starht-1 a {
    margin-left: 30px;
  }
  #home-starht-2 .texte {
    margin: 0 350px 0 160px;
  }
  #home-offres {
    background-size: 1px 398px;
  }
  #home-offres .container {
    background-position: center 398px;
  }
  #home-offres #liste-offres {
    background-size: 1170px auto;
  }
  #home-offres #liste-offres .offre-home .content {
    background-size: 1170px auto;
    min-height: 260px;
  }
  #home-offres #liste-offres .offre-home .exclu {
    right: 30px;
  }
  #home-offres #liste-offres .offre-home .desc {
    padding: 0 30px;
  }
  #home-offres #liste-offres .offre-home .page-menu a {
    padding: 10px 30px;
  }
  /* HOME */
  .bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .centered {
    text-align: right;
  }
  /* PAGE */
  .page #page-content p.page-intro.header-image {
    padding-right: 0;
    min-height: 90px;
  }
  .page #page-header .container .image {
    height: 120px;
    width: 200px;
  }
  .page #page-header .container .image img {
    height: 120px;
  }
  /* PAGE-OFFRE */
  body.page-template-page-offre #main .offre .tab .prix p {
    font-size: 20px;
  }
  /* GALERIE MÉDIAS */
  #media-gallery #gallery-footer.scroll #gallery-menu-cont {
    width: 790px;
  }
  /* RIGHT COL */
  #right-col .bloc-droite .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  #right-col .bloc-droite .content hr {
    margin-left: 30px;
    margin-right: 30px;
  }
  /* FORMULAIRE */
  .entry .wpcf7 .wpcf7-response-output {
    bottom: 35px;
    width: 560px;
  }
}
@media (max-width: 768px) {
  /*
    body {
        background-image:url(../images/step-wl/bg.gif);
    }*/
  .span45 {
    width: 420px;
  }
  .header-top--infos {
    margin-left: 0;
  }
  body.header-fixed-1 #site-header #header-top #toggle-navigation {
    top: 3px;
  }
  body.header-fixed-1 #site-header #header-top .telephone {
    margin: 5px 0 0 55px;
  }
  #header-bottom {
    position: relative;
  }
  /* MENU */
  #main-menu .menu > li.offre-parent .sub-menu .offre-1 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-2 a,
  #main-menu .menu > li.offre-parent .sub-menu .offre-3 a {
    min-height: 110px;
  }
  /* RECHERCHE */
  /* PAGE */
  /* PAGE ACCUEIL */
  .bottom-home {
    padding: 0 !important;
  }
  .bottom-home .qui-sommes-nous .container {
    padding: 0 !important;
  }
  .bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous {
    text-align: center;
  }
  .bottom-home .qui-sommes-nous .container .bg div.content-qui-sommes-nous .devis-b a {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .bottom-home .qui-sommes-nous .container .bg h2 {
    font-size: 34px;
  }
  .phrase-culte .container .img-b {
    margin-bottom: 30px;
  }
  .top-home .inities .initie:nth-child(2) {
    border: 1px solid white !important;
  }
  .top-home .offres .container .offre {
    background: none transparent;
    margin: 12px 0 0;
  }
  #home-starht-1 .titre {
    margin: 150px 610px 14px 30px;
  }
  #home-starht-1 .texte {
    margin: 10px 630px 18px 30px;
  }
  #home-starht-1 a {
    margin-left: 30px;
  }
  #home-starht-2 .texte {
    margin: 0 350px 0 160px;
  }
  #home-offres {
    background-size: 1px 398px;
  }
  #home-offres .container {
    background-position: center 398px;
  }
  #home-offres #liste-offres {
    background-size: 1170px auto;
  }
  #home-offres #liste-offres .offre-home .content {
    background-size: 1170px auto;
    min-height: 260px;
  }
  #home-offres #liste-offres .offre-home .exclu {
    right: 30px;
  }
  #home-offres #liste-offres .offre-home .desc {
    padding: 0 30px;
  }
  #home-offres #liste-offres .offre-home .page-menu a {
    padding: 10px 30px;
  }
  /* PAGE */
  .page #page-content p.page-intro.header-image {
    padding-right: 0 !important;
    min-height: 1px !important;
  }
  .page #page-header .container .image {
    display: none;
  }
  /* PAGE-OFFRE */
  .page-offre #page-header .container h1 {
    width: 640px;
  }
  .page-offre #offres-autres .cont-titre {
    height: 130px;
  }
  .offres-menu .offre-1 a,
  .offres-menu .offre-2 a,
  .offres-menu .offre-3 a {
    min-height: 110px;
  }
  /* GALERIE MÉDIAS */
  #media-gallery #gallery-footer.scroll #gallery-menu-cont {
    width: 790px;
  }
  /* RIGHT COL */
  #right-col .bloc-droite .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  #right-col .bloc-droite .content hr {
    margin-left: 30px;
    margin-right: 30px;
  }
  /* FORMULAIRE */
  .entry .wpcf7 .wpcf7-response-output {
    bottom: 35px;
    width: 560px;
  }
  /* PAGES OFFRE */
  body.page-template-page-offre #main .offre .titre h2 {
    text-align: center;
  }
  body.page-template-page-offre #main .offre .titre span {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
  body.page-template-page-offre #main .offre .tableau table {
    display: block;
  }
  body.page-template-page-offre #main .offre .tableau table th,
  body.page-template-page-offre #main .offre .tableau table tr,
  body.page-template-page-offre #main .offre .tableau table td {
    display: block;
  }
  body.page-template-page-offre #main .offre .prix p {
    font-size: 20px;
  }
  body.page-template-page-offre #main .offre .cache-tab .content_ghost a.conseil span {
    display: block;
  }
}
@media (max-width: 596px) {
  /*********** HEADER ***********/
  #site-header {
    z-index: 9999;
  }
  #logo {
    width: 195px;
    display: inline-block;
  }
  #logo img {
    max-width: 100%;
    height: auto;
  }
  .header-top--infos {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-top--infos-item {
    margin-left: 0;
    margin-bottom: 0;
    width: auto;
  }
  .header-top--infos-item:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
  .header #toggle-navigation {
    right: 45px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #2e81c4;
  }
  .header #toggle-navigation i {
    position: relative;
    left: 15px;
  }
  #header-top .description,
  #site-footer .description {
    display: none;
  }
  #header-top #logo,
  #site-footer #logo {
    width: 100px;
    top: 0;
  }
  #header-top .telephone,
  #site-footer .telephone {
    display: block;
  }
  #header-top #contact-nav,
  #site-footer #contact-nav {
    display: block;
  }
  #header-top #contact-nav a,
  #site-footer #contact-nav a {
    font-size: 14px;
  }
  #header-top #contact-nav a i,
  #site-footer #contact-nav a i {
    display: none;
  }
  #header-top #contact-nav .bande-bleue,
  #site-footer #contact-nav .bande-bleue {
    display: none;
  }
  #header-top #toggle-navigation,
  #site-footer #toggle-navigation {
    top: 8px !important;
  }
  body.header-fixed-1 #site-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  body.header-fixed-1 #site-header #header-top {
    padding-bottom: 10px !important;
    border: 1px solid #e4ecf6;
  }
  body.header-fixed-1 #site-header #header-top #toggle-navigation {
    top: 8px !important;
  }
  body.header-fixed-1 #site-header #header-top #logo {
    top: 0 !important;
  }
  body.header-fixed-1 #site-header #header-top .telephone {
    margin: 5px 0 0 !important;
  }
  body.header-fixed-1 #site-header #header-top #contact-nav {
    margin-top: 5px !important;
  }
  body.page-template-page-offre #main .offre .titre h2 {
    text-align: center;
  }
  body.page-template-page-offre #main .offre .titre span {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
  body.page-template-page-offre #main .offre .tableau table {
    display: block;
  }
  body.page-template-page-offre #main .offre .tableau table th,
  body.page-template-page-offre #main .offre .tableau table tr,
  body.page-template-page-offre #main .offre .tableau table td {
    display: block;
  }
  body.page-template-page-offre #main .offre .cache-tab .content_ghost a.conseil span {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 595px) {
  /*********** HEADER ***********/
  .header-top--infos-item {
    width: 50%;
  }
}
.h-100 {
  height: 100%;
}
.home-sliders .swiper-container {
  height: auto;
}
@media (min-width: 768px) {
  .home-sliders .swiper-container {
    height: 460px;
  }
}
.home-sliders .swiper-container .swiper-slide {
  background-image: linear-gradient(270deg, #88cdd3 0%, #0bbbef 100%);
  height: auto;
}
@media (min-width: 768px) {
  .home-sliders .swiper-container .swiper-slide .container {
    background-image: url('../images/new/shape_s.svg');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .home-sliders .swiper-container .swiper-slide .container {
    background-size: contain;
  }
}
.home-sliders .swiper-container .swiper-slide-infos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .home-sliders .swiper-container .swiper-slide-infos {
    padding: 80px 0 60px 0;
  }
}
.home-sliders .swiper-container .swiper-slide-button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-sliders .swiper-container .swiper-slide-button {
    position: absolute;
    left: 0;
    bottom: 60px;
  }
}
.home-sliders .swiper-container .swiper-slide-button .new-link {
  min-width: 170px;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #ffffff;
}
.home-sliders .swiper-container .swiper-slide-button .new-link:hover,
.home-sliders .swiper-container .swiper-slide-button .new-link:focus {
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px #ffffff;
}
.home-sliders .swiper-container .swiper-slide-title {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 0;
}
@media (max-width: 596px) {
  .home-sliders .swiper-container .swiper-slide-title {
    font-size: 36px;
  }
}
.home-sliders .swiper-container .swiper-slide-subtitle {
  font-family: 'Sinkin', sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #ffffff;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 18px;
}
@media (max-width: 596px) {
  .home-sliders .swiper-container .swiper-slide-subtitle {
    font-size: 26px;
  }
}
.home-sliders .swiper-container .swiper-slide-desc {
  font-family: 'Sinkin', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
}
.home-sliders .swiper-container .swiper-slide.gradient-gen-1 {
  background-image: linear-gradient(270deg, #88cdd3 0%, #0bbbef 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-gen-2 {
  background: linear-gradient(270deg, #C8D8EE 0%, #71A0CD 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-yellow {
  background: linear-gradient(270deg, #FFD637 0%, #F7A408 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-orange {
  background: linear-gradient(270deg, #FC9554 0%, #EA5413 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-pink {
  background: linear-gradient(270deg, #FF87D9 0%, #E45773 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-blue {
  background: linear-gradient(270deg, #88DEC9 0%, #0193EC 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-green {
  background: linear-gradient(270deg, #63ECE0 0%, #2EC3BB 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-braun {
  background: linear-gradient(270deg, #F2C3B2 0%, #B78877 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-grey {
  background: linear-gradient(270deg, #B8CCCB 0%, #87A2A0 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-purple {
  background: linear-gradient(270deg, #C8D3DF 0%, #BC73C4 100%);
}
.home-sliders .swiper-container .swiper-slide.gradient-red {
  background: linear-gradient(270deg, #FFB994 0%, #FF6372 100%);
}
.home-sliders .container-pagination {
  position: relative;
  z-index: 9;
  bottom: 40px;
}
@media (min-width: 768px) {
  .home-sliders .container-pagination {
    height: 24px;
    left: 220px;
    bottom: 60px;
    right: 0;
    transform: translateY(-135%);
    text-align: initial;
  }
}
.home-sliders .swiper-pagination-bullets.swiper-pagination {
  position: relative;
}
@media (min-width: 768px) {
  .home-sliders .swiper-pagination-bullets.swiper-pagination {
    position: absolute;
  }
}
.home-sliders .swiper-pagination-bullets.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #ffffff;
  height: 14px;
  width: 14px;
  opacity: 1;
  margin: 0 7px;
}
.home-sliders .swiper-pagination-bullets.swiper-pagination .swiper-pagination-bullet-active {
  border: 2px solid #000000;
}
.home-offers-title {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Sinkin', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 60px;
  margin-top: 0;
}
@media (max-width: 596px) {
  .home-offers-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.home-offers-item {
  margin-bottom: 60px;
  padding-top: 40px;
  transition: all 0.25s ease-in;
}
@media (min-width: 768px) {
  .home-offers-item {
    margin-bottom: 0;
  }
}
.home-offers-item:hover {
  background-size: 110px !important;
  transition: all 0.25s ease-in;
}
.home-offers-item--title {
  margin: 0 0 30px 0;
  font-size: 28px;
  line-height: 1.3;
  font-family: 'Sinkin', sans-serif;
  font-weight: 200;
  font-style: normal;
}
@media (max-width: 596px) {
  .home-offers-item--title {
    font-size: 24px;
  }
}
.home-offers-item--title a:hover {
  text-decoration: none !important;
}
.home-offers-item ul {
  padding-left: 10px;
}
.home-offers-item ul li {
  padding: 0 0 0 20px;
  display: block;
  position: relative;
}
.home-offers-item ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  background-color: #0bbbef;
  width: 3px;
  height: 3px;
  border-radius: 100%;
}
.home-offers-item a {
  color: #333333;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
.home-offers-item a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
.home-listen h3 {
  font-size: 48px;
  margin-top: 0;
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 596px) {
  .home-listen h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.home-listen p {
  font-weight: 300;
  line-height: 30px;
}
.home-listen-button {
  margin-top: 40px;
}
.home-listen-button a {
  min-width: 170px;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  background-color: #435362;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
}
.home-listen-button a:hover,
.home-listen-button a:focus {
  transition: all 0.2s ease;
  color: #ffffff;
  background-color: #333333;
  text-decoration: none;
}
@media (max-width: 992px) {
  .home-listen-button {
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .home-listen .text-right {
    margin-top: 40px;
    text-align: center;
  }
}
.home-news h3 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
  margin-bottom: 60px;
}
@media (max-width: 596px) {
  .home-news h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.home-news-item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .home-news-item {
    margin-bottom: 0;
  }
}
.home-news-item--left {
  text-align: center;
}
.home-news-item--right {
  text-align: center;
}
@media (min-width: 768px) {
  .home-news-item--left {
    text-align: right;
    padding-right: 20px;
  }
  .home-news-item--right {
    text-align: left;
    padding-left: 20px;
  }
}
.home-news-item--content {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
.home-news-item--content strong {
  font-weight: 400;
}
.home-news-item .cat {
  display: none;
}
@media (min-width: 768px) {
  .home-news-item .cat {
    display: block;
    color: #2e81c4;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
}
.home-news-item--title {
  opacity: 0.5;
  color: #333333;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  margin: 0;
}
.home-news-item--title a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
.home-news-item--title a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
.home-news-button {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .home-news-button {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .home-contact .col {
    margin-bottom: 20px;
  }
}
.home-contact .list-inline {
  padding: 0 !important;
}
.home-contact .list-inline > li {
  padding-left: 25px;
  padding-right: 25px;
}
.footer .container {
  position: relative;
}
.footer .nav-footer {
  margin-left: 0;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 !important;
}
.footer .nav-footer li {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #333333;
  padding-left: 10px;
  padding-right: 10px;
}
.footer .nav-footer li:after {
  content: '';
  position: absolute;
  right: -2px;
  background-color: #333333;
  width: 1px;
  height: 12px;
  top: calc(50% - 7px);
}
.footer .nav-footer li:last-of-type:after {
  display: none;
}
.footer .nav-footer li a {
  color: inherit;
  transition: all 0.25s ease-in;
  text-decoration: none;
}
.footer .nav-footer li a:hover {
  text-decoration: underline;
  transition: all 0.25s ease-in;
}
.footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-partners-logo {
  padding: 10px;
}
.footer-partners-logo img {
  height: 40px;
}
.signature {
  flex-basis: auto;
  display: inline-flex;
  align-items: center;
  height: 40px;
  transition: background 0.3s ease-in-out;
  position: relative;
  z-index: 9999999;
  justify-content: flex-end;
  margin-top: 8px;
  margin-left: calc(50% - 20px);
}
@media screen and (min-width: 700px) {
  .signature {
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0;
  }
}
.signature * {
  font-family: Arial, Sans-Serif;
}
.signature a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.signature div.link {
  width: 0;
  opacity: 0;
  transition: width 0.3s ease-in-out, opacity 0.15s ease-in-out;
  transform-origin: right;
  text-align: center;
  color: #000;
  text-decoration: none;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.signature svg {
  width: 40px;
  height: 40px;
}
.signature:hover {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.signature:hover div.link {
  width: 120px;
  opacity: 1;
  transition: width 0.3s ease-in-out, opacity 0.6s ease-in-out;
}
.signature:hover svg .el#a {
  fill: #000;
}
.signature:hover svg .el#mire {
  fill: #7EBF28;
}
.signature.grey svg #a,
.signature.grey svg #mire {
  fill: #666666;
}
.page #page-emploi div.page-intro.header-image {
  padding-right: 33%;
  min-height: 360px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .page #page-emploi div.page-intro.header-image {
    min-height: 390px;
  }
}
@media screen and (max-width: 991px) {
  .page #page-emploi div.page-intro.header-image {
    min-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .page #page-emploi div.page-intro.header-image {
    padding-right: 0;
    min-height: auto;
  }
}
.page #page-emploi div.page-intro.header-image a {
  color: #EA5413;
  font-weight: 500;
}
.page #page-emploi div.page-intro.header-image a:hover {
  color: #0bbbef;
}
#page-emploi .header-image .container {
  z-index: 1;
}
#page-emploi .coords {
  position: absolute;
  right: 0;
  top: 350px;
}
@media screen and (max-width: 991px) {
  #page-emploi .coords {
    top: 200px;
  }
}
#page-emploi .coords .contact-block {
  background: #e4ecf6;
  max-width: 255px;
  margin: auto;
  text-align: center;
  padding: 30px 28px;
}
#page-emploi .coords .contact-block .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-emploi .coords .contact-block .wrapper a {
  font-size: 38px;
  margin: 0 20px;
  display: inline-block;
}
#page-emploi .coords .contact-block .wrapper a.fa-phone {
  font-size: 48px;
}
#page-emploi .coords .contact-block p {
  margin-bottom: 0;
  margin-top: 30px;
  font-size: 22px;
  line-height: 30px;
}
@media screen and (max-width: 991px) {
  #page-emploi .coords .contact-block {
    padding: 20px;
  }
  #page-emploi .coords .contact-block p {
    font-size: 18px;
    margin-top: 10px;
  }
}
#page-emploi .coords--bottom {
  position: static;
  max-width: 100%;
}
#page-emploi .coords--bottom .contact-block {
  max-width: 100%;
}
#page-emploi .box-jobs {
  margin-top: 42px!important;
}
#page-emploi .box-jobs h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.39;
  color: #0bbbef;
  padding: 0 15px;
  margin-bottom: 50px;
}
#page-emploi .listing-jobs {
  display: flex;
  flex-wrap: wrap;
}
#page-emploi .listing-jobs .col-sm-6 {
  margin-bottom: 30px;
}
#page-emploi .listing-jobs .item {
  background: linear-gradient(270deg, #88CDD3 0%, #0BBBEF 100%);
  padding: 30px 40px;
  height: 100%;
}
#page-emploi .listing-jobs .item .tag {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
}
#page-emploi .listing-jobs .item .date {
  font-size: 12px;
  line-height: 25px;
  margin-top: 5px;
}
#page-emploi .listing-jobs .item .title {
  margin-top: 10px;
}
#page-emploi .listing-jobs .item .title a {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: #333333;
}
#page-emploi .listing-jobs .item .title a:hover {
  text-decoration: underline;
}
#page-emploi .listing-jobs .item .localisation {
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 25px;
}
#page-emploi .listing-jobs .item .url {
  color: #fff;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}
#page-emploi .listing-jobs .item .url:hover {
  text-decoration: underline;
}
#page-emploi .home-listen {
  margin-top: 90px;
  padding: 50px 0 70px 0;
  position: relative;
}
#page-emploi .home-listen.bg-grey:after {
  content: '';
  position: absolute;
  display: block;
  background: #d0d5d4;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}
#page-emploi .home-listen h3 {
  font-size: 36px;
  line-height: 1.39;
  margin: 40px 0 24px 0;
}
#page-emploi .video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin-top: 60px;
}
#page-emploi .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page-emploi .title-text {
  margin-top: 95px;
}
#page-emploi .title-text h4 {
  font-size: 20px;
  line-height: 1.33;
  margin-bottom: 20px;
}
#page-emploi .title-text p {
  font-weight: 300;
}
#page-emploi .cards {
  margin-top: 40px!important;
}
#page-emploi .cards .card {
  text-align: center;
}
#page-emploi .cards .card .box {
  padding: 40px;
}
#page-emploi .cards .card img {
  width: 100px;
  height: auto;
}
#page-emploi .cards .card .text {
  line-height: 30px;
  margin-top: 20px;
}
#page-emploi .cards .card .text p:last-of-type {
  margin-bottom: 0;
}
#page-emploi .cards .card .link {
  display: inline-block;
  margin-top: 20px;
  text-transform: uppercase;
  color: #2e81c4;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
#page-emploi .cards .card .link:hover {
  text-decoration: underline;
}
/*
@import "02-layout-md.less";
@import "02-layout-lg.less";
@import "02-layout-t.less";
@import "02-layout-m.less";


@import "03-base.less";
@import "06-content.less";

*/
