/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

:root {
  --couleur-bleu: #2D2958;
  --couleur-jaune: #F9B233;
  --rgb-bleu: 45, 41, 88;
}

html {
  color: var(--couleur-bleu);
  font-size: 16px;
  line-height: 1.2;
}

/*** Loader ***/
html.loader body {
  position:relative;
  animation-name: fondu;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-duration: 1s;
  background-color: #E5E5E5;
}
html.loader::before {
  content:"";
  position:absolute;
  margin:0 auto;
  left:0;top:100px;right:0;bottom:0;
  border: 3px solid var(--couleur-bleu); /* Bleu */
  border-top: 3px solid var(--couleur-jaune); /* Jaune */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fondu
{
  0%, 70%
  {
    opacity:0;
  }
  100%
  {
    opacity:1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0)
  }
  to {
    opacity: 1;
    transform: none
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0)
  }
  to {
    opacity: 1;
    transform: none
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0px, 0)
  }
  to {
    opacity: 1;
    transform: none
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0px, 0)
  }
  to {
    opacity: 1;
    transform: none
  }
}
@keyframes fadeInDownRight {
  from {
    opacity: 0;
    transform: translate3d(50px, -50px, 0)
  }
  to {
    opacity: 1;
    transform: none
  }
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: var(--couleur-bleu);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--couleur-bleu);
    color: #fff;
    text-shadow: none;
}
footer ::-moz-selection,
footer ::selection {
    background: #fff;
    color: var(--couleur-bleu);
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* =========================================================================
   Author's custom styles
   ========================================================================= */
@keyframes slideFade {
 0% {
  opacity:0
 }
 30% {
  opacity:0
 }
 100% {
  opacity:1
 }
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color:#e5e5e5;
}

* {
  -webkit-tap-highlight-color: transparent;
  word-break: keep-all !important;
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  -o-hyphens: manual !important;
  hyphens: manual !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width:1500px) {
  .container {
    max-width:1420px;
  }
}
section {
  display:block;
}
a {
  transition:all 0.35s ease-in;
  position:relative;
  color:#2d2958;
}
a:visited,
a:focus,
a:link {
  color:#2d2958;
}
a:hover {
  color:#F9B233;
}

.no-outline,
.no-outline:focus,
.no-outline:hover,
.no-outline:active {
  outline:0;
}

.hidden {
  visibility: hidden;
}
.align-left {
  text-align:left;
}
.align-right {
  text-align:right;
}
.align-center {
  text-align:center;
}
.margin-top {
  margin-top:20px;
}
.margin-bottom {
  margin-bottom:20px;
}
.no-padding-left {
  padding-left:0px;
}
.no-padding-right {
  padding-right:0px;
}

img,
svg {
  max-width:100%;
  height:auto;
}
.wp-caption {
  max-width:100%;
  font-style: italic;
}
@media (max-width:767px) {
  .wp-caption {
    width:100%!important;
  }
}

/*
.message {
  position:fixed;
  top:20%;
  left:10%;
  width:80%;
  background-color:#FFF;
  color:#000;
  padding:1em;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
*/
.vertical-middle {
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
}
.vertical-align-center {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}

/*** medias ***/
.video-responsive,
.wp-block-embed__wrapper {
  width:100%;
  height:0;
  padding-bottom:56.25%;
/*  overflow:hidden;*/
  position:relative;
  max-width: 800px;
  margin: auto;
}
.video-responsive iframe, .video-responsive embed, .video-responsive object,
.wp-block-embed__wrapper iframe, .wp-block-embed__wrapper embed, .wp-block-embed__wrapper object {
  width:100%!important;
  height:100%!important;
  position:absolute!important;
  top:0;
  left:0;
}

/*** MAGNIFIC POPUP ***/
.mfp-bg {
  opacity:0.9;
}
.grecaptcha-badge { 
  visibility: hidden;
}
body .page {
  color:#2d2958;
}
body .page h1,
body .page h2,
body .page h3,
body .page h4,
body .page h5,
body .page h6,
body .page .h1,
body .page .h2,
body .page .h3,
body .page .h4,
body .page .h5,
body .page .h6 {
 line-height:115%;
 font-weight:900;
 text-transform: uppercase;
 font-style: italic;
}
body .page h1,
body .page .h1 {
 font-size:3.75em;
 margin-bottom: 50px;
}
body .page h2,
body .page .h2 {
 font-size:2.5em;
 margin-bottom: 30px;
}
body .page h3,
body .page .h3 {
 font-size:1.25em;
 font-weight: 700;
 margin-bottom:15px
}
body .page h4,
body .page .h4 {
 font-size:1.15em;
 font-weight: 700;
}
body .page h5,
body .page .h5 {
 font-size:1.15em
 font-weight: 700;
}
body .page h6,
body .page .h6 {
 font-size:1.15em
 font-weight: 700;
}
.page .texte {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
}
.page a:not(.button):not(.leaflet-popup-close-button):not(.chosen-single) {
  color:#2d2958;
}
.page a:not(.button):not(.leaflet-popup-close-button):not(.chosen-single):not(.underline):hover {
  color: #F9B233;
}
.page a.color-white:not(.button):not(.leaflet-popup-close-button):not(.chosen-single) {
  color: #fff;
}
.page .bg-blue a.color-white:not(.button):not(.leaflet-popup-close-button):not(.chosen-single):hover {
  color: #fff!important;
}
.page strong {
  font-weight: 800;
}
.page ul {
  padding-left:0px;
  list-style:none;
  list-style-position: outside;
}
/*
.page ul li::before {
  content: "\f111";
  font-family: "FontAwesome"; 
  color: #FA7B26;
  display:inline-block;
  width:1em;
  font-size: 8px;
  line-height: 26px;
  vertical-align: top;
  margin-right: 6px;  
}
*/
.page ul li:not(.col-12) {
  position: relative;
  padding-left: 20px;
}
.page ul.pagination li,
.page ul.slick-slider li,
.page ul.slick-dots li,
.page ul.liste-logo li,
.page ul.liste-descriptifs li,
.page footer ul li {
  padding-left: 0!important;
}
.page ul:not(.chosen-results) li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--couleur-jaune);
  width:11px;
  line-height: 20px;
  margin-right: 10px;  
  font-size: 50px;
}
.page ul.blocks-gallery-grid li::before,
.page ul.liste-services li::before,
.page footer ul li::before {
  display:none;
}
.page ul.liste-services li li {
  margin-top: 5px;
  line-height: 1.2em;
}
.page ul.liste-services li li::before {
  display: block;
}
.page ol {
  list-style: none; 
  counter-reset: li;
  padding-left:20px;
}
.page ol li::before {
  content: counter(li); 
  color: #F9B233;
  display: inline-block; 
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em; 
  text-align: right; 
  direction: rtl
}
.page ol li {
  counter-increment: li;
}
.page blockquote {
  border-left: solid 5px #F9B233;
  font-style: italic;
  font-size: 24px;
  padding: 15px 15px 15px 30px;
  margin: 2rem auto;
  background-color: rgba(0,0,0,.02);
  border-radius: 5px;
}
.page blockquote cite {
  font-size: 16px;
}
.page figure {
  margin: 40px auto;
}
.page figure figcaption {
  font-size:12px;
}
.page figure.wp-block-image {
  text-align: center;
}
.page figure.is-type-video {
  max-width: 1000px;
}
.pagination {
  justify-content:center;
  margin-top: 60px;
  padding-left: 0px!important;
}
.pagination li::before {
  display:none!important;
}
.pagination li a,
.pagination li span {
  display:block;
  font-weight: 900;
  font-size:20px;
  font-style: italic;
  color:;
  text-align:center;
  width:40px;
  height:40px;
  line-height:40px;
  transition:all .2s ease-in;
  text-decoration: none;
  border-bottom: none!important;
}
.pagination li.active span,
.pagination li a:hover {
  background-color: var(--couleur-jaune);
  color:#fff!important;
  border-bottom: none!important;
}
.pagination .prev a,
.pagination .next a {
  width: 40px;
}
.pagination .prev a {
  margin-right: 30px;
}
.pagination .next a {
  margin-left: 30px;
}
.pagination .prev a::before {
  content:"\f053";
  display:block;
  font-family: "FontAwesome";
  font-weight: lighter;
  font-style: normal;
  color:var(--couleur-jaune);
  width: 40px;
  height: 40px;
  text-align: center;
  transition: all .2s ease-in;
  line-height: 40px;
}
.pagination .next a::before {
  content:"\f054";
  display:block;
  font-family: "FontAwesome";
  font-weight: lighter;
  font-style: normal;
  color:var(--couleur-jaune);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: all .2s ease-in;
}
.pagination .prev a:hover::before,
.pagination .next a:hover::before {
  color: var(--couleur-bleu);
  background-color: transparent!important;
}
.pagination .prev a:hover,
.pagination .next a:hover {
  background-color: transparent!important;
}
.page ul.no-disc li::before {
  display: none;
}
.page ul.no-disc li {
  padding-left: 0;
}
.section-interne {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: left;
}
.container-padding-left {
  padding-left: 45px;
}
.container-padding-right {
  padding-right: 45px;
}
.bg-white {
  background-color: #fff;
  color: #2d2958;
}
.bg-blue {
  background-color: #2d2958;
  color: #fff; 
}
.bg-yellow {
  background-color: #F9B233;
  color: #fff; 
}
.color-white {
  color: #fff;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 15px;
  bottom: 15px;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in; 
}
.back-to-top::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:-1;
  background: linear-gradient(43.35deg, #C94450 18.51%, #E7B036 76.14%, #F8DD37 100%);
  border-radius:40px;
  box-shadow:0px 0px 0px 7px rgba(250, 123, 38, .35);
}
.back-to-top:hover {
  transform:translateY(-3px);
}
.back-to-top.visible {
  opacity:0.8;
}
.back-to-top a {
  height: 40px;
  position: relative;
  width: 40px;
  display: block;  
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1)
}
.back-to-top a::before {
  position:absolute;
  text-align:center;
  content:"\f077";
  font-family:"FontAwesome";
  color:#fff;
  font-size:15px;
  line-height:30px;
  left:0;
  top:0;
  width:40px;
}
.back-to-top.visible:hover {
  opacity:1;
}
@media (min-width:992px) {
  .back-to-top {
    width:60px;
    height:60px;
  }
  .back-to-top a {
    height: 60px;
    width: 60px;
  }
  .back-to-top a::before {
    font-size:20px;
    line-height:50px;
    width:60px;
  }
}
a.link-1,
a.link-2 {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 4.56471px;
  text-transform: uppercase;
  color: #fff;  
}
a.link-2.yellow {
  color: #F9B233;
}
a.underline {
  padding-bottom: 6px;
}
a.underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background:linear-gradient(43.35deg, #C94450 18.51%, #E7B036 76.14%, #F8DD37 100%);
  transition: all 0.2s linear;
}
a.underline:hover::before {
  width:100%;
  transform: translateY(4px)
}
a.button {
  position:relative;
  z-index:2;
  display:inline-block;
  text-align:center;
  cursor:pointer;
  background-color: #F9B233;
  border: solid 2px #F9B233;
  padding: 30px 50px 30px 50px;
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  width:auto;
  cursor: pointer; 
  text-decoration: none; 
}
a.button.invert {
  background-color: transparent;
  color: #F9B233;  
}
a.button-2 {
  background-color: transparent;
  color: var(--couleur-bleu);
  border-color: transparent!important;
}
a.button img {
  max-height:40px;
  width:auto;
}
a.button.ico-link::after {
  content:"\f105";
  font-family:"FontAwesome";
  color:#fff;
  margin-left:6px;
}
a.button.ico-back::before {
  content:"\f104";
  font-family:"FontAwesome";
  color:#fff;
  margin-right:6px;
}
a.button:hover {
  background-color: transparent;
  color: #F9B233;
}
a.button.invert:hover {
  background-color: #F9B233;
  color: #fff;
}
a.button-2:hover {
  color: var(--couleur-bleu)!important;
  border-color: var(--couleur-bleu)!important;
}

