/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*style*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Calibri", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

:root {
  --body : #ffffff;
  --white : white;
  --black : black;
  --light : #cbccc4;
  --colorP : #003a64;
  --colorS  : #ff0010;
}
body {
    margin: 0;
    font-family: "Calibri", sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    background-color: #ffffff;
    color: #444444;
    -webkit-font-smoothing: antialiased;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
    color: inherit;
  background-color: transparent;
  text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}
img {
  vertical-align: middle;
  border-style: none;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
h1, h2, h3,
.h1, .h2, .h3 {
  margin-bottom: 0.5rem;
  font-family: "Calibri", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}
h1 {
    font-size: 30px;
}
h2, .h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
}
h3, .h3 {
    font-size: 18px;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1340px;
    }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
textarea.form-control {
  height: 125px;
  resize:vertical;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.flex-block {
  display: -ms-flexbox !important;
  display: flex !important;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#mail,
#mail2 {
    display: none;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

/*
Nav
*/
#header {
    width: 100%;
    position: absolute;
    z-index: 90;
}
.realisations #header,
.mentions #header,
.temoignages #header,
.contact #header {
    background: var(--black);
    position: relative;
}
@media (min-width: 1200px) {
    #header .container {
        max-width: 1400px;
    }
}
.Tablet #header,
.Mobile #header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.adresseTop,
.telTop {
    display: inline-block;
    vertical-align: middle;
}
.Tablet .telTop {
  color: black;
  font-weight: 600;
  font-size: 20px;
}
.adresseTop img,
.telTop img {
    filter: invert(1);
    margin-right: 9px;
}

.adresseTop {
    margin-right: 2rem;
    color: var(--white);
}
.Mobile .logo img {
    width: 180px;
}
.telTop {
    color: var(--white);
    display: flex;
}
.telTop em {
    margin: 0 15px;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-list {
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: flex-end;
}
.Desktop .nav-list {
    border-top: 1px solid var(--colorS);
    margin-top: 1rem;
}
.Desktop .topRight {
    width: 80%;
}
.Tablet .topRight .d-flex {
    align-items: center;
}
.nav-item {
    display: table-cell;
    padding: 15px;
    position: relative;
}
.nav-item > a {
    color: var(--white);
    line-height: 130%;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}
.nav-item:hover > a,
.nav-item.active > a {
    color: var(--colorS);
}

.nav-submenu {
    width: 250px;
  display: none;
  position: absolute;
  list-style: none;
  padding-left: 0;
  background: white;
  top: 100%;
  z-index: 2;
}
.nav-item:hover .nav-submenu {
  display: block;
}
.nav-submenu-item {
    text-align: left;
    padding: 0 10px;
}
.nav-submenu-item > a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    line-height: 130%;
    border-bottom: 1px dashed #c0c0c0;
    color: black;
}
.nav-submenu-item:last-child > a {
    border-bottom: none;
}
.nav-submenu-item:hover > a,
.nav-submenu-item.active > a {
    color: var(--colorS);
}
.nav-mobile {
  display: none;
  cursor: pointer;
  background: var(--colorS) url(../images/nav.svg) no-repeat center center;
  background-size: 18px;
  height: 50px;
  width: 50px;
}
.Tablet .nav-mobile {
  margin-left: 5rem;
}
.nav-click {
  position: absolute;
  top: 21px;
  right: -4px;
  cursor: pointer;
  z-index: 100;
}

.nav-click i {
  display: block;
  background: url(../images/drop.svg) no-repeat center center;
  background-size: contain;
  width: 14px;
    height: 14px;
}