.hover-effect-right {
  transition:transform 0.2s ease-in;
}
.hover-effect-right:hover {
  transform:translateX(10px);
}

.border-button {
  position:relative;
  z-index:2;
  padding:4px;
}
.border-button span {
  align-items: center;
  background: #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: all .2s ease;
  width: 100%; 
  padding:0 20px;
  min-width:250px; 
  color:#fff;
}
.border-button:hover span {
  background: transparent!important; 
  color:#FFC049; 
}

.logo-container .sitename {
  display:none;
}
.social a {
  font-size:0;
  color: #fff;
  margin:0 8px;
  transition:all 0.35s ease-in;
}
.social a:first-child {
  margin-left: 0;
}
.social a:hover {
  color:var(--couleur-jaune);
}
.social a::before {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
}
footer .social a::before {
  font-size: 24px;
  line-height: 24px;
}
.social a.facebook::before {
  content:"\f09a";
}
.social a.linkedin::before {
  content:"\f08c";
}
.social a.instagram::before {
  content:"\f16d";
}
.social a.twitter::before {
  content:"\f099";
}

.page-content {
  padding:200px 0 0px;
  min-height: calc(100vh - 260px);
  overflow: hidden;
}
.page-standard {
  padding:200px 0 170px;
}

.page-content .section-content {
  padding:40px 0 100px;
}
.page-content.single {
  padding-bottom: 100px;
}
.cadre-photo {
  overflow: hidden;
  background: rgba(45, 41, 88, 0.07);
  width: 100%;
  height: 450px;
  position: relative;
  z-index: 1;
/*  animation: fadeInDownRight .45s linear;*/
}
.cadre-photo img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
body .page h1.with-subtitle,
body .page h2.with-subtitle,
body .page h3.with-subtitle {
  margin-bottom: 15px;
}
body .page h1.under-subtitle,
body .page h2.under-subtitle,
body .page h3.under-subtitle {
  margin-top: 15px;
}
.subtitle.under-h1 {
  margin-top: 6px;
  margin-bottom: 50px;
}
.subtitle.under-h2 {
  margin-top: 6px;
  margin-bottom: 30px;
}
.subtitle.under-h3 {
  margin-top: 6px;
  margin-bottom: 15px;
}
body .page h1.with-accroche,
body .page h2.with-accroche,
body .page h3.with-accroche {
  margin-bottom: 10px;
}
.section-header {
  padding-bottom: 30px;
}
.fil-ariane {
  text-align: left;
}
.section-breadcrumb .breadcrumbs .separator {
  padding: 0 3px;
}
.section-breadcrumb .breadcrumb_last {
  font-weight: 700;
}
.page-home .slider-home,
.page-competences .slider-competences {
  margin: 0 !important;
  position: relative;
  list-style: none;
  z-index: 1;
}
.page-home .slider-home li,
.page-competences .slider-competences li {
  padding-left: 0!important;
  border: none;
}
.page-home .slider-home li {
  /*border-top: solid 1px #fff;*/
  /*border-bottom: solid 1px #fff;*/
}
.page-home .slider-home li::before,
.page-competences .slider-competences li::before {
  display: none;
}
.slick-slide img {
  width: 100%;
}
.page-home .banner {
  height: 640px;
}
.page-home .banner .container {
  position: relative;
}
.page-home .legende {
  position: absolute;
  z-index: 1;
  padding: 80px 70px;
  width: calc(50% - 7.5px);
  height: 450px;
  top: -450px;
  left: 0;
  background-color: #e5e5e5;
  overflow: hidden;
}
.page-home h1 {
  font-size: 40px!important;
  font-weight: 900!important;
  text-transform: uppercase;
  text-align: left;
  z-index: 1;
  position: relative;
}
.page-home .banner .button {
  float: left;
  height: auto;
  font-weight: 800;
  font-size: 22px;
  line-height: 22px;
  padding: 30px 40px;
  text-transform: uppercase;
  display: flex;
}
.button svg {
  margin-left: 40px;
}
.button svg path {
  transition: fill .2s ease-in;
}
.button:hover svg path {
  fill: #F9B233;
}
.page-home .banner .slider-navigation {
  position: absolute;
  z-index: 1;
  width: calc(50% - 7.5px);
  height: 90px;
  top: -90px;
  left: calc(50% + 7.5px);
  text-align: left;
  display: flex;
  justify-content: flex-start;
}
.slider-navigation a {
  width: calc(33% - 9.5px);
  background-color: #2D2958;
  color: #fff!important;
  margin: 0 7.5px;
  font-size: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-navigation a:hover {
  background-color: #F9B233;
}
.slider-navigation a:first-child {
  margin-left: 0;
}
.slider-navigation a:last-child {
  margin-right: 0;
}
.slider-navigation a svg {
  margin: 0 auto;
}
.page-competences .slider-competences li {
  height: 550px;
}
.page-competences .slider-competences li img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.section-presentation .bg-white {
  margin: 0 -15px;
  padding: 40px;
}
.section-presentation h2 {
  margin-bottom: 0px!important;
}
.section-presentation .subtitle {
  color: var(--couleur-bleu);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 40px;
}
.section-presentation .liste-paragraphes {
  display: flex;
}
.section-presentation .paragraphe {
  padding: 0 15px;
}
.section-presentation .paragraphe:first-child {
  padding-left: 0;
}
.section-presentation .paragraphe:last-child {
  padding-right: 0;
}
.section-presentation .paragraphe h3 {
  color: var(--couleur-jaune);
  font-style: normal;
  letter-spacing: 0.15em;
}
.blocs-raccourcis {
  padding: 120px 0 80px;
  z-index: 2;
  position: relative;  
}
.blocs-raccourcis .w-50 {
  margin: 0 7.5px;
  width: calc(50% - 7.5px)!important;
}
.blocs-raccourcis .w-50:nth-child(2n+1) {
  margin-left: 0;
}
.blocs-raccourcis .w-50:nth-child(2n+2) {
  margin-right: 0;
}
.blocs-raccourcis .raccourci {
  position: relative;
  z-index: 1;
  padding: 90px 120px 70px;
  text-align: center;
  transition: all 450ms ease;
}
.blocs-raccourcis .raccourci::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/homepage/bg-texture-raccourci.png);
  mix-blend-mode: overlay;  
}
.raccourci .texte {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.raccourci .texte strong {
  font-size: 40px;
  font-weight: 800;
}
.raccourci .button {
  background-color: #fff;
  border-color: #fff;
  height: 100px;
  line-height: 100px;
  padding: 0 50px;
}
.raccourci.bg-blue .button {
  color: #2D2958;
}
.raccourci.bg-yellow .button {
  color: #F9B233;
}
.raccourci .button:hover {
  color: #fff;
}
.raccourci .button svg {
  margin-left: 40px;
}
.raccourci .button svg path {
  transition: fill .2s ease-in;
}
.bg-blue .button svg path {
  fill: #2D2958;
}
.bg-yellow .button svg path {
  fill: #F9B233;
}
.raccourci .button:hover svg path {
  fill: #fff;
}
.w-50:nth-child(odd) .raccourci.scrollanime {
 margin-top:-5%;
 margin-bottom:5%
}
.w-50:nth-child(even) .raccourci.scrollanime {
 margin-bottom:-5%;
 margin-top:5%
}

.motifs {
  position: absolute;
  z-index: 0;
  top: -300px;
}
.liste-realisations {
  margin-top: 50px;
  z-index: 1;
  position: relative;
}
.liste-realisations ul:not(.pagination) li {
  padding:  0 7.5px!important;
  transition: all 450ms ease;
}
.liste-realisations ul:not(.pagination) li:nth-child(3n+1) {
  padding-left:0!important;
}
.liste-realisations ul:not(.pagination) li:nth-child(3n+3) {
  padding-right:0!important;
}
.liste-realisations ul li:nth-child(3n+1).scrollanime {
 margin-bottom:-3%;
 margin-top:3%
}
.liste-realisations ul li:nth-child(3n+3).scrollanime {
 margin-top:-3%;
 margin-bottom:3%
}
.bloc-realisation {
  background-color: #fff;
  margin-bottom: 20px;
}
.bloc-realisation .photo-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.bloc-realisation .photo-link .marche {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 14px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  width: 224px;
}
.bloc-realisation .photo-link img {
  transition: all 0.45s ease;
}
.bloc-realisation .photo-link:hover img {
  transform: scale(1.1);
}
.bloc-realisation .marche.professionnel {
  background-color: var(--couleur-bleu);
}
.bloc-realisation .marche.particulier {
  background-color: var(--couleur-jaune);
}
.bloc-realisation .description {
  background-color: #fff;
  padding: 40px;
  min-height: 340px;
}
.bloc-realisation .titre-container {
  margin-bottom: 40px;
  font-style: italic;
  text-transform: uppercase;
}
.bloc-realisation .titre-container .titre {
  font-size: 25px;
  font-weight: 900;
  line-height: 25px;
  display: block;
  text-decoration: none;
}
.bloc-realisation .titre-container .soustitre1 {
  font-weight: 500;
  color: #F9B233;
  font-size: 14px;
}
.bloc-realisation .titre-container .soustitre1 a {
  color: #F9B233!important;
  text-decoration: none;
}
.dernieres-realisations .call-to-action {
  text-align: right;
  width: 100%;
  margin: 80px 0 40px;
}
.dernieres-realisations .call-to-action .button {
  margin-right: calc(16% + 7px);
}
.page-realisations h1,
.page-actualites h1 {
  position: relative;
  z-index: 1;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.page-standard h1 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.page-qui-sommes-nous h1 {
  margin-top: 0;
}
.subtitle {
  color: var(--couleur-jaune);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.15em;
}
.page-realisations .motifs {
  bottom: -200px;
  top: auto;
}
.page-realisations .bloc-marche {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 80px auto;
}
.bloc-marche .bloc-checkbox {
  position: relative;
  z-index: 1;
  padding: 40px 40px 40px;
  text-align: center;
  min-width: 35%;
  text-align: left;
  transition: all 450ms ease;
  background-color: #fff;
  color: var(--couleur-bleu);
  font-size: 20px;
  font-weight: 700;
}
.bloc-marche .bloc-checkbox.selected::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/homepage/bg-texture-raccourci.png);
  mix-blend-mode: overlay;
}
.bloc-marche .bloc-checkbox.professionnel.selected {
  background-color: var(--couleur-bleu);
  color: #fff;
}
.bloc-marche .bloc-checkbox.particulier.selected {
  background-color: var(--couleur-jaune);
  color: #fff;
}
.bloc-checkbox input[type=checkbox] {
  height: 24px;
  width: 24px;
  position: absolute;
  left: 40px;
  opacity: 0;
  cursor: pointer;
}
.bloc-checkbox input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  margin-right: 20px;
  cursor: pointer;
  text-align: center;
  background-color: rgba(45, 41, 88, .15);
}
.bloc-checkbox input[type=checkbox]:checked + label::before {
  font-family: "FontAwesome";
  content: "\f00c";
  line-height: 24px;
  font-size: 10px;
  text-align: center;
  background-color: #fff;
}
.bloc-checkbox.professionnel.selected input[type=checkbox]:checked + label::before{
  color: var(--couleur-bleu);
}
.bloc-checkbox.particulier.selected input[type=checkbox]:checked + label::before{
  color: var(--couleur-jaune);
}
.page-realisations .bloc-filtres {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 0px auto 0px;
}
.bloc-filtres .criteres-bloc {
  min-width: 330px;
}
.bloc-filtres label,
.bloc-contact label {
  display: block;
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bloc-filtres label svg,
.bloc-contact label svg {
  margin-right: 20px;
}
.chosen-container {
  width: 100%!important;
}
.chosen-container .chosen-single {
  border: none!important;
  color: var(--couleur-bleu)!important;
  font-size: 18px!important;
  background: transparent!important;
  box-shadow: none!important;
  width: 100%!important;
  text-align: center!important;
  margin: 0px 0 15px !important;
}
.chosen-container-single .chosen-single::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  z-index: 2;
  font-size: 20px;
  color: var(--couleur-jaune);
  top: -2px;
  right: 0px;
  line-height: 30px;
  transition: all 0.2s ease-in;  
}
.chosen-container .chosen-drop {
  background-color: var(--couleur-bleu)!important;
  box-shadow: none!important;
  border: none!important;
  border-radius: 0!important;
}
.chosen-container .chosen-drop .chosen-results {
  color: #e5e5e5!important;
  border-radius: 0!important;
  padding: 0!important;
  margin: 0!important;
}
.chosen-container .chosen-results li {
  padding: 20px 0!important;
  font-size: 16px;
}
.chosen-container .chosen-results li.highlighted {
  background-color:rgba(255,255,255,.15)!important;
  background-image:none!important;
}
.liste-blocs-radio {
  display: flex;
  justify-content: center;
}
.bloc-radio {
  position: relative;
  background-color: rgba(45, 41, 88, .1);
  padding: 10px 20px;
  margin: 0 2px;
  transition: all .25s ease;
}
.bloc-radio.selected {
  background-color: var(--couleur-jaune);
}
.bloc-radio label {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  text-transform: none;
  font-style: normal;
  margin: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.bloc-radio.selected label {
  font-weight: 700;
  line-height: 130%;
  color: #fff;
}
.bloc-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;  
  cursor: pointer;
}
.single-actu .section-header .cadre-photo,
.single-realisation .section-header .cadre-photo {
  height: 600px;
  background-color: #d8d8db;
  position: relative;
  display: block;
  width: 100%;
}
.single-realisation .section-header .cadre-photo .container {
  position: relative;
}
.single-realisation .section-header .cadre-photo .marche {
  position: absolute;
  z-index: 2;
  left: 0px;
  bottom: 0;
  padding: 24px 0;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  width: calc(33% - 2px);
}
.single-realisation .section-header .cadre-photo .marche.professionnel {
  background-color: var(--couleur-bleu);
}
.single-realisation .section-header .cadre-photo .marche.particulier {
  background-color: var(--couleur-jaune);
}
.single-realisation .description {
  text-align: left;
  padding: 0 60px 0 0;
}
.single-realisation .liste-photos .cadre-photo {
  max-height: 450px;
  margin-bottom: 40px;
}
.single-realisation h1 {
  font-size: 50px!important;
  line-height: 50px!important;
}
.single-realisation .resume {
  margin: 40px auto;
}
.single-realisation .liste-photos {
  padding: 0 0 0 7.5px;
}
.single-realisation .caracteristiques {
  display: flex;
  flex-wrap: wrap;
}
.caracteristiques .bloc-caracteristique {
  width: 50%;
  text-align: left;
  margin-bottom: 40px;
  padding: 0 30px 0 0;
}
.bloc-caracteristique label,
.single-realisation .contactez-nous label {
  font-style: italic;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.bloc-caracteristique label svg {
  margin-right: 15px;
  width: 26px;
  height: 26px;
}
.bloc-caracteristique label svg path {
  fill: #F9B233;
}
.bloc-caracteristique .data,
.bloc-contact .data {
  font-size: 18px;
  margin-left: 40px;
}
.single-realisation .contactez-nous {
  margin-top: 30px;
}
.single-realisation .contactez-nous .button {
  padding: 15px 40px 15px;
  margin-top: 30px;
}
.container-columns {
  display: flex;
  flex-wrap: wrap;
}
.single-realisation .container-columns .column {
  width: 33.3333%;
  text-align: center;
}
.container-columns .colonne-gauche {
  text-align: left!important;
  display: flex;
  justify-content: center;
  flex-direction: column; 
}
.container-columns .colonne-droite {
  text-align: right!important;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.realisation-navigation .column a {
  text-decoration: none;
}
.realisation-navigation .colonne-gauche a,
.realisation-navigation .colonne-droite a {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--couleur-bleu);
  opacity: 0.5;  
}
.realisation-navigation .column a svg path {
  fill: var(--couleur-bleu);
  transition: all .35s ease;
}
.realisation-navigation .colonne-gauche a:hover,
.realisation-navigation .colonne-droite a:hover {
  opacity: 1;  
}
.realisation-navigation .column a:hover svg path {
  fill: var(--couleur-jaune);
}
.realisation-navigation .colonne-gauche a svg {
  margin-right: 15px;
}
.realisation-navigation .colonne-droite a svg {
  margin-left: 15px;
}
.realisation-navigation .button {
  background-color: var(--couleur-bleu);
  border-color: var(--couleur-bleu);
  padding: 15px 40px 15px;
}
.realisation-navigation .button:hover {
  color: var(--couleur-bleu);
}
.section-introduction {
  margin-top: 100px;
  text-align: left;
}
.page-content h1 {
  font-size: 40px!important;
}
.page-qui-sommes-nous .texte-intro {
  margin-top: 40px;
  max-width: 70%;
  font-size: 21px;
  padding: 40px 60px;
}
.page-qui-sommes-nous .column-text {
  padding-left: 7.5px;
}
.page-qui-sommes-nous .column-photos {
  padding-left: 0px;
}
.page-qui-sommes-nous .photo-0 {
  width: 80%;
  height: auto;
  margin-bottom: 30px;
}
.page-qui-sommes-nous .photo-1,
.page-qui-sommes-nous .photo-2 {
  width: 80%;
  height: auto;
  float: left;
}
.page-qui-sommes-nous .photo-2 {
  margin-top: 30px;
  margin-left: 0px;
}
.page-qui-sommes-nous .section-banner {
  padding-top: 160px;
}
.page-qui-sommes-nous .section-banner .cadre-photo {
  height: 550px;
  background-color: #d8d8db;
}
.section-collaborateurs .col-12,
.section-certifications .col-12,
.dernieres-realisations .col-titre {
  margin: 0 -15px;
}
.section-collaborateurs h2 {
  max-width: 70%;
}
.section-collaborateurs .collaborateurs-chiffres {
  display: flex;
  margin-top: 25px;
}
.section-collaborateurs .bloc-chiffre {
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  padding-right: 80px;
  margin-bottom: 40px;
}
.section-collaborateurs .bloc-chiffre svg {
  margin-right: 20px;
}
.section-collaborateurs .bloc-texte {
  column-count:  2;
  column-gap: 60px;
  width: 80%;
}
.section-certifications {
  z-index: 10;
}
.section-certifications .liste-certifications {
  display: flex;
  margin-top: 20px;
}
.liste-certifications .bloc-certification {
  background-color: #fff;
  margin: 0 0px;
  padding: 20px;
  width: 100%;
  display: flex;
}
.bloc-certification:nth-child(2n+1) {
  margin-left: 0;
}
.bloc-certification:nth-child(2n+2) {
  margin-right: 0;
}
.bloc-certification .logo {
  display: flex;
  justify-content: center;
  flex-direction: column;  
}
.bloc-certification img {
  max-height: 150px;
  max-width: 150px;
}
.bloc-certification .description {
  padding: 0px 30px;
}
.bloc-certification .description .h3 {
  font-weight: 900;
  font-size: 30px;
  line-height: 100%;
  text-transform: uppercase;  
  margin-bottom: 20px;
}
.bloc-certification .description .soustitre {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--couleur-jaune);
}
.bloc-certification .description .texte {
  font-style: italic;
}
.bloc-certification p {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.section-contact {
  position: relative;
  padding-top: 150px;
  text-align: left;
}
.section-contact .column-1 {
  padding: 0 30px 0 0;
}
.section-contact .column-2 {
  padding: 0 15px 0 7.5px;
}
.section-contact .elements-contact {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.section-contact .bloc-contact {
  width: 50%;
  padding-right: 60px;
  margin-bottom: 60px;
}
.section-contact .bloc-contact:nth-child(2n+2) {
  padding-right: 0;
}
.contact-formulaire {
  position: relative;
  z-index: 2;
  margin-top: 140px;
}
.contact-formulaire form {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form .w-50:nth-child(2n+2) {
  padding: 0 15px 0 0;
}
.wpcf7-form .w-50:nth-child(2n+1) {
  padding: 0 0px 0 15px;
}
.wpcf7-form .wpcf7-form-control-wrap,
.wpcf7-form .w-100 label {
  width: 100%;
}
.wpcf7-form input, 
.wpcf7-form textarea {
  border: none;
  background-color:#c0bfc8;
  color:var(--couleur-bleu);
  padding: 15px 30px;
  margin-bottom: 4px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  outline: none;
  transition: all 0.2s ease-in;
}
.wpcf7-form label {
  margin-bottom: 60px;
}
.wpcf7-form label.no-margin-bottom {
  margin-bottom: 20px;
}
.wpcf7-form textarea {
  height: 100px;
}
.wpcf7-form label span:not(.wpcf7-form-control-wrap):not(.wpcf7-not-valid-tip):not(.file-custom) {
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--couleur-bleu);
  opacity: 0.5;
}
.wpcf7-form label span.wpcf7-not-valid-tip {
  color: #ff3434;
  font-style: italic;
}
.wpcf7-list-item {
  margin: 0 0 20px 0!important;
}
.wpcf7-form input[type=checkbox] {
  height:20px;
  width:20px;
  position: absolute;
  left: 0px;
  opacity: 0;
  cursor:pointer;
}
.wpcf7-form input[type="checkbox"] + span::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width:20px;
  height:20px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: transparent;
  border: solid 2px var(--couleur-bleu);
  margin-top:3px;
  margin-right: 6px;
  cursor:pointer;
}
.wpcf7-form input[type="checkbox"]:checked + span::before {
  font-family: "FontAwesome";
  content:"\f00c";
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color:#fff;
  background-color:var(--couleur-bleu);
}
.wpcf7-form .button-submit {
  position: relative;
  margin: 0 auto;
  float: right;
}
.wpcf7-form .button-submit input[type="submit"] {
  position:relative;
  text-align:center;
  cursor:pointer;
  padding: 15px 30px 15px 30px;
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  width:auto;
  cursor: pointer;  
  background-color: var(--couleur-jaune);
  border: solid 2px var(--couleur-jaune);
  color: #ffffff;
  transition: all .2s ease-in;
}
.wpcf7-form .button-submit input[type="submit"]:hover {
  background-color: transparent;
  color: var(--couleur-jaune);
}
.wpcf7-form .button-submit span.ajax-loader{
  display: block;
}
/*
.wpcf7-form .button-submit span:not(.ajax-loader)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background:linear-gradient(43.35deg, #C94450 18.51%, #E7B036 76.14%, #F8DD37 100%);
  transition: all 0.2s linear;
}
.wpcf7-form .button-submit span:not(.ajax-loader):hover::before {
  width:100%;
  transform: translateY(4px)
}
*/
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
  border:none!important;
}
.wpcf7-not-valid-tip,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color:#ff1a1a!important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border:none!important;
  color:rgba(62, 63, 77, 1);
}
.wpcf7 .wpcf7-response-output {
  margin:0!important;
}
.wpcf7 i.recaptcha {
  width: 56px;
  height: 56px;
  background-image: url(../img/main/recaptcha.jpg);
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: top;
}
.page-contact .motifs {
  top: auto;
  bottom: -200px;
  right: 0;
}
.bloc-actualite {
  margin-bottom: 60px;
}
.bloc-actualite .cadre-photo {
  height: 240px;
}
.bloc-actualite a,
.section-mise-en-avant a {
  text-decoration: none;
}
.bloc-actualite .h2,
.section-mise-en-avant .h2 {
  font-size: 25px!important;
  font-weight: 900!important;
  line-height: 25px!important;
  display: block;
  text-decoration: none;
  padding: 0 30px;
}
.section-mise-en-avant .h2 {
  padding: 0;
}
.bloc-actualite .description {
  position: relative;
}
.bloc-actualite .category,
.section-mise-en-avant .category,
.single-actu .category {
  display: block;
  margin-bottom: 20px;
  padding: 14px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--couleur-jaune);
  width: 224px;
}
.single-actu .category {
  display: inline-block;
  margin-bottom: 40px;
}
.bloc-actualite .date,
.section-mise-en-avant .date,
.single-actu .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 0 30px;
}
.section-mise-en-avant .date {
  padding: 0;
}
.section-mise-en-avant .cadre-photo {
  height: 420px;
}
.section-mise-en-avant .resume {
  margin-bottom: 40px;
}
.section-mise-en-avant .col-12:first-child {
  padding-left: 0;
  padding-right: 7.5px;
}
.section-mise-en-avant .col-12:last-child {
  padding-left: 7.5px;
  padding-right: 0px;
}
.section-mise-en-avant .description {
  padding-left: 60px;
}
.liste-actualites {
  position: relative;
  z-index: 1;
}
.liste-actualites li {
  padding: 0 7.5px!important;
}
.liste-actualites li:nth-child(4n+1) {
  padding-left: 0!important;
}
.liste-actualites li:nth-child(4n+4) {
  padding-right: 0!important;
}
.dernieres-actualites {
  padding-bottom: 200px;
}
.dernieres-actualites .liste-actualites li {
  width: auto;
  max-width: 25%;
  flex: auto;
}
.dernieres-actualites .liste-actualites li:first-child .cadre-photo {
  height: 420px;
}
.dernieres-actualites .liste-actualites li:first-child .category {
  width: calc(33% - 2px);
}

.dernieres-actualites .liste-actualites li:first-child {
  max-width: 50%;
  width: auto;
}
.dernieres-actualites .liste-actualites li:nth-child(2) {
  padding-right: 7.5px;
  padding-left: 0px;
}
.dernieres-actualites .liste-actualites li:nth-child(2) .category {
  width: calc(66% - 2px);
}
.dernieres-actualites .liste-actualites li:nth-child(3) {
  padding-right: 0!important;
  padding-left: 7.5px;
}
.dernieres-actualites .liste-actualites li:nth-child(3) .category {
  width: calc(66% - 2px);
}
.dernieres-actualites .call-to-action .button {
  position: absolute;
  right: 0;
  top: -160px;
}
.dernieres-actualites h2 {
  margin-left: -15px;
}
.single-actu .actualite-content {
  text-align: center;
}
.single-actu h1 {
  margin-bottom: 30px!important;
}
.single-actu .date {
  display: inline-block;
  margin-bottom: 40px;
}
.single-actu .texte {
  text-align: center!important;
}
.single-actu .liste-photos {
  margin: 80px -15px 40px;
  width: calc(100% + 30px);
  display: flex;
  flex-wrap: wrap;
}
.single-actu .liste-photos .cadre-photo {
  width: 50%;
  padding: 0 7.5px;
  background: transparent;
  margin-bottom: 40px;
}
.single-actu .liste-photos .cadre-photo:nth-child(2n+1) {
  padding-left: 0;
}
.single-actu .liste-photos .cadre-photo:nth-child(2n+2) {
  padding-right: 0;
}
.page-competences .section-header {
  padding-top: 100px;
  text-align: left;
}
.page-competences .section-header .container {
  position: relative;
}
.page-competences .section-header .motifs {
  top: auto;
  bottom: -600px;
  right: 0;
}
.page-competences .section-header .cadre-photo {
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.page-competences .column-text {
  padding: 0;
}
.page-competences .section-header h1 {
  max-width: 60%;
  margin:60px auto 15px 0;
}
.page-competences .section-header .texte {
  max-width: 70%;
  margin-top: 40px!important;
}
.page-competences .call-to-action {
  margin-top: 60px;
}
.page-competences .call-to-action a:first-child {
  margin-right: 30px;
}
.page-competences .section-professionnels {
  margin-top: 240px;
  padding: 80px 0;
  background-color: var(--couleur-bleu);
  color: #fff;
}
.page-competences .column-slider {
  padding: 0 7.5px 0 0;
  position: relative;
}
.page-competences .section-professionnels .slider-competences {
  margin-top: -150px!important;
}
.page-competences .slider-navigation {
  width: 40px;
  text-align: center;
  font-size: 0;
  position: absolute;
  z-index: 2;
  bottom: 40px;
  right: -40px;
}
.page-competences .slider-navigation #score-dots {
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 115%;
  text-transform: uppercase;
  color: #fff;  
}
.page-competences .slider-navigation #score-dots span {
  color: var(--couleur-jaune);
}
.page-competences .slider-navigation a.previous-slide {
  width: 100%;
  margin: 0 auto 10px;
  height: 34px;  
}
.page-competences .slider-navigation a.next-slide {
  width: 100%;
  margin: 10px auto 0px;
  height: 34px;  
}
.page-competences .slider-navigation a,
.page-competences .slider-navigation a:hover {
  background-color: transparent;
}
.page-competences .section-professionnels .column-text {
  padding-left: 100px;
}
.page-competences .column-text .texte {
  margin-top: 20px;
}
.page-competences .section-professionnels .button-2 {
  color: #fff;
  margin-left: -50px;
  margin-top: -10px;
}
.page-competences .section-professionnels .button-2:hover {
  color: var(--couleur-jaune)!important;
}
.page-competences .liste-competences {
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.page-competences .liste-competences a {
  display: inline-block;
  background-color: var(--couleur-jaune);
  color: #fff!important;
  text-decoration: none;
  font-weight: 700;
  line-height: 100%;
  padding: 26px 36px;
  border: solid 2px var(--couleur-jaune);
}
.page-competences .liste-competences a:hover {
  color: var(--couleur-jaune)!important;
  background-color: transparent;
}
.page-competences .section-particuliers {
  padding: 100px 0;
}
.page-competences .section-particuliers .column-text {
  padding-right: 100px;
}
.page-competences .section-particuliers .button-2 {
  margin-left: -50px;
  margin-top: -10px;
}
.page-competences .section-particuliers .button-2 svg path {
  fill: var(--couleur-bleu);
}
.page-competences .section-particuliers .button-2:hover {
  color: var(--couleur-jaune)!important;
  border-color: transparent!important;
}
.page-competences .section-particuliers .button-2:hover svg path {
  fill: var(--couleur-jaune);
}
.page-competences .section-particuliers .column-slider {
  padding: 0 0 0 7.5px;
  position: relative;
}
.page-competences .section-particuliers .slider-navigation {
  top: 0px;
  left: -50px;
}
.page-competences .section-particuliers .slider-navigation #score-dots {
  color: var(--couleur-bleu);
}
.page-competences .section-particuliers .slider-navigation svg path {
  fill: var(--couleur-bleu);
}
.page-competences .section-particuliers .liste-competences a {
  background-color: var(--couleur-bleu);
  border: solid 2px var(--couleur-bleu);
}
.page-competences .section-particuliers .liste-competences a:hover {
  color: var(--couleur-bleu)!important;
  background-color: transparent;
}
.taxonomy-competence .section-header .photos {
  display: flex;
  margin-bottom: 80px;
}
.taxonomy-competence .section-header .cadre-photo {
  height: 600px;
  background-color: transparent;  
}
.taxonomy-competence .photos.col-nb-1 .cadre-photo {
  width: 100%;
}
.taxonomy-competence .photos.col-nb-2 .cadre-photo {
  width: calc(50% - 10px);
  margin: 0 10px;
}
.taxonomy-competence .photos.col-nb-3 .cadre-photo {
  width: calc(33.3333% - 10px);
  margin: 0 10px;
}
.taxonomy-competence .photos .cadre-photo:first-child {
  margin-left: 0;
}
.taxonomy-competence .photos .cadre-photo:last-child {
  margin-right: 0;
}
.taxonomy-competence .section-header .texte {
  max-width: 60%;
  margin: 50px auto;
  text-align: center;
}
.taxonomy-competence .call-to-action {
  padding: 130px 0 100px;
  text-align: center;
}
.taxonomy-competence .call-to-action a {
  margin: 0 10px;
}
.taxonomy-competence .call-to-action a.bg-blue {
  background-color: rgba(var(--rgb-bleu), .1);
  border-color: rgba(var(--rgb-bleu), .0);
  color: var(--couleur-bleu);
}
.taxonomy-competence .call-to-action a.bg-blue:hover {
  background-color: rgba(var(--rgb-bleu), 1);
  border-color: rgba(var(--rgb-bleu), 1);
  color: #fff;
}