.nav-rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.telMobile {
    background: var(--white);
    text-align: center;
}
.telMobile a {
  display: inline-block;
  padding: 12px 0;
  margin: 0 7px;
  font-weight: 600;
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media only screen and (max-width: 991px) {
  .nav-mobile {
    display: block;
  }
  .nav .container {
    padding-left: 0;
    padding-right: 0;
  }
  .nav-list {
    display: none;
    padding-left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
  }

  .nav-item {
    padding: 0;
    display: block;
    background: var(--black);
  }

  .nav-item > a {
    padding: 15px;
    text-align: left;
    padding-right: 3rem;
  }

  .nav-click {
    border-left: 1px solid #ffffff;
    top: 0;
    right: 0;
    width: 50px;
  }
    .nav-click i {
        background-size: 20px;
      display: block;
      height: 48px;
      width: 48px;
    }

  .nav-mobile-open {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
  }

  .nav-item:hover .nav-submenu {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
  }
}

/*
Homeslider
*/
.homeslider {
    position: relative;
}
.imgSlide { 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    position: relative;
}
.Mobile .imgSlide {
    height: 600px;
}
#PageInterne .imgSlide {
    height: 500px;
}
.imgSlide::before {
    content: "";
    background: black;
    position: absolute;
    opacity: .4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.imgFull .slick-arrow {
    cursor: pointer;
    background: var(--white);
    width: 60px;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    opacity: .5;
    border: 0;
    text-indent: -9999px;
}
.imgFull .slick-arrow::after {
    content: "";
    background-image: url(../images/img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 30px;
    height: 30px;
}
.imgFull .slick-arrow:hover {
    opacity: 1;
}
.imgFull .slick-prev {
    left: 5%;
    transform: translateX(-50%);
}
.imgFull .slick-next {
    right: 5%;
    transform: translateX(-50%);
}
.imgFull .slick-prev::after {
    transform: rotate(-180deg);
    margin-right: 7px;
}
.captionSlide {
    position: absolute;
    max-width: 700px;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media(min-width: 1800px) {
    .captionSlide {
        left: 30%;
    }
}
.Tablet .captionSlide {
    left: 50%;
    width: 63%;
}
.Mobile .captionSlide {
    width: 90%;
    left: 50%;
    top: 63%;
}
span.Subtitle {
    font-weight: bold;
    font-size: 2.5rem;
    display: block;
    line-height: 130%;
    margin-bottom: 0;
    color: var(--colorS);
}
.Mobile span.Subtitle {
    font-weight: bold;
    font-size: 28px;
    display: block;
    line-height: 130%;
    margin-bottom: 0;
    color: var(--colorS);
}
.titre_ {
    line-height: 130%;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    margin-top: 0;
    color: var(--white);
}
.Tablet .titre_ {
    font-size: 2.5rem;
}
.Mobile .titre_ {
    font-size: 1.5rem;
}
.box_btn a.btn,
.btn-form-devis {
    margin-right: 20px;
    border: 1px solid transparent;
    padding: 20px 35px 20px 35px;
    font-weight: bold;
    transition: all .3s ease;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: scale(1.0);
    display: inline-block;
    cursor: pointer;
}
.btn-form-devis {
    width: 100%;
}
.box_btn a.btn:hover,
.btn-form-devis:hover {
    background: none;
    transform: scale(0.9);
    color: var(--white);
}
.btn-form-devis:hover,
.Block.Block3 .box_btn a.btn:hover {
    color: var(--black);
}
.box_btn a.btn img {
    margin-top: -3px;
    margin-left: 1rem;
}
.box_btn a.btn:hover img {
    filter: invert(1);
}
.Block.Block3 .box_btn a.btn:hover img {
    filter: inherit;
}
.box_btn a.btn-contact,
.btn-form-devis {
    background: var(--colorS);
}
.box_btn a.btn-contact:hover,
.btn-form-devis:hover {
    border-color: var(--colorS);
}


.Mobile .box_btn a.btn {
    display: block;
    text-align: center;
    margin: 15px 0;
    padding: 10px;
}
.bulle_contact {
    background: var(--colorS);
    position: relative;
    z-index: 10000;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    padding: 5px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: _or 1s ease-in-out infinite alternate;
}

@keyframes _or {
    to {
        transform: scale(1.08)
    }
}

/*
Contact popup
*/
.popupContact {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 9999;
}
.slide_in {
    font-size: 16px;
    background: var(--white);
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 15px #0000005c;
    box-shadow: 0px 0px 15px #0000005c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    border: 8px solid #fff;
    width: 400px;
    position: absolute;
    bottom: 5rem;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
}
.slide_in.open-form {
    opacity: 1;
    visibility: visible;
}
.head_slidine {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #fff;
    border: 2px solid;
    padding: 3px 9px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}
.titleslide {
    font-size: 28px;
    color: var(--black);
    font-weight: 700;
}
.p_slidein {
    margin-top: 7px;
    color: var(--black);
}
hr.sep_slide {
    width: 25%;
    height: 2px;
    background-color: var(--colorS);
    border: none;
    margin-left: 0px;
}
.infos_site {
    margin-top: 25px;
}
.infos_site  .flex-info {
    border-bottom: 1px dashed #b5b5b5;
    padding-bottom: 2rem;
}
.flex-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.content-info,
.content-info a {
    color: var(--black);
}
.content-info em {
    margin: 0 7px;
}
.butcontact_slide {
    padding: 12px 10px 14px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--colorS);
    color: var(--white);
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;
}
.flex-info span:first-child {
    max-width: 35px;
    flex: 0 0 35px;
    margin-right: 7px;
    text-align: center;
}
.ContactezNous #FormDevis .form-control {
    margin: 5px 0;
}
.Mobile .rappel-gratuit {
    text-align: center;
    margin-top: 1rem;
}
.rappelBlock {
    padding-left: 100px;
    position: relative;
}
.Mobile .rappelBlock {
    padding-left: 0;
    text-align: center;
}
.rappelBlock::before {
    content: "";
    position: absolute;
    left: 0;
    background-image: url(../images/call.webp);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    border: 2px solid var(--colorS);
    height: 90px;
    width: 90px;
    top: 7px;
}
.Mobile .rappelBlock::before {
    position: static;
    display: block;
    margin: auto auto 1rem;
}

#rappel_immediat .form-control {
    font-size: 12px;
    border-radius: 25px;
    padding: 6px 15px;
    height: auto;
    position: relative;
}
.Mobile #rappel_immediat .form-control {
    text-align: center;
    padding: 14px 15px;
}
.btn-devis-gratuit {
    background-color: var(--black);
    color: var(--white);
    border-radius: 25px;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: .2rem;
    cursor: pointer;
}
.rappelBlock b {
    display: block;
    margin-bottom: 1px;
    margin-left: 6px;
    color: var(--black);
}

/*
Content
*/
.Block.Block0 .BlockUne {
    padding-top: 40px;
}
.Mobile .Devisgratuit {
    padding: 20px;
    background: #ebebeb;
}
.Mobile .Devisgratuit .form-control {
    margin: 5px 0;
}
.Mobile input.btn.btn-submit {
    border: 0;
    background: var(--colorS);
    display: block;
    width: 100%;
    padding: 17px;
    border-radius: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.Devisgratuit-h3 {
    font-weight: bold;
    color: var(--black);
    font-size: 20px;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.Devisgratuit-h3 span {
    display: flex;
    margin: 0 auto 1rem;
    width: 90px;
    height: 90px;
    background-color: var(--colorS);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.Devis_gratuitBlock {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 0 16px 0px rgb(0 0 0 / 20%);
    margin-top: -10rem;
    margin-left: 5rem;
}
.Tablet .Devis_gratuitBlock {
    padding: 20px;
    margin-left: 0;
}
.Devis_gratuitBlock .form-control {
    padding: 10px 15px;
    height: auto;
    margin-bottom: 10px;
    font-size: 14px;
}
.Devis_gratuitBlock textarea.form-control {
    height: 100px;
    max-height: 125px;
}
.Devis_gratuitBlock .form-control:focus {
    border-color: var(--colorS);
    outline: none;
    box-shadow: none;
}
.logoDivers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-top: 2rem;
}
.logoDivers img {
    display: block;
    margin: auto;
}

.Block.Block2 {
    padding: 60px 0;
    background: #e0e0e0;
    margin-top: 60px;
}
.nos_services_item {
    border-top: 1px dashed var(--white);
    padding-top: 3rem;
    margin-top: 1rem;
}
.Block.Block3 {
    padding: 60px 0;
}
.Block.Block3 .BlockUne {
    text-align: center;
    margin-bottom: 2rem;
}
.Block.Block3 .box_btn {
    text-align: center;
}

.Block.Block4 {
    padding: 60px 0;
    position: relative;
    background-color: #003366;
    color: var(--white);
}
.Mobile .Block.Block4 {
    padding-top: 0;
}
.Block.Block4 h2 {
    color: var(--colorS);
}
.bgImg3 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    opacity: .8;
}
.Mobile .bgImg3 {
    width: 100%;
}
.bgImg4 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
}
.Mobile .bgImg4 {
    position: relative;
    width: 100%;
    height: 250px;
}
.Block.Block6 {
    padding: 60px 0;
}
.Block.Block6 figure img {
    width: 100%;
    height: 250px;
    display: block;
    background: #ddd;
    object-fit: cover;
}
.grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.Tablet .grid-row {
  grid-template-columns: repeat(1, 1fr); 
}
.Mobile .grid-row {
    display: block;
}
.Desktop .grid-row > div {
    height: 100%;
    margin: 0;
}
.grid-row > div {
    height: 100%;
    margin: 0 10px;
}
.Mobile .grid-row > div {
    height: auto;
    margin: 15px 0;
}