.page-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 100vh;
  height: 100%;
  padding: 0;
}
.page-background-line {
  position: relative;
}
.page-background-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7.5px;
  width: 1px;
  height: 100%;
  background: #B0B0B0;
  opacity: .2;
}
.page-background-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 7.5px;
  width: 1px;
  height: 100%;
  background: #B0B0B0;
  opacity: .2;
}
.legende .page-background-line:nth-child(2)::before {
  left: -5px;
}
.legende .page-background-line:nth-child(2)::after {
  left: 10px;
}
.legende .page-background-line:nth-child(3)::before {
  left: -3px;
}
.legende .page-background-line:nth-child(3)::after {
  left: 12px;
}
.legende .page-background-line:nth-child(4) {
  display: none;
}
.page-background-line:first-child::before,
.page-background-line:first-child::after,
.page-background-line:last-child::before,
.page-background-line:last-child::after {
  left: 0;
}

footer {
  text-align:left;
  padding: 65px 0px 40px;
  background-color:#2D2958;
  position:relative;
  z-index: 1;
  color:#fff;
}
footer .column-1 {
  text-align: left;
}
footer .sitename {
  font-size:0;
  display:none;
}
footer .column {
  display:flex;
  flex-direction:column;
  justify-content: center;
  font-size: 14px;
  line-height: 21px;
}
footer .logo-footer {
  display:inline-block;
  vertical-align:bottom;
  width:100%;
  max-width: 260px;
}
footer .address {
  margin-top: 20px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
footer .title {
  position: relative;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  padding-bottom: 20px;
  text-transform: uppercase;
}
footer .phone {
  display: block;
  margin-top: 0px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
}
footer .mail {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
}
footer .menu-footer ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
footer .menu-footer ul li {
  font-weight: 300;
  margin-top: 15px;
}
footer .menu-footer ul li:first-child {
  margin-top: 0;
}
footer  a {
  color: #fff!important;
  text-decoration: none!important;
}
footer .copyrights{
  margin-top: 80px;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-align: center;  
  width:100%;
}
footer .copyrights a {
  color: rgba(255,255,255,.5)!important;
}
footer .copyrights .col-6:last-child {
  text-align: right;
}
footer a:hover {
  color: var(--couleur-jaune)!important;
}

.dialog {
  display:none;
}
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:2000;
}
.ui-widget-overlay {
  background-color: #fff;
  opacity: .95;
  filter: Alpha(Opacity=95);
}
.mfp-bg {
  background:#fff!important;
  opacity: .95!important;
  filter: Alpha(Opacity=95)!important;
}
.mfp-title,
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: rgb(62, 63, 77)!important;
}
.mfp-counter {
  color: #FA7B26!important;
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background-color: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  border-radius: 8px;
}
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 50px;
  outline: 0;
  z-index:3000;
  width:calc(100% - 30px)!important;
  height:auto!important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}
.ui-widget-content:not(.ui-dialog-content) {
  background:#fff!important;
  border:none!important;
  padding:30px 50px;
  text-align:left;
  border-radius: 10px;
}
.ui-widget-header {
  border: none!important;
  background: transparent!important;
}
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 0em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  display: inline-block;
  white-space: nowrap;
  width: 90%;
  text-overflow: ellipsis;
  color:rgb(62, 64, 77);
  font-size: 2.5em;
  line-height: 1em;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  margin:0 0 0px;
  text-align: left;
}
.ui-dialog .ui-dialog-titlebar-close:before {
  content:"\f00d";
  font-family: "FontAwesome";
  font-size:30px;
  font-weight: normal;
  line-height: 60px;
}
.ui-dialog .ui-dialog-titlebar-close:focus {
  border:none!important;
  outline: none!important;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: -20px;
  top: 30px;
  width: 30px;
  margin: -45px 0 0 0;
  height: 40px;
  padding: 0px;
  opacity: 0.35;
  filter: alpha(opacity=35);
  color: rgb(62, 64, 77);
  cursor:pointer;
  text-transform:uppercase;
  border:none;
  background:transparent;
  font-style: normal;
  font-size: 0px;
  font-weight:normal!important;
}
.ui-dialog .ui-dialog-titlebar-close:hover {
  opacity: 1;
  filter: alpha(opacity=100); 
  border:none!important;
  outline: none!important;
}
.no-close .ui-dialog-titlebar-close {
  display:none;
}
.ui-dialog .form-title > span {
  font-size: 18px !important;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  overflow: auto;
  color: rgb(62, 64, 77);
}
.ui-dialog .ui-dialog-content .form-se-connecter {
  width:60%;
  margin:0 auto;
  text-align:left;
  padding-bottom:60px;
}
.ui-dialog #dialog-erreurs {
  background-color: #474543;
  border: 1px solid #282726;
  color: rgb(62, 64, 77);
}
.ui-dialog-content {
  width:auto;
}
.ui-dialog .ui-button-text {
    display: none;
}
.ui-dialog-content .content {
  background-color: transparent;
  color: rgb(62, 64, 77);
  margin-top: 0;
  min-height: auto;
  padding-top: 40px;
}
.ui-dialog-content .message span {
  color:#4D5D22!important;
}
.ui-dialog-content .message strong {
  font-weight: 800;
}
.ui-dialog-content .content .ajax-loading {
  font-size: 40px;
  font-weight: lighter;
}
.ui-dialog-content .login-submit,
.ui-dialog-content .forget-password {
  text-align:right;
}
.ui-dialog-content .forget-password {
  margin-top:-100px;
  font-size:0.8em;
}
.ui-dialog-content .forget-password a {
  text-decoration: underline;
}
.ui-dialog-content .erreur {
  color: #b21212;
  display: none;
  font-size: 0.8em;
  font-weight: bold;
  height: 16px;
  margin: 13px 0 0 7px;
  position: absolute;
  z-index: 10;
}
.ui-dialog-content .message-error,
.formulaire .message-error {
  color:#ff1a1a;
  font-size:14px;
  font-style:italic;
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
.formulaire input.error,
.formulaire textarea.error,
.formulaire .chosen-container.error,
.formulaire select.chosen.error {
  box-shadow: 0px 0px 2px 2px rgba(77, 93, 34,0.40);
}
.formulaire .site-message {
  margin-bottom:20px;
}
.ui-dialog-content iframe,
.ui-dialog-content .video-responsive {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
  background: #000;
}
.ui-dialog-content .caption {
  text-align: left;
  line-height: 18px;
  color: #EFEDE9;
  word-wrap: break-word;
  padding-right: 36px;  
  margin-top:5px;
}
.ui-dialog-content .caption small {
  color: #C4BCB0;
  display: block;
  font-size: 12px;
  line-height: 14px; 
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-dialog-content .form-container {
  margin:5px 0px 5px 0px;
}
.ui-dialog-content .form-container .form-buttons-footer {
  margin-bottom:0px;
  height:10px;
}
.ui-dialog .content,
.ui-dialog .dialog-content {
  padding:0;
  overflow:visible;
}
.ui-dialog #societe-label {
  display: none;
  font-weight: bold;
  letter-spacing: 4.56471px;
  text-transform: uppercase;
  color: #FA7B26;
  margin-bottom: 0px;  
}
.ui-dialog #offre-label {
  display: block;
  font-family: "Poppins",sans-serif;
  font-weight: 700;
  color: rgb(62, 64, 77);
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 1.25em;  
  line-height: 1.25em;
}
@media only screen and (min-width: 768px) {
  .ui-dialog {
    width:80%!important;
    height:auto!important;
  }
}