.item_text {
    box-shadow: 9.899px 9.899px 30px 0 rgba(0,0,0,.1);
    background-color: var(--white);
    padding: 20px;
    height: 100%;
}
.item_text figure {
    margin: 0;
}
.item_text p {
    font-size: 14px;
    line-height: 150%;
    text-align: justify;
}
.Block.Block10 {
    margin-bottom: 60px;
}

.cat-box {
    background: white;
    margin: 15px 0;
    border-radius: 15px;
    overflow: hidden;
}
.cat-box a {
    display: block;
    position: relative;
}
.cat-box img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
}
span.catItem-h3 {
    display: flex;
    align-items: center;
    background: #003366;
    color: white;
    justify-content: center;
    text-align: center;
    padding: 15px;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    height: 82px;
    width: 100%;
    transition: all .3s ease;
    z-index: 8;
}
.Tablet span.catItem-h3 {
  letter-spacing: 0;
  font-size: 12px;
}
.Mobile span.catItem-h3 {
    position: static;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 130%;
    padding: 5px;
}
.cat-box a.active span.catItem-h3,
.cat-box a:hover span.catItem-h3  {
    background: var(--colorS);
    color: var(--black);
}


.Desktop .categories-villes {
    padding-bottom: 60px;
}
.categories-villes .container {
    position: relative;
}
.Tablet .categories-villes .container,
.Mobile .categories-villes .container {
    display: flex;
    flex-direction: column-reverse;
}
.categories-villes #Map {
    width: 32%;
    height: 100%;
    position: absolute !important;
    left: 0;
}
.Tablet .categories-villes #Map, .Mobile .categories-villes #Map {
  position: relative !important;
  width: 100%;
  height: 250px;
  padding: 0;
  margin: 20px auto;
}
#CV_container {
    background-color: var(--colorS);
}
#CV_container  b.Titre {
    display: block;
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 2rem;
    padding-top: 40px;
}
.Liens {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 7px;
}
.Mobile .Liens {
    display: block;  
}
.Desktop .Liens {
    max-height: 500px;
    overflow-y: scroll;
    padding-bottom: 60px;
}
.Tablet .Liens
.Mobile .Liens {
    display: block;
}
.Liens a {
  display: block;
  line-height: 130%;
  color: var(--black);
  position: relative;
  padding-left: 18px;
  margin: 0 0 20px;
}
.Mobile .Liens a {
    padding-top: 14px;
    padding-bottom: 14px;
}
.Liens a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background-image: url(../images/img/map.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.Mobile .Liens a::before {
    top: 15px;
}
.Liens a:hover {
    text-decoration: underline;
}
/*
Contact
*/
.Devisgratuit_page,
#realisations,
.temoin,
#mentionsl,
.ContactezNous {
    padding: 60px 0;
}
.Mobile .Devisgratuit_page,
.Mobile #realisations,
.Mobile .temoin,
.Mobile #mentionsl,
.Mobile .ContactezNous {
    padding-top: 9rem;
}
.contact-content a {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
}
.ContactezNous b {
    display: block;
    margin-top: 1rem;
    font-size: 18px;
}
.ContactezNous .Devisgratuit {
    margin-top: 1rem;
}
.ContactezNous em {
    margin: 0 15px;
}
.ContactezNous #Map {
    min-height: 300px;
    height: 100%;
}
.devis-item .form-control,
.ContactezNous select.form-control {
    margin: 9px 0 !important;
}
.Tablet .inline-b,
.Desktop .inline-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7px;
}
.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.imgContenu img{
    border-radius: 20px;
}
.intro {
    background: var(--colorS);
}
.intro h1::after {
    content: "";
    display: block;
    margin: 1.2rem 0 2rem;
    width: 40px;
    border-bottom: 3px solid;
}
.devis-item {
    max-width: 500px;
    margin: auto;
}
.devis-item h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.devis-item .btn {
    display: block;
    width: 250px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/*
Avis
*/
#temoignages {
    padding: 100px 0;
}
b.titreAvis {
    display: block;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--colorS);
}
b.titreAvis::after {
    content: "";
    display: block;
    margin: 1.2rem auto; 2rem;
    width: 40px;
    border-bottom: 3px solid;
}
.block-avis {
    max-width: 500px;
    margin: 0 0 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 7px;
    text-align: center;
    color: var(--black);
}
.btn.btn-temoin {
    border: 1px solid transparent;
    background: var(--colorS);
    padding: 7px 15px;
    display: inline-block;
    margin-top: 5px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.btn.btn-temoin:hover {
    background: var(--colorS);
}

.temoin {
    background: #e7e7e7;
    color: var(--black);
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 8rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #0f4f62;
    padding: 20px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgb(98 98 98 / 20%);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: var(--colorS);
}
#avis_form {
    margin-top: 15px;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
  background: url('../images/img/rating-sprit.webp') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}