@media only screen and (min-width: 992px) {
  .ui-dialog {
    width:70%!important;
    height:auto!important;
    max-width:700px;
  }
}

@media only screen and (min-width: 1200px) {
  .ui-dialog {
    width:60%!important;
    height:auto!important;
  }
}

/*** RESPONSIVE A l'ENVERS ***/
@media only screen and (max-width:1499px) {
  body .page h2, 
  body .page .h2 {
    font-size: 2.375em;
  }
  a.button,
  .wpcf7-form .button-submit input[type="submit"] {
    font-size: 18px;
    padding: 20px 40px 20px 40px;
  }
  .button svg {
    margin-left: 30px;
  }
  .page-home .banner {
    height: 600px;
  }
  .page-home .legende {
    height: 400px;
    top: -400px;
    padding: 60px 40px;
  }
  .page-content h1,
  .page-home h1 {
    font-size: 38px!important;
  }
  .single-realisation h1 {
    line-height: 115%!important;
  }
  .subtitle {
    font-size: 22px;
  }
  .slick-slide img {
    width: auto;
    height: 600px;
    max-width: none;
  }  
  .page-home .banner .button {
    font-size: 20px;
    line-height: 20px;
    padding: 25px 35px;
  }
  .blocs-raccourcis .raccourci {
    padding: 70px 100px 70px;
  }
  .raccourci .button {
    height: 80px;
    line-height: 80px;
    padding: 0 30px;
  }
  .raccourci .button svg {
    margin-left: 30px;
  }
  .cadre-photo {
    height: 400px;
  }
  .bloc-realisation .description {
    padding: 30px;
  }
  .bloc-realisation .titre-container .titre,
  .bloc-actualite .h2, 
  .section-mise-en-avant .h2 {
    font-size: 24px!important;
    line-height: 24px!important;
  }
  .bloc-actualite .date, 
  .section-mise-en-avant .date, 
  .single-actu .date {
    font-size: 14px;
  }
  .page-qui-sommes-nous .texte-intro {
    max-width: 80%;
    font-size: 20px;
    padding: 30px 50px;
  }  
  .page-qui-sommes-nous .photo-0, 
  .page-qui-sommes-nous .photo-1, 
  .page-qui-sommes-nous .photo-2 {
    width: 86%;
  }  
  .section-collaborateurs .bloc-chiffre {
    font-size: 19px;
    padding-right: 65px;
  }
  .section-collaborateurs .bloc-texte {
    width: 100%;
  }
  .bloc-certification .description .h3 {
    font-size: 26px;
  }
  .bloc-certification .description {
    padding: 0px 25px;
  }
  .page-competences .section-header h1 {
    max-width: 70%;
  }
  .page-competences .section-header .texte {
    max-width: 80%;
  }
  .page-competences .section-professionnels .subtitle,
  .page-competences .section-particuliers .subtitle {
    font-size: 20px;
  }
  .page-competences .section-professionnels .column-text {
    padding-left: 80px;
  }
  .page-competences .section-professionnels .button-2,
  .page-competences .section-particuliers .button-2 {
    margin-left: -40px;
  }
  .page-competences .liste-competences a {
    padding: 20px 30px;
  }
  .bloc-filtres label, 
  .bloc-contact label,
  .bloc-caracteristique label, 
  .single-realisation .contactez-nous label {
    font-size: 18px;
  }
  .bloc-caracteristique .data, .bloc-contact .data {
    font-size: 16px;
  }
  .contact-formulaire {
    margin-top: 105px;
  }
  .chosen-container .chosen-single {
    font-size: 16px!important;
  }
  .chosen-container-single .chosen-single::after {
    font-size: 18px;
  }
  .chosen-container .chosen-results li {
    font-size: 15px;
  }
  .bloc-radio label {
    font-size: 14px;
  }
  footer .logo-footer {
    max-width: 200px;
  }
}

@media only screen and (max-width:1199px) {
  .page-content h1, .page-home h1 {
    font-size: 32px !important;
  }
  body {
    font-size: 14px;
  }
  body .page h1, body .page .h1 {
    margin-bottom: 30px;
  }
  body .page h2,
  body .page .h2,
  .ui-dialog .ui-dialog-title,
  body .page .contact-formulaire h2 {
   font-size:2em;
  }
  body .page h3,
  .ui-dialog #offre-label {
   font-size:1.25em;
  }
  .subtitle {
    font-size: 20px;
  }
  .page .texte {
    font-size: 1em;
  }
  a.link-1, a.link-2 {
    font-size: 1em;
  }
  .page blockquote {
    font-size: 1.25em;
  }
  .page blockquote cite {
    font-size: 0.875em;
  }
  a.button,
  .wpcf7-form .button-submit input[type="submit"] {
    font-size: 16px;
    padding: 15px 30px 15px 30px;
  }  
  .button svg {
    margin-left: 20px;
  }  
  .page-standard {
    padding-bottom: 100px;
  }
  .page-home .banner,
  .page-home .slick-slide img,
  .taxonomy-competence .section-header .cadre-photo,
  .single-realisation .section-header .cadre-photo {
    height: 500px;
  }  
  .page-home .banner .slider-navigation {
    width: calc(33.333% - 7.5px);
    left: calc(66.6666% + 7.5px);
    height: 70px;
    top: -70px;
  }
  .page-home .legende {
    width: calc(66.6666% - 7.5px);
  }
  .legende .page-background-line:nth-child(4) {
    display: block;
  }
  .legende .page-background-line:nth-child(4)::before {
    left: -3px;
  }
  .legende .page-background-line:nth-child(4)::after {
    left: 12px;
  }
  .page-home .slider-navigation a {
    width: calc(50% - 10px);
  }
  .page-home .slider-navigation a:last-child {
    width: calc(50% - 4px);
  }
  .page-home .legende {
    height: 300px;
    top: -300px;
    padding: 40px 40px;
  }  
  .page-home .banner .button {
    font-size: 18px;
    line-height: 18px;
    padding: 20px 30px;
  }
  .blocs-raccourcis .raccourci {
    padding: 50px 60px 50px;
  }
  .raccourci .button {
    height: 70px;
    line-height: 70px;
    padding: 0 25px;
  }
  .raccourci .button svg {
    margin-left: 20px;
  }
  .motifs svg {
    max-height: 600px;
  }
  .motifs {
    left: -200px;
    top: -200px;
  }
  .cadre-photo {
    height: 300px;
  }
  .bloc-realisation .titre-container .titre, .bloc-actualite .h2, .section-mise-en-avant .h2 {
    font-size: 22px !important;
    line-height: 22px !important;
  }
  .bloc-realisation .description {
    padding: 25px;
  }
  .bloc-realisation .titre-container {
    margin-bottom: 20px;
  }
  .bloc-realisation .description {
    min-height: 300px;
  }
  .page-qui-sommes-nous .texte-intro {
    max-width: 100%;
    font-size: 18px;
    padding: 20px 40px;
  }  
  .section-interne {
    padding: 60px 0;
  }
  .section-collaborateurs .bloc-chiffre {
    font-size: 16px;
    padding-right: 45px;
  }  
  .bloc-certification .description .h3 {
    font-size: 22px;
  }  
  .page-competences .section-header {
    padding-top: 0px;
  }  
  .page-competences .section-header .motifs {
    top: auto;
    bottom: -350px;
    right: 0;
    left: auto;
  }
  .page-competences .section-professionnels  {
    margin-top: 140px;
  }
  .page-competences .section-professionnels .column-text {
    padding-left: 70px;
  }  
  .page-competences .section-professionnels .button-2, 
  .page-competences .section-particuliers .button-2 {
    margin-left: -30px;
  }
  .page-competences .slider-navigation {
    bottom: 20px;
  }
  .page-competences .liste-competences a {
    padding: 15px 20px;
  }  
  .taxonomy-competence .photos.col-nb-3 .cadre-photo {
    width: calc(33.3333% - 7.5px);
    margin: 0 7.5px;
  }
  .taxonomy-competence .photos .cadre-photo:first-child {
    margin-left: 0;
  }
  .taxonomy-competence .photos .cadre-photo:last-child {
    margin-right: 0;
  }
  .section-contact {
    padding-top: 100px;
  }
  .section-contact .column-1 {
    padding: 0 20px 0 0;
  }  
  .bloc-filtres label, 
  .bloc-contact label, 
  .bloc-caracteristique label, 
  .single-realisation .contactez-nous label {
    font-size: 16px;
  }
  .bloc-caracteristique .data, .bloc-contact .data {
    font-size: 14px;
    margin-left: 34px;
  }  
  .section-contact .bloc-contact {
    padding-right: 40px;
    margin-bottom: 40px;
  }  
  .bloc-filtres label svg, .bloc-contact label svg {
    margin-right: 15px;
  }  
  .contact-formulaire {
    margin-top: 80px;
  }
  .wpcf7-form label span:not(.wpcf7-form-control-wrap):not(.wpcf7-not-valid-tip):not(.file-custom) {
    font-size: 14px;
  }
  .wpcf7-form input, .wpcf7-form textarea {
    padding: 10px 20px;
    font-size: 14px;
  }
  .wpcf7-form label {
    margin-bottom: 40px;
  }
  .section-contact .column-2 .cadre-photo {
    height: 312px;
  }
  .bloc-actualite .category, 
  .section-mise-en-avant .category, 
  .single-actu .category {
    width: 170px;
    font-size: 15px;
  }
  .bloc-marche .bloc-checkbox {
    padding: 30px;
  }
  .bloc-checkbox input[type="checkbox"] {
    left: 30px;
  }
  .chosen-container .chosen-single {
    font-size: 14px!important;
  }
  .chosen-container-single .chosen-single::after {
    font-size: 16px;
  }
  .chosen-container .chosen-results li {
    font-size: 14px;
  }
  .bloc-radio label {
    font-size: 13px;
  }
  .single-actu .section-header .cadre-photo, 
  .single-realisation .section-header .cadre-photo {
    height: 500px;
  }
  .realisation-navigation .colonne-gauche a, .realisation-navigation .colonne-droite a {
    font-size: 16px;
  }
  footer .logo-footer {
    max-width: 180px;
  }
  footer .title,
  footer .address,
  footer .phone,
  footer .mail {
    font-size: 14px;
  }
  footer .copyrights {
    font-size: 12px;
  }
}

@media only screen and  (max-width:991px) {
  .page-content h1, .page-home h1 {
    font-size: 28px !important;
  }
  body {
    font-size: 14px;
  }
  body .page h1, body .page .h1 {
    margin-bottom: 20px;
  }
  body .page h2,
  body .page .h2,
  .ui-dialog .ui-dialog-title,
  body .page .contact-formulaire h2 {
   font-size:1.75em;
  }
  .subtitle {
    font-size: 18px;
  }
  .page .texte {
    font-size: 1em;
  }
  a.link-1, a.link-2 {
    font-size: 1em;
  }
  .page blockquote {
    font-size: 1.25em;
  }
  .page blockquote cite {
    font-size: 0.875em;
  }
  a.button,
  .wpcf7-form .button-submit input[type="submit"] {
    font-size: 14px;
    padding: 10px 20px 10px 20px;
  }  
  .button svg {
    margin-left: 10px;
  }  
  .motifs svg {
    max-height: 500px;
  }
  .page-home .banner,
  .page-home .slick-slide img,
  .taxonomy-competence .section-header .cadre-photo,
  .single-realisation .section-header .cadre-photo,
  .single-actu .section-header .cadre-photo {
    height: 400px;
  }  
  .page-home .legende {
    height: 250px;
    top: -250px;
    padding: 40px 30px;
  }
  .blocs-raccourcis .raccourci {
    padding: 40px 40px 40px;
  }  
  .raccourci .texte strong {
    font-size: 30px;
  }
  .raccourci .texte {
    margin-bottom: 50px;
  }
  .raccourci .button {
    padding: 0 20px;
  }
  .liste-realisations ul:not(.pagination) li,
  .liste-actualites ul:not(.pagination) li {
    padding: 0!important;
  }
  .bloc-realisation {
    margin-bottom: 40px;
  }
  .bloc-realisation .description {
    min-height: 200px;
  }  
  .dernieres-realisations .call-to-action {
    margin: 40px 0 0px;
  }
  .dernieres-actualites .liste-actualites li {
    max-width: 100%!important;
  } 
  .dernieres-actualites .liste-actualites li .category {
    width: calc(33% - 4px)!important;
  }  
  .dernieres-realisations .call-to-action .button,
  .dernieres-actualites .call-to-action .button {
    margin-right: calc(16.6666% - 4px);
  }
  .dernieres-actualites .call-to-action {
    text-align: right;
  }
  .dernieres-actualites .call-to-action .button {
    position: relative;
    right: auto;
    top: auto;
  }  
  .bloc-actualite .cadre-photo {
    height: 240px !important;
  }
  .page-qui-sommes-nous .column-text,
  .page-qui-sommes-nous .column-photos,
  .section-contact .column-1,
  .section-contact .column-2 {
    padding: 0;
  }
  .page-qui-sommes-nous .column-photos {
    padding-top: 40px;
  }
  .page-qui-sommes-nous .photo-0,
  .page-qui-sommes-nous .photo-1, 
  .page-qui-sommes-nous .photo-2 {
    width: 100%;
  }
/*
  .page-qui-sommes-nous .photo-1, .page-qui-sommes-nous .photo-2 {
    width: calc(50% - 7.5px);
    height: 300px;
  }
  .page-qui-sommes-nous .photo-2 {
    margin-left: 15px;
  }
*/
  .page-qui-sommes-nous .section-banner {
    padding-top: 100px;
  }
  .page-qui-sommes-nous .section-banner .cadre-photo {
    height: 300px;
  }
  .section-collaborateurs .collaborateurs-chiffres {
    flex-wrap: wrap;
  }
  .section-collaborateurs .col-12, 
  .section-certifications .col-12, 
  .dernieres-realisations .col-titre {
    margin: 0;
    padding: 0;
  }
  .section-certifications .liste-certifications {
    flex-wrap: wrap;
  }
  .liste-certifications .bloc-certification {
    margin: 0 0 40px;
    width: 100%;
  }
  .bloc-certification .logo {
    height: 150px;
  }
  .page-competences .section-header .motifs {
    bottom: -220px;
    right: -100px;
  }
  .page-competences .slider-competences li {
    height: 450px;
  }
  .page-competences .column-slider {
    padding: 0 40px 0 0;
  }
  .page-competences .slider-navigation {
    right: -10px;
  }
  .page-competences .section-professionnels .column-text {
    padding-left: 0;
    padding-top: 40px;
  }
  .page-competences .section-professionnels .button-2, 
  .page-competences .section-particuliers .button-2 {
    margin-left: -20px;
  }
  .page-competences .liste-competences {
    flex-wrap: wrap;
  }
  .page-competences .liste-competences .competence {
    margin-bottom: 20px;
  }
  .page-competences .section-professionnels {
    padding: 80px 0 40px;
  }
  .page-competences .section-particuliers .column-slider {
    padding: 0 0 0 40px;
  }
  .page-competences .section-particuliers .slider-navigation {
    left: -10px;
  }
  .page-competences .section-particuliers .column-text {
    padding: 40px 0 0 40px;
  }
  .page-competences .section-particuliers {
    padding-bottom: 40px;
  }
  .page-realisations h1, .page-actualites h1 {
    margin-top: 60px;
  }
  .section-header {
    padding-bottom: 0px;
  }
  .section-mise-en-avant .cadre-photo {
    height: 340px;
  }
  .section-mise-en-avant .col-12:first-child,
  .section-mise-en-avant .col-12:last-child,
  .section-mise-en-avant .description {
    padding: 0;
  }
  .section-mise-en-avant .h2,
  .section-mise-en-avant .resume,
  .section-mise-en-avant .date {
    padding-left: 30px;
  }
  .page-actualites .liste-actualites li:nth-child(2n+1) {
    padding-right: 7.5px!important;
  }
  .page-actualites .liste-actualites li:nth-child(2n+2) {
    padding-left: 7.5px!important;
  }
  .single-actu .liste-photos {
    margin-bottom: 0;
  }
  .page-actualites .section-interne.liste-resultats {
    z-index: 2;
  }
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1),
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1) {
    padding-right: 7.5px!important;
  }
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2),
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2) {
    padding-left: 7.5px!important;
  }
  .section-realisations .liste-realisations .bloc-realisation .description,
  .page-realisations .liste-realisations .bloc-realisation .description {
    min-height: 270px;
  }  
  .taxonomy-competence .call-to-action {
    padding: 60px 0 40px;
  }
  .single-realisation .section-header .cadre-photo .marche {
    font-size: 20px;
    padding: 16px;
  }
  .single-realisation .contactez-nous label {
    width: 100%;
  }
  .single-realisation .liste-photos {
    padding: 0 15px;
    margin-top: 40px;
  }
  .single-realisation .liste-photos .cadre-photo {
    height: 400px;
  }
  .realisation-navigation .colonne-gauche a, .realisation-navigation .colonne-droite a {
    font-size: 14px;
  }
  .bloc-marche .bloc-checkbox {
    padding: 20px;
    font-size: 18px;
    min-width: 40%;
  }
  .page-realisations .bloc-filtres {
    flex-wrap: wrap;
  }
  .page-realisations .bloc-filtres .bloc-categorie {
    margin-top: 40px;
  }
  .bloc-checkbox input[type="checkbox"] {
    left: 20px;
  }  
  .section-contact .elements-contact {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  body .page h1, body .page .h1 {
    font-size: 1.875em;
  }
  body .page h2,
  body .page .h2,
  .ui-dialog .ui-dialog-title {
   font-size:1.5em;
  }
  .subtitle {
    font-size: 0.875em;
  }
  .page-content h1, .page-home h1 {
    font-size: 24px !important;
  }
  .section-interne {
    padding: 40px 0;
  }  
  .single-realisation .liste-photos .cadre-photo,
  .cadre-photo {
    height: 250px;
  }  
  .page-home .legende {
    padding: 30px 20px;
    height: 225px;
    top: -225px;
  }
  .page-home .banner .button {
    font-size: 16px;
    line-height: 16px;
    padding: 15px 20px;
  }
  .page-home .banner .slider-navigation  {
    height: 50px;
    top: -50px;
  }
  .section-presentation {
    padding-top: 80px;
  }
  .blocs-raccourcis {
    padding-top: 80px;
  }
  .section-presentation .liste-paragraphes {
    flex-wrap: wrap;
  }
  .section-presentation .paragraphe {
    padding: 0;
  }
  .blocs-raccourcis .w-50 {
    margin: 0 auto 40px!important;
    width: 100%!important;
  }
  .blocs-raccourcis .w-50:last-child {
    margin-bottom: 0!important;
  }
/*
  .page-qui-sommes-nous .photo-1, .page-qui-sommes-nous .photo-2  {
    height: 200px;
  }
*/
  .section-collaborateurs .bloc-chiffre {
    padding-right: 40px;
  }
  .section-collaborateurs .bloc-texte {
    column-count: 1;
  }
  .page-competences .slider-competences li {
    height: 400px;
  }
  .taxonomy-competence .section-header .texte,
  .page-realisations h1, 
  .page-actualites h1 {
    max-width: 80%;
  }
  .taxonomy-competence .photos.col-nb-3 .cadre-photo {
    width: calc(33.3333% - 5px);
    margin: 0 5px;
  }
  .taxonomy-competence .photos .cadre-photo:first-child {
    margin-left: 0;
  }
  .taxonomy-competence .photos .cadre-photo:last-child {
    margin-right: 0;
  }
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1), 
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1),
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2), 
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2) {
    padding: 0!important;
  }
  .section-realisations .liste-realisations .bloc-realisation .description, 
  .page-realisations .liste-realisations .bloc-realisation .description {
    min-height: 240px;
  }
  .section-mise-en-avant .cadre-photo {
    height: 300px;
  }  
  .page-actualites .liste-actualites li:nth-child(2n+1),
  .page-actualites .liste-actualites li:nth-child(2n+2) {
    padding: 0!important;
  }
  .bloc-actualite .category, 
  .section-mise-en-avant .category, 
  .single-actu .category {
    width: 174px;
  }
  .page-realisations .bloc-filtres .bloc-client {
    margin-top: 40px;
  }  
  .realisation-navigation .button {
    padding: 15px 20px;
  }
  footer .logo-footer {
    margin-bottom: 0px;
    max-width: 180px;
  }
  footer .logo-footer img {
    max-width: 120px;
  }
  footer .column-2 {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .wrapper {
    overflow: hidden;
  }
  body .page .banner .h1 {
    margin-bottom: 30px;
  }
  .page-content h1, .page-home h1 {
    font-size: 24px !important;
  }
  .motifs svg {
    max-height: 400px;
  }  
  .page-home .banner .button {
    font-size: 14px;
  }  
  .page-home .banner .slider-navigation {
    display: none!important;
  }
  .page-home .legende {
    margin: 0 15px;
    width: calc(100% - 30px);
    top: -70px;
    padding: 30px;
    height: auto;
    z-index: 10;
  }
  .legende .page-background {
    padding-left: calc(16.6666% - 10px);
    padding-right: calc(16.6666% - 10px);
  }
  .legende .page-background-line:first-child::before,
  .legende .page-background-line:last-child::before,
  .legende .page-background-line:nth-child(2)::before,
  .legende .page-background-line:nth-child(3)::before,
  .legende .page-background-line:nth-child(4)::before {
    left: -7.5px;
  }
  .legende .page-background-line:first-child::after,
  .legende .page-background-line:last-child::after,
  .legende .page-background-line:nth-child(2)::after,
  .legende .page-background-line:nth-child(3)::after,
  .legende .page-background-line:nth-child(4)::after {
    left: 7.5px;
  }
  .section-presentation {
    padding-top: 200px;
  }
  .section-presentation .bg-white {
    margin: 0;
  }
  .blocs-raccourcis {
    padding: 80px 15px 80px;
  }
  .dernieres-realisations .col-titre {
    padding: 0 15px;
  }
  .page-home .slider-navigation a:last-child {
    width: calc(50% - 6px);
  }
  .page-home .banner,
  .page-home .slick-slide img,
  .taxonomy-competence .section-header .cadre-photo,
  .single-realisation .section-header .cadre-photo,
  .single-actu .section-header .cadre-photo {
    height: 300px;
  }
  .liste-realisations ul:not(.pagination) li:nth-child(3n+1),
  .liste-realisations ul:not(.pagination) li:nth-child(3n+3),
  .liste-realisations ul:not(.pagination) li,
  .liste-actualites ul:not(.pagination) li,
  .dernieres-actualites .liste-actualites li:nth-child(3),
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1), 
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+1),
  .section-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2), 
  .page-realisations .liste-realisations ul:not(.pagination) li:nth-child(2n+2),
  .page-actualites .liste-actualites li:nth-child(2n+1), 
  .page-actualites .liste-actualites li:nth-child(2n+2)  {
    padding: 0 15px!important;
  }
  .taxonomy-competence .photos.col-nb-3 .cadre-photo {
    width: calc(33.3333% - 2.5px);
    margin: 0 2.5px;
  }
  .taxonomy-competence .photos .cadre-photo:first-child {
    margin-left: 0;
  }
  .taxonomy-competence .photos .cadre-photo:last-child {
    margin-right: 0;
  }
  .page-qui-sommes-nous .column-text, 
  .page-qui-sommes-nous .column-photos, 
  .section-contact .column-1, 
  .section-contact .column-2 {
    padding: 0 15px;
  }    
  .page-qui-sommes-nous .column-photos {
    padding-top: 40px;
  }
  .liste-certifications .bloc-certification {
    flex-direction: column;
  }
  .bloc-certification .description {
    padding: 20px 0;
  }
  .section-collaborateurs .col-12, 
  .section-certifications .col-12, 
  .dernieres-realisations .col-titre,
  .page-competences .column-text {
    padding: 0 15px;
  }  
  .page-competences .call-to-action a:first-child {
    margin-bottom: 40px;
  }
  .page-competences .column-slider {
    padding: 0 60px 0 0;
  }  
  .page-competences .section-particuliers .column-slider {
    padding: 0 0 0 60px;
  }  
  .page-competences .section-professionnels .column-text,
  .page-competences .liste-competences {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-competences .slider-navigation {
    right: 10px;
    bottom: 0;
  }  
  .page-competences .section-particuliers .slider-navigation {
    left: 5px;
  }  
  .page-competences .slider-competences li {
    height: 300px;
  }  
  .page-competences .section-particuliers .column-text {
    padding: 40px 15px 0 60px;
  }  
  .single-realisation .description {
    padding: 0 15px;
  }
  .single-realisation .section-header .cadre-photo .marche {
    font-size: 17px;
    padding: 14px 10px;
  }  
  .single-realisation .section-header .cadre-photo .marche {
    width: calc(33% + 11px);
  }
  .caracteristiques .bloc-caracteristique:nth-child(2n+1) {
    padding-right: 10px;
  }
  .caracteristiques .bloc-caracteristique:nth-child(2n+2) {
    padding-right: 0;
  }
  .bloc-caracteristique label svg {
    margin-right: 10px;
  }
  .realisation-navigation .colonne-gauche a svg {
    margin-right: 10px;
  }  
  .realisation-navigation .colonne-droite a svg {
    margin-left: 10px;
  }  
  .realisation-navigation .button {
    padding: 10px 15px;
  }
  .realisation-navigation .colonne-gauche a, .realisation-navigation .colonne-droite a {
    font-size: 13px;
  }  
}
@media only screen and (max-width: 499px) {
  .bloc-certification .description {
    padding: 20px 0px;
  }
  .bloc-certification .logo,
  .bloc-certification img {
    max-height: 120px;
    max-width: 120px;
  }  
  .bloc-certification .description .soustitre {
    font-size: 16px;
  }
  .bloc-certification .description .h3 {
    font-size: 18px;
  }
  .taxonomy-competence .call-to-action a:first-child {
    margin-bottom: 40px;
  }
  .section-contact .bloc-contact {
    width: 100%;
  }
  .cadre-photo {
    height: 250px;
  }  
  .page-realisations .bloc-marche {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .bloc-marche .bloc-checkbox {
    width: 80%;
    margin-bottom: 40px;
  }
  .single-realisation .section-header .cadre-photo .marche {
    width: calc(50% - 6px);
  } 
  .realisation-navigation .button {
    font-size: 13px;
    padding: 10px 5px;
  }
  .realisation-navigation .navigation {
    margin: 0 -10px;
  }
}
@media only screen and (max-width: 449px) {
  .page-home .legende {
    padding: 20px;
  }
  .dernieres-actualites .liste-actualites li .category {
    width: calc(33% + 10px) !important;
  }
  .realisation-navigation .colonne-gauche a svg {
    margin-right: 5px;
    max-width: 15px;
  }  
  .realisation-navigation .colonne-droite a svg {
    margin-left: 4px;
    max-width: 15px;
  }
  .realisation-navigation .button {
    font-size: 12px;
    padding: 10px 3px;
  }
  .realisation-navigation .colonne-gauche a, .realisation-navigation .colonne-droite a {
    font-size: 12px;
  }  
}
@media only screen and (max-width: 399px) {
  .dernieres-actualites .liste-actualites li .category {
    width: calc(50% - 7px) !important;
  }
  .bloc-certification .logo,
  .bloc-certification img {
    max-height: 100px;
    max-width: 100px;
  }  
  .bloc-certification .description .soustitre {
    font-size: 14px;
  }
  .bloc-certification .description .h3 {
    font-size: 16px;
  }
}

@media only print {
  h1 {
    font-size: 2.5em;
  }
  header,
  .container-actions,
  .actus-similaires,
  footer {
    display: none;
  }
}