/**
404
*/
.blog_pageIntrouvable {
    background: var(--light);
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: var(--colorS);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #003366;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--black);
}
.blog_pageIntrouvable a {
    color: var(--colorS);
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

.Mobile #swipebox-close {
    right: 0;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}

b.titre-album {
    display: block;    
    color: #000;    
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}
/*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

/*
Footer
*/
.footer {
    background-color: #003366;
    padding: 80px 0;
    color: var(--white);
}
.Mobile .footer { 
    padding: 20px 0; 
}
.link_footer .h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 22px;
    display: inline-block;
}
.link_footer .h3::after {
    content: "";
    display: block;
    width: 35px;
    border-bottom: 3px solid var(--colorS);
    margin: 1rem 0;
}
ul.nav-link_footer {
    list-style: none;
    padding-left: 0;
}
ul.nav-link_footer li {
    margin-bottom: 1rem;
}
ul.nav-link_footer li > a {
    display: block;
    transition: all .3s ease;
}
ul.nav-link_footer li:hover > a {
    padding-left: 7px;
}
.coordonnees .flex-info {
    margin: 1.5rem 0;
}
.coordonnees span,
.coordonnees  a {
    color: var(--white);
}
.coordonnees img {
    filter: invert(1);
}
.link_footer #Map {
    height: 250px;
}
.copyright {
    padding-top: 2rem;
    border-top: 1px solid #353535;
    margin-top: 3rem;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.copyright a {
    font-weight: bold;
    text-decoration: underline;
}
.Block.Block6 h2,
.Block.Block0 h2,
.Block.Block4 h2 {
    position: relative;
    margin: 20px 0;
    padding: 0 0 10px;
}
.Block.Block6 h2:before,
.Block.Block0 h2:before,
.Block.Block4 h2:before{
    content: "";
    width: 40px;
    position: absolute;
    border-bottom: solid 3px;
    height: 100%;
}
a.logo img,
a.logo-footer img {
    background: #fff;
}
.Tablet .nos_services_item > .row > div,
.Desktop .nos_services_item > .row > div {
    width: 25%;
    flex: 0 0 25%;
}


.Tablet .cat-box img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}
.Mobile .cat-box img {
    width: 100%;
    height: 125px;
    display: block;
    object-fit: cover;
}

.Mobile #CV_container b.Titre,
.Tablet #CV_container b.Titre {
  text-align: center;
}
.Tablet .ContactezNous,
.Tablet #mentionsnL,
.Tablet #realisations {
  padding-top: 150px;
}

.Mobile div#mentionsnL {
    padding: 150px 0 0;
}
.Mobile .copyright a {
    display: block;
    margin: 15px 0;
}



/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}

.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.titre-album,
 .ContactezNous h1 {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.Logo-Slider {
    display: flex;
    gap: 5px;
    margin: 20px 0;
}
.Logo-Slider img {
    width: 125px;
    height: 100px;
    object-fit: contain;
